一、聚合网络
聚合网络team的类型:
1、activebackup;
2、loadbalence;
3、roundrobin;
二、配置聚合网络
三种方式:
1、命令行;
2、配置文件;
3、图形化界面;
1、命令行方式:
添加team0
[root@clz~]#nmcliconnectionaddcon-nameteam0typeteamifnameteam0config{"runner":{"name":"activebackup"}}
配置IP地址:
[root@clz~]#nmcliconnectionmodifyteam0ipv4.addresses"192.168.10.100/24" [root@clz~]#nmcliconnectionmodifyteam0ipv4.methodmanual
[root@clz~]#nmcliconnectionaddcon-nameteam0-port1ifnameens34typeteam-slavemasterteam0
[root@clz~]#nmcliconnectionaddcon-nameteam0-port1ifnameens38typeteam-slavemasterteam0
编辑ifcfg-team0配置文件,在这行加上单引号和双引号:
TEAM_CONFIG='{"runner":{"name":"activebackup"}}'
重启网络服务:
[root@clznetwork-scripts]#systemctlrestartnetwork
此时看到team0和绑定的2张网卡的Mac地址变为一致:
查看team0的工作状态:
[root@clz~]#teamdctlteam0state setup: runner:activebackup ports: ens38 linkwatches: linksummary:up instance[link_watch_0]: name:ethtool link:up ens34 linkwatches: linksummary:up instance[link_watch_0]: name:ethtool link:up runner: activeport:ens34
2、配置文件
1DEVICE=team0 2DEVICETYPE=Team 3ONBOOT=yes 4BOOTPROTO=none 5IPADDR=192.168.10.100 6NETWORK=255.255.255.0 7TEAM_CONFIG='{"runner":{"name":"roundrobin"}}'
1DEVICE=ens34 2DEVICETYPE=TeamPort 3ONBOOT=yes 4BOOTPROTO=none 5TEAM_MASTER=team0
使用teamnl命令查看team的选项和端口:
[root@clznetwork-scripts]#teamnlteam0ports 8:ens34:up1000MbitFD 4:ens38:up1000MbitFD
[root@clznetwork-scripts]#teamnlteam0options queue_id(port:ens34)0 priority(port:ens34)0 user_linkup_enabled(port:ens34)false user_linkup(port:ens34)true enabled(port:ens34)true queue_id(port:ens38)0 priority(port:ens38)0 user_linkup_enabled(port:ens38)false user_linkup(port:ens38)true enabled(port:ens38)true mcast_rejoin_interval0 mcast_rejoin_count0 notify_peers_interval0 notify_peers_count0 moderoundrobin
[root@clznetwork-scripts]#teamnlteam0getoptionmode
3、图形化配置界面
打开nm-connection-editor,添加一个新连接:
三、配置桥接网络
1、使用brctl命令
查看桥接网络:
[root@clz~]#systemctlrestartnetwork [root@clz~]#brctlshow bridgenamebridgeidSTPenabledinterfaces virbr08000.000000000000yes
[root@clz~]#brctladdbrbr0
添加接口:
[root@clz~]#brctladdifens34br0
2、使用nmcli命令
[root@clz~]#nmcliconnectionaddcon-namebr1typebridgeifnamebr1
[root@clz~]#nmcliconnectionmodifybr1ipv4.addresses"192.168.20.20/24,192.168.20.1" [root@clz~]#nmcliconnectionmodifybr1ipv4.methodmanual
[root@clz~]#nmcliconnectionaddcon-namebr1-port1typebridge-slaveifnameens34masterbr1原文链接:https://www.f2er.com/javaschema/284983.html