Linux操作系統(tǒng)下用單網卡捆綁雙IP的方法 |
發(fā)布時間: 2012/8/11 10:09:37 |
1、配置第一個IP地址:
[root@Linux root]#cd /etc/sysconfig/network-scripts [root@Linux network-scripts]#vi ifcfg-eth0 DEVICE=eth0 BOOTPROTO=static BROADCAST=192.168.80.255 //*廣播地址*// IPADDR=192.168.80.189 //*第一個IP地址*// NETMASK=255.255.255.0 //*網絡掩碼*// NETWORK=192.168.80.0 //*所在網段*// ONBOOT=yes :wq //*保存退出*//
[root@Linux network-scripts]#cp ifcfg-eth0 ifcfg-eth1 [root@Linux network-scripts]#vi ifcfg-eth1 DEVICE=eth0 BOOTPROTO=static BROADCAST=192.168.80.255 //*廣播地址*// IPADDR=192.168.80.199 //*第二個IP地址*// NETMASK=255.255.255.0 //*網絡掩碼*// NETWORK=192.168.80.0 //*所在網段*// ONBOOT=yes :wq //*保存退出*//
[root@Linux network-scripts]#service network restart 或: [root@Linux network-scripts]#ifdown eth0 [root@Linux network-scripts]#ifup eth0 或 [root@Linux network-scripts]#ifconfig eth0 down [root@Linux network-scripts]#ifconfig eth0 up 本文出自:億恩科技【1tcdy.com】 |