Ubuntu下配置虚拟IP地址
设置的是两台虚拟机IP地址分别为:192.168.33.11、192.168.33.12。
通过下面的命令设置虚拟IP:192.168.33.149。
sudo ifconfig eth1:0 192.168.33.149 netmask 255.255.255.0 up
通过如下命令删除虚拟IP:
sudo ifconfig eth1:0 down
以上的命令并不是永久修改,需要永久添加虚拟IP,请修改文件:/etc/network/interfaces
auto eth1:0
iface eth1:0 inet static
name Ethernet alias LAN card
address 192.168.33.149
netmask 255.255.255.0
broadcast 192.168.33.255
Linux多网卡情况下虚拟IP快速生效的方法:http://www.linuxdiyf.com/linux/11432.html