The following line of config, when added to Muttrc, will ensure that all Maildir directories in ~/Maildir are available to browse via the Mutt userinterface (using “c” or TAB):
mailboxes echo -n "+ "; ls -ad ~/Maildir/.* | sed -e "s/^.*Maildir\/\([^\/]*\).*$/+\1/" -e "s/ /\\\\\\\ /g" | xargs
NPAD is a tool to diagnose TCP performance issues. I hit the following issue when compiling the CLI client (diag-client.c) on Solaris 10 x86:
cc diag-client.c -o diag-client
Undefined first referenced
symbol in file
gethostbyname diag-client.o
socket diag-client.o
connect diag-client.o
ld: fatal: Symbol referencing errors. No output written to diag-client
Fixed linkage with
cc -lsocket -lnsl -lm diag-client.c -o diag-client
Whilst working through labs for the BSCI CCNP exam (using the fantastic Dynagen / Dynamips) I came across the need for a multicast traffic generator. Googling showed me there was “MINT” but further investigation showed it didn’t do Windows, a little more faffing about with hping, nemesis and bittwist got me no closer.
Then I found a link which solved all my problems. I have the Windows Resource Kit and it does multicast generation. Magic.
C:>mcast /intf:10.254.0.254 /send /intvl:1000 /numpkts:100000 /grps:224.1.1.1,224.2.2.2