已在AS 4系统上成功测试通过

Solaris平台,双网卡冗余大家都知道可以通过IPNM(mutipath)机制实现网卡冗余IP(即浮动IP),对于Linux,通过bonding也可实现冗余IP配置,说明如下

1】vi /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
IPADDR=192.168.1.235
NETMASK=255.255.255.0
NETWORK=192.168.1.0
BROADCAST=192.168.1.255
GATEWAY=192.168.1.254
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
TYPE=Ethernet
IPV6INIT=no

2】vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
USERCTL=no
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
TYPE=Ethernet
IPV6INIT=no

3】vi /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
USERCTL=no
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
TYPE=Ethernet
IPV6INIT=no

4】 /etc/modprobe.conf 文件末尾添加
alias bond0 bonding
options bond0 mode=1 miimon=100 updelay=200 downdelay=200

5】 重启OS
shutdown -r now
(linux share/doc提到也可以用service network restart,但好像没什么作用)

6】 查看bonding状态:
cat /proc/net/bonding/bond0

以上在红帽AS 4系统上成功测试通过。
确定linux系统是否支持bonding的方法:grep ifenslave /sbin/ifup

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwyxjf.html