ubuntu跟一般centos ,redhat添加ip的方式有一定的区别。
一般centos,redhat系统的配置文件都是在/etc/sysconfig/network-script/下面的 引用centos,redhat等添加多ip
ubuntu的配置文件是/etc/network/interfaces
如图下:
# The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 8.8.8.2 netmask 255.255.255.248 gateway 8.8.8.1 要注意这里,多个不同IP段,只要1个gateway配置即可,其他IP不需要配置gateway auto eth0:0 iface eth0:0 inet static address 8.8.8.3 netmask 255.255.255.248 auto eth0:1 iface eth0:1 inet static address 6.6.6.130 注意这里,虽然这是不同的IP段,但是不需要配置gateway,只需要配置netmask即可 netmask 255.255.255.224 auto eth0:2 iface eth0:3 inet static address 6.6.6.131 netmask 255.255.255.224 PS:添加ip的时候注意 auto eth0:1 iface eth0:1
后面的这个冒号:1 非常重要尤其是远程操作 已经配置好要检查一下 不然配置出错重启之后很容易网络断掉,要谨慎!
让配置生效
#/etc/init.d/networking restart
检查效果
#ifconfig