码迷,mamicode.com
首页 > 其他好文 > 详细

6月个人指标

时间:2018-09-10 13:35:48      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:聚合   nmcli   res   接口   stat   root   系统   配置链路聚合   激活   

配置链路聚合,在system1和system2之间按以下要求配置一个连路 :此链路使用接口eth1和eth2,此链路在一个接口失效时仍然能工作,此链路在 system1 使用下面的地址 172.16.X.20/255.255.255.0 ? 此链路在 system2 使用下面的地址 172.16.X.25/255.255.255.0 ? 此链路在系统重启之后依然保持正常状态

[root@serverX ~]# nmcli connection add con-name team0 type team ifname team0 config ‘{ "runner":{ "name":"activebackup" } }‘ //建立新的聚合连接
[root@serverX ~]# nmcli connection add con-name team0-p1 type team-slave ifname eno1 master team0 //指定成员网卡 1
[root@serverX ~]# nmcli connection add con-name team0-p2 type team-slave ifname eno2 master team0 //指定成员网卡 2
[root@serverX ~]# nmcli con modify team0 ipv4.method manual ipv4.addresses "172.16.3.20/24" //为聚合连接配置 IP 地址
[root@serverX ~]# nmcli connection up team0 //激活聚合连接
[root@serverX ~]# nmcli con up team0-p1 //激活成员连接 1(备用)
[root@serverX ~]# nmcli con up team0-p2 //激活成员连接 2(备用)
[root@serverX ~]# teamdctl team0 state

6月个人指标

标签:聚合   nmcli   res   接口   stat   root   系统   配置链路聚合   激活   

原文地址:http://blog.51cto.com/13673837/2173194

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!