centos7 网卡配置及bond配置

来源:互联网 发布:办公软件图标 编辑:程序博客网 时间:2024/06/08 13:40

配置网卡

nmcli connection modify ens0 ipv4.addresses xxx.xxx.xxx.xxx/xx ipv4.gateway xxx.xxx.xxx.xxx
nmcli connection modify ens0 ipv4.method manual

 

创建bond0

nmcliconnection add type bond con-name bond0 ifname bond0

绑定两个网卡

nmcliconnection add type bond-slave con-name ens0 ifname ens0 master bond0autoconnect yes

nmcliconnection add type bond-slave con-name ens1 ifname ens1 master bond0autoconnect yes

  

配置及启动bond0

nmcli connection modify bond0 ipv4.addresses xxx.xxx.xxx.xxx/xx ipv4.gateway xxx.xxx.xxx.xxx
nmcli connection modify bond0 ipv4.method manual

nmcliconnection up bond0

原创粉丝点击