Linux管理虛擬IP的方法
一:命令行方式添加與刪除
1. 在網卡1上添加一個虛IP
ifconfig eth0:1 192.168.100.10 netmask 255.255.255.0
刪除剛才添加的虛IP
ip addr del 192.168.100.10/24 dev eth0 注意這裡一定要加掩碼,否則會彈出一個警告,如下: www.2cto.com
“Warning: Executing wildcard deletion to stay compatible with old scripts.
Explicitly specify the prefix length (192.168.100.10/32) to avoid this warning.
This special behaviour is likely to disappear in further releases,
fix your scripts!”
該警告的大意就是說,你應該明確你要刪除的IP的通配符長度,也就是掩碼長度
作者 fairplay_li