您好,登录后才能下订单哦!
###############team###############
1.team 也是链路聚合的一种方式,最多支持8块网卡
支持模式
广播
轮询
主备
2.配置
nmcli connection add con-name team0 ifname team0 type team config '{"runner":{"name":"activebackup"}}' ip4 172.25.254.195/24
nmcli connection add con-name eth0 ifname eth0 type team-slave master team0
nmcli connection add con-name eth2 ifname eth2 type team-slave maste
r team0
3.测试
watch -n 1 teamdctl team0 stat
ifconfig eth0 down
ifconfig eth0 up
##################网桥######################
配置方式
systemctl stop NetworkManager.service
vim /etc/sysconfig/network-scripts/ifcfg-enp0s25
DEVICE=enp0s25
ONBOOT=yes
BOOTPROTO=none
BRIDGE=br0
vim /etc/sysconfig/network-scripts/ifcfg-br0
DEVICE=enp0s25
ONBOOT=yes
BOOTPROTO=none
IPADDR=172.25.254.95
NETMASK=255.255.255.0
TYPE=Bridge
systemctl restart network
systemctl start NetworkManager.service
ifconfig
######命令管理方式
#添加
systemctl stop NetworkManager
brctl show
brctl addbr br0
brctl addif br0 eth0
ifconfig eth0 up
ifconfig br0 172.25.254.195 netmask 255.255.255.0
brctl show
ping 172.25.254.95
#删除
ifconfig br0 down
brctl delif br0 eth0
brctl delbr br0
brctl show
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。