You can either rectify the source of the error. If the ethernet connection is not connected and it is configured to get it's details by DHCP, then it will wait until it times out.
In /etc/sysconfig/network-scr
BOOTPROTO=dhcp
If it said 'static', then there would be additional entries relating to the configuration of the eth interface, and you wouldn't have the timeout associated with DHCP which is causing your current delays.
As this problem is on boot, you can either enter an additional line in these files:
ONBOOT=no
(or change the current line to be no rather than yes). This will stop the ethernet starting at boottime, and you will have to enable then manually later:
ifconfig eth0 up
man ifconfig for more details.....or /etc/init.d/network restart (depending on linux distro)
HTH:)
Main Topics
Browse All Topics





by: adi_vladutPosted on 2006-06-08 at 05:27:18ID: 16860558
It fail with what error?
Try to replace or deactivate the ethernet card that generate the failure.