Debian 增加多个IP地址
原文:https://www.jianshu.com/p/f96024f6d7e6
编辑 /etc/network/interfaces 添加上你的新IP,假设你原有IP为11.11.11.11,需要添加 22.22.22.22 和 33.33.33.33 IP,按以下样例修改:
auto lo iface lo inet loopback
auto eth0 iface eth0 inet static address 11.11.11.11 netmask 255.255.254.0 gateway 11.11.11.1
auto eth0:0 iface eth0:0 inet static address 22.22.22.22 netmask 255.255.254.0
auto eth0:1 iface eth0:1 inet static address 33.33.33.33 netmask 255.255.254.0
dns-nameservers 8.8.8.8 8.8.4.4
网关不用修改
修改之后,用命令
/etc/init.d/networking restart
重启网络,但这样新IP还不能用,还需要将新IP上线,命令:
ifup eth0:0 #有多个IP,就 ifup eth0:1 ifup eth0:2 ifup eth0:3
对应的下线命令是
ifdown eth0:X #X改成对应的数字,这里就不重复了