5.配置链路聚合

试题概述: 

在  server0  和  desktop0  之间按以下要求配置一个链路: 

      此链路使用接口  eth1  和  eth2 

      此链路在一个接口失效时仍然能工作 

      此链路在  server0  使用的地址  172.16.X.20/255.255.255.0 

      此链路在  desktop0  使用的地址  172.16.X.25/255.255.255.0 

      此链路在系统重启之后依然保持正常状态

解题参考

方法一:调用图形化进行配置,调用图形化命令: nm-connection-editor (配置过程省略)

方法二:使用字符界面进行配置

nmcli connection add type team con-name team0 ifname team0 config '{"runner":{"name":"activebackup"}}' 

nmcli connection add type team-slave con-name team0-eth1 ifname eth1 master team0 

nmcli connection add type team-slave con-name team0-eth2 ifname eth2 master team0 

#修改配置文件,配置IP地址和子网掩码 

vim /etc/sysconfig/network-scripts/ifcfg-team0 

BOOTPROTO=static                  #修改 

IPADDR=172.16.0.20                #增加 

NETMASK=255.255.255.0      #增加

保存后重启网络

systemctl restart network

验证方式:

查看配置是否生效命令:teamdctl team0 stat

setup:

  runner: activebackup

ports:

  eth1

    link watches:

      link summary: up

      instance[link_watch_0]:

        name: ethtool

        link: up

  eth2

    link watches:

      link summary: up

      instance[link_watch_0]:

        name: ethtool

        link: up

runner:

  active port: eth1

版权声明:
作者:WaterBear
链接:https://l-t.top/260.html
来源:雷霆运维
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>