I just realized that I had not been doing the ``right thing'' to test
dhcp config:
sudo route flush
sudo sh -x /etc/netstart
(I *think* that's from man afterboot)
... does an AWESOME job for troubleshooting (I had to remove
/etc/mygate), but I seem to need to:
kill -KILL dhclient's pid # use proper pid there
...because otherwise I get two of 'em.
So, does anybody know of a better way for me to do what's known in the
windingo world as release-and-renew than this:
kill -KILL `ps -aux | grep '/sbin/dhclient' | awk '{ print $2 }'`
route flush
sh -x /etc/netstart
Thanks!
Harry.