高级网络定制
1.bond网络建立
1.bond接口
Red Hat Enterprise Linux 允许管理员使用 bonding 内核模块和称为通道绑定接口的特殊网络接口将多个网络接口绑定
到一个通道。根据选择的绑定模式 , 通道绑定使两个或更多个网络接口作为一个网络接口 , 从而增加带宽和 / 提供冗余性
2.选择 Linux 以太网绑定模式
模式 0 balance-rr ( 平衡轮循 ) - 轮循策略 , 所有接口都使用采用轮循方式在所有 Slave 中传输封包 ; 任何 Slave 都可以接收
模式 1 active-backup ( 主动备份 ) - 容错。一次只能使用一个 Slave 接口, 但是如果该接口出现故障 , 另一个 Slave 将 接替它
模式 3 broadcast ( 广播 ) - 容错。所有封包都通过所有 Slave 接口广播
3.利用nmcli命令管理bond
实验前确保虚拟机有两块网卡并处于纯净模式
nmcli connection add con-name bond0 ifname bond0 type bond mode active-backup ip4 172.25.254.238/24 ##创建bond网络并设定ip
watch -n 1 cat /proc/net/bonding/bond0 ##watch命令监控
nmcli connection add con-name eth0 ifname eth0 type bond-slave master bond0
nmcli connection add con-name eth1 ifname eth1 type bond-slave master bond0 ##为bond网络添加网卡
测试:
ifconfig eth0 down ##暂停eth0
此时会发现eth1继续工作
删除bond网络
nmcli connction delete bond0
nmcli connction delete eth0
nmcli connction delete eth1
2.team网络建立
1.team接口
Team和 bond0 功能类似
Team不需要手动加载相应内核模块
Team有更强的拓展性
支持 8块网卡
2.team的种类
broadcast 广播容错
roundrobin 平衡轮叫
activebackup 主备
3.通过nmcli命令设定team
实验前确保虚拟机有两块网卡并处于纯净模式
nmcli connection add con-name team0 ifname eth0 type team config’{“runner”:{“name”:“activebackup”}}’ ip4 172.25. 254.238/24 ##创建team网络并设定ip
teamdctl team0 stat ##查看team网络状态
watch -n 1 teamdctl team0 stat ##watch命令监控
nmcli connection add con-name eth0 ifname eth0 type team-slave master team0
nmcli connection add con-name eth1 ifname eth1 type team-slave master team0 ##为team网络添加
网卡
测试:
ifconfig eth0 down ##暂停eth0
此时会发现eth1继续工作
3.临时设定网络桥接
#建立临时网桥
brctl addbr br0
ifconfig br0 172.25.254.238/24
brctl addif br0 eth0
测试:
ping 172.25.254.250
#删除临时网桥
brctl delif br0 eth0
ifconfig eth0 down
brctl delbr br0
4.永久设定网络桥接
cd /etc/sysconfig/network-scripts
vim ifcfg-eth0
vim ifcfg-br0
systemctl stop NetworkManager
systemctl restart network