dhcp / bridge上的dynamicIP接口块启动进程

我想在Debian下创build一个网桥接口,将物理接口(eth1)连接到多个虚拟接口。 IP地址应从eth1连接的物理networking中的DHCP服务器获取。

它工作,但在启动dhclient阻止启动过程约30秒(约1分钟,如果没有电缆连接,没有DHCP服务器可以达到)试图获得一个IP地址为br0接口。 有没有办法来防止这一点?

还是有没有一个更“标准”的方式来创build一个桥接接口比我的configuration,没有创build一个新的专用网桥(所有手册似乎指定)?

在物理接口(如eth0)上指定inet dhcp不会延迟启动过程,所以这看起来很奇怪。

我的/etc/network/interfaces

 auto br0 iface br0 inet dhcp bridge_ports eth1 bridge_stp off bridge_maxwait 0 bridge_fd 0 # without this line, br0 doesn't get created on boot if eth1 has no link iface eth1 inet manual 

启动顺序输出:

 [....] Configuring network interfaces...Internet Systems Consortium DHCP Client 4.3.5 Copyright 2004-2016 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Listening on LPF/br0/(MAC) Sending on LPF/br0/(MAC) Sending on Socket/fallback DHCPDISCOVER on br0 to 255.255.255.255 port 67 interval 4 

(在这里挂起〜30秒,如果有线连接,则获得IP,否则超时)

这个DHCP客户端输出不会在正常的接口上显示。