Ubuntu给网卡增加和删除IP地址
永久修改
修改/etc/network/interfaces
1 | vim /etc/network/interfaces |
1 2 3 4 5 6 7 8 9 10 | auto eth0 iface eth0 inet static address 172.16.3.123 netmask 255.255.255.0 gateway 172.16.3.1 auto eth0:1 iface eth0:1 inet static address 10.16.3.123 netmask 255.255.0.0 |
然后使用以下命令重启网卡配置并生效。
1 | ifup eth0:1 |
注:不要使用/etc/init.d/network restart的方法!!
动态修改方法1
#网卡上增加一个IP:
1 | ifconfig eth0:1 192.168.0.1 netmask 255.255.255.0 |
#删除网卡的第二个IP地址:
1 | ip addr del 192.168.0.1 dev eth0 |
这种方式增加的虚拟IP,可以通过ifconfig查看
动态修改方法2
另一种增加虚拟IP的方法(ifconfig查看不到):
增加虚拟IP:
1 | ip -f inet addr add 192.168.146.229/32 brd 192.168.146.229 dev eth0 |
查看虚拟IP:
1 | ip -f inet addr |
删除虚拟IP:
1 | ip -f inet addr delete 192.168.146.229/32 brd 192.168.146.229 dev eth0 |
» vps12.com:http://www.vps12.com
» 转载请注明来源:运维部落 » 《Ubuntu给网卡增加和删除IP地址》