> Is there a way to shorten these timeouts
Hi,
I use Debian and always got annoyed too by the few seconds wasted for
dhcp to finish. Well on my laptop it's just a few seconds and not minutes
;-)
On debian the package dhcp-client [1] is installed by default. Replacing
dhcp-client with pump [2] seems to have helped a little. However, I
disabled the automatic network configuration for the interface eth0 and
created a simple script which I placed in /etc/init.d/pumpeth0.sh in the
end.
--- Script: pumpeth0.sh ---
#!/bin/sh
/sbin/pump -i eth0 >/dev/null 2>&1 &
echo "Backgrounding DHCP configuration for interface eth0"
To complete you just have to make the appropriate symlinks in /etc/rcX.d/
Regards,
Daniel
[1]
http://www.isc.org
[2] This is the DHCP/BOOTP client written by RedHat.