一、Network Teaming网络组的创建
第一步;准备工作,建立两个网络接口eth0、eth1,把原有网卡配置文件删除;
命令:cd /etc/sysconfig/network-scripts
rm -rf ifcfg-* #把网卡配置文件删除
第二步;创建网络组;
命令:nmcli connection add con-name team0 type team ifname team config ‘{“runner”:{“name”:”activebackup”}}’ #如图:
第三步;更改手动模式,修改IP;
命令: nmcli connection modify team0 ipv4.method manual ipv4.addresses 172.18.0.3/16 #如图:
第四步;添加网卡;
命令:nmcli connection add con-name team0-eth0 type team-slave ifname eth0 master team0 #如图:
依此步骤,另外一个网卡eth1添加到网络组。
第五步;查看网络组运行状态;
命令:teamdctl team0 status
二、删除网络组并恢复原有网卡:
第一步;nmcli connection
down team0 #关闭网络组team0
第二步;nmcli connection
delete team0 #删除网络组
nmcli connection delete team0-eth0
nmcli connection delete team0-eth1
第三步;nmcli connection
add con-name local-eth0 autoconnect yes type Ethernet ifname eth0 #创建网络接口
nmcli connection modify local-eth0 ipv4.method
manual ipv4.addresses172.18.24.1/16 #设置手动,并修改IP地址
第四步;nmcli connection down local-eth0 #关闭
nmcli connection up local-eth0 #启动
原创文章,作者:chenxu@magedu.com,如若转载,请注明出处:http://www.178linux.com/71860