两块网卡聚合为一个逻辑网卡,实现冗余:
步骤:物理网卡 eth0 eth1
# vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static (两个网卡必须一样)
MASTER=bond0
# vim /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=static
MASTER=bond0
逻辑网卡 bond0
# vim /etc/sysconfig/network-scripts/ifcfg-band0
DEVICE=bind0
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.145.101(地址)
NETMASK=255.255.255.0(子网掩码)
编辑所需要的模块:
# vim /etc/modprobe.conf
( modprobe bonding)
alias bond0 bonging
options bond0 miimon=100(监控间隔) mode=1(工作模式)
(bond模式 0 1 2 3 ,0表示负载均衡 1表示冗余 )
开机脚本:
# vim /etc/rc.d/rc.local
ifenslave bond0 eth0 eth1 绑定端口
# init 6 重新启动一下
# cat /proc/net/bonding/bond0 查看状态
转载于:https://blog.51cto.com/lulu1101/796061