之前写了一篇网络成组的文章,使用的是nmtui图形界面配置,但JSON字符串输入很繁琐。因此,建议nmcli进行配置。另外,在CentOS7中推荐网络成组的方式替代以往的网卡绑定,对于具体的操作在红帽子的白皮书中已经有详细的论述,具体可以参看https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Networking_Guide/index.html
命令:
nmcli connection add type team con-name <CNAME> ifname <INAME> [configJSON]
说明:
'{"runner": {"name": "METHOD"}}'
METHOD可以是broadcast,roundrobin,activebackup,loadbalance, lacp。
举例:
nmcli connection add type team con-name team0 ifname team0
假设需要绑定的板载网卡为eno1和eno2
格式:
nmcli con add type team-slave con-name <CNAME> ifname <INAME> master <TEAM>
说明:
举例:
nmcli con add type team-slave con-name team0-port1 ifname eno1 master team0
nmcli con add type team-slave con-name team0-port2 ifname eno2 master team0
nmcli con up team0-port1
nmcli con up team0-port2
通过命令“ip link show” 可以查看网络成组状态。同时可以使用如下命令确保端口组为启用状态
nmcli con up team0
命令:
nmcli con modify team0 team.config [configJSON]
说明:
以下都是举例说明
nmcli con modify team0 ipv4.address 192.168.1.100/24
nmcli con modify team0 ipv4.gateway 192.168.1.1
nmcli con modify team0 ipv4.dns 192.168.1.3,192.168.1.4
两个DNS地址之间用逗号隔开。
nmcli con modify team0 ipv4.dns-search xxx.xxx.xxx
nmcli con modify team0 ipv4.method manual/auto/ignore
IP的配置方式有三种,分别是上面列出的manual、auto、ignore。
# 查看网络接口
nmcli dev dis INAME
# 启动/关闭组接口和端口接口
nmcli con up/down CNAME
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。