博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
team
阅读量:6590 次
发布时间:2019-06-24

本文共 1644 字,大约阅读时间需要 5 分钟。

  #####team######

1.
team也是链路聚合的一种方式。最多支持8块网卡
Team 接口:
Team 和 bond0 功能类似
Team 不需要手动加载相应内核模块
Team 有更强的拓展性
– 支持 8 快网卡
支持模式:
broadcast     广播容错 
roundrobin    轮询
activebackup   主备
loadbalance  负载均衡
2.
配置
 nmcli connection add con-name team0ifname team0 type team config'{"runner":{"name":"activebackup"}}' ip4172.25.254.144/24
 ####添加team 运行模式为主备
nmcli connection add con-name eth0 ifname eth0 type team-slave masterteam0  ####给team添加网卡eth0
nmcli connection add con-name eth1 ifname eth1 type team-slave masterteam0   ###给team添加网卡eth1
3
测试
watch -n 1 teamdctl team0 stat  ###监视team0的运行状态
ifconfig eth0 down  ####控制eth0挂掉
ifconfig eth0 up     ####控制eth0恢复
ifconfig eth1 down   ####控制eth1挂掉
ifconfig eth1 up      ####控制eth1恢复
做之前必须要有两块及以上网卡。重置虚拟机.用命令nm-connection-editor删除eth0原有IP。
第一个界面
1 ifconfig   ####查看网络
2 nmcli connection add con-name team0 ifname team0 type team config'{"runner":{"name":"activebackup"}}' ip4172.25.254.144/24
 ####添加team 运行模式为主备

3 nmcli connection add con-name eth0 ifname eth0 type team-slave masterteam0  ####给team添加网卡eth0

4 nmcli connection add con-name eth1 ifname eth1 type team-slave masterteam0   ###给team添加网卡eth1

5  ifconfig

6  watch -n 1 teamdctl team0 stat

第二个界面

ping 172.25.254.44

第三个界面

ifconfig eth0 down  ####控制eth0挂掉
ifconfig eth0 up     ####控制eth0恢复
ifconfig eth1 down   ####控制eth1挂掉
ifconfig eth1 up      ####控制eth1恢复
ifconfig eth0 down  ####控制eth0挂掉
ifconfig eth1 down   ####控制eth1挂掉
eth0 挂掉 eth1运行;eth0恢复,eth1运行;eth1挂掉,才会换eth0运行
两张都挂掉,ping不通

######删除team0######

   13 nmcli connection delete team0
   14 nmcli connection delete eth0
   15 nmcli connection delete eth1
   16 nmcli connection show

本文转自 如何何如  51CTO博客,原文链接:http://blog.51cto.com/12778805/1928791,如需转载请自行联系原作者
你可能感兴趣的文章
Angular的模板与路由功能
查看>>
istio-0.8 指标监控,prometheus,grafana
查看>>
支付系统的防重设计
查看>>
Eclipse_常用技巧_01_自动添加类注释和方法注释
查看>>
詹嵩:性能牛逼的Log4j2是个什么鬼?
查看>>
WebView深度学习(三)之WebView的内存泄漏、漏洞以及缓存机制原理和解决方案...
查看>>
《Kotlin 程序设计》第五章 Kotlin 面向对象编程(OOP)
查看>>
[Hadoop]大量小文件问题及解决方案
查看>>
使用 WebStorm 创建 React App
查看>>
光纤通信简史
查看>>
SpringMVC详细教程:教你细节与走位(●'◡'●)
查看>>
LeetCode 326 Power of Three(3的幂)(递归、Log函数)
查看>>
MacOS High Sierra 设置中找不到允许任何来源的安装选项
查看>>
3亿人都参加的95公益周来了,爱心攻略看这里!
查看>>
(码友推荐)2018-08-21 .NET及相关开发资讯速递
查看>>
1001. A+B Format (20)
查看>>
JavaScript 中继承实现方式归纳
查看>>
Watson系统面临解约困境,因为它太烧钱了
查看>>
2018开发最快的Webapp框架--BUI交互框架
查看>>
利用Jenkins完成Pre-MR的代码回归
查看>>