我需要eth0
在启动过程中启动网络接口,但前提是插入电缆。我的/etc/network/interfaces
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
问题是,当电缆未插入时,计算机仍然尝试连接服务器dhcp
,并且需要很长时间才能超时并最终启动。
eth0
如果未检测到链接,是否有某种方法可以跳过配置?
我正在使用 Debian Wheezy
答案1
您可以通过编辑以下命令来修改等待 DHCP 响应的时间/etc/dhcp3/dhclient.conf
:
#timeout 60
timeout 10
这将为 DHCP 服务器设置 10 秒的响应机会窗口。您可能想尝试一下超时速度。或者,您可以eth0
通过编辑在启动时禁用/etc/network/interfaces
:
#auto eth0
eth0
然后,在需要时使用 手动调出sudo ifup eth0
。