是否可以设置同时具有 DHCP 和静态 IP 的接口?

是否可以设置同时具有 DHCP 和静态 IP 的接口?

将一个盒子送到托管中心,而接收它的人对网络一无所知。希望我可以设置它,这样无论他将其插入两个交换机中的哪一个,我都可以访问它。之后我可以删除其中一个条目。

就像是:

auto eth0
iface eth0:0 inet dhcp
iface eth0:1 inet static
address 66.66.66.220
netmask 255.255.255.224
gateway 66.66.66.254
broadcast 66.66.66.223

答案1

最后为了以防万一终于让某人站在控制台旁,但这确实有效。

auto eth0
iface eth0 inet dhcp

auto eth0:1
iface eth0:1 inet static
address 66.66.66.220
netmask 255.255.255.224
gateway 66.66.66.254
broadcast 66.66.66.223

相关内容