一个地址绑定两块网卡,可以在生产环境中增加网络可靠性
创建出一个bond网卡
nmcli connection add type bond con-name bond0 ifname bond0 bond.options "mode=balance-rr"
balance-rr网卡绑定模式,rr是round-robin的缩写,全称为轮循模式。
向bond0添加从属网卡
nmcli connection add type ethernet slave-type bond con-name bond0-port1 ifname ens160 master bond0
nmcli connection add type ethernet slave-type bond con-name bond0-port2 ifname ens192 master bond0
配置bond0设备的网卡信息
nmcli connection modify bond0 ipv4.addresses 192.168.10.10/24
nmcli connection modify bond0 ipv4.gateway 192.168.10.1
nmcli connection modify bond0 ipv4.dns 192.168.10.1
nmcli connection modify bond0 ipv4.dns-search linuxprobe.com
nmcli connection modify bond0 ipv4.method manual
这步跳过就是自动获取地址
启动
nmcli connection up bond0
nmcli device status