我用这种方式用debian绑定了两个带有单个nic(网络接口卡)的ips。
第1步:
vim / etc / network /接口采用以下格式:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
broadcast 192.168.1.255
auto eth0:1
iface eth0 inet static
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
broadcast 192.168.1.255
现在192.168.1.100和192.168.1.100都绑定了我的本地网站。
步骤2: vim / etc / network / ifstate采用以下格式:
lo=lo
eth0=eth0
eth0:1=eth0:1
现在是时候重启我的网络了。
/etc/init.d/networking restart
[....] Running /etc/init.d/networking restart is deprecated because it may not r[warnble some interfaces ... (warning).
[....] Reconfiguring network interfaces...RTNETLINK answers: File exists
Failed to bring up eth0.
Ignoring unknown interface eth0:1=eth0:1.
done.
ifdown eth0 && ifup eth0
ifdown: interface eth0 not configured
RTNETLINK answers: File exists
Failed to bring up eth0.
两个ip已经绑定了单个网卡,何时重启我的电脑 我想知道重新启动网络的正确方法,而不是重新启动它。
答案 0 :(得分:0)
通常stop/start/restart
Debian上的/etc/init.d/networking stop
/etc/init.d/networking start
/etc/init.d/networking restart
网络接口:
ifconfig -a
在进行更改并重新启动后验证更改:
{{1}}