高级网络控制
1.网卡的bond
bond网络
red hat Enterprise Linux 允许管理员使用bonding内核模块和称为通道绑定接口的特殊网络接口绑定到一个通道。根据选择的绑定模式,通道绑定使两个或更多个网络接口作为一个网络接口,从而增加宽带/提供冗余性
选择Linux以太网绑定模式(前两种为常用模式)
1)模式0平衡轮循 同时
2)模式1主动备份 稳定
3)模式3广播容错
2.配置bond网络接口
添加两个网卡eth0和eth1
添加eth1网卡
nm-connection-editor #delete 删除eth0的ip
ifconfig #查看网卡信息
nmcli connection show #查看网络连接信息
nmcli connection add con-name bond0 ifname bond0 type bond mode active-backup ip4 172.25.254.114/24 #添加bond网络接口bond0
ifconfig #查看是否将bond接口添加成功
watch -n 1 cat /proc/net/bonding/bond0 #监控bond接
口
nmcli connection add con-name eth0 ifname eth0 type bond-slave master bond0 #把网卡eth0添加到bond0中
nmcli connection add con-name eth1 ifname eth1 type bond-slave master bond0 #把网卡eth1添加到bond0中
测试:
ping 172.25.254.14可以ping通
ifconfig eth0 down #也可以ping通
看见eth0处于down状态,而之前ping的并未停止
ifconfig eth0 up #使eth0恢复,此时使用的是eth1,而eth0处于闲置
删除bond接口:
nmcli connection delete bond0 #删除bond接口
nmcli connection sho