ubuntu同一网卡绑定多个ip


有些时候可能会为vps购买多个ip这个时候可以按照下面的写法为服务器绑定多个IP地址

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.119
netmask 255.255.255.0
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 8.8.8.8

iface eth0:0 inet static
address 192.168.1.22
netmask 255.255.255.0


iface eth0:1 inet static
address 192.168.1.33
netmask 255.255.255.0

网关与第一组保持一样不需要修改,只需要按顺序添加 eth0:0 , eth0:1 , eth0:X 一直下去不重复即可。

修改之后,用命令/etc/init.d/networking restart 重启网络,或者用命令: ifup eth0:0 有多个IP,就 ifup eth0:1 ifup eth0:2 ifup eth0:3 …… 都上线。

重启服务器后配置的ip不能用可以在/etc/local.rc种添加 ifup eth0:1等命令

使用 ifdown eth0:X 停止网卡

Archives