多IP绑定与多网卡绑定 (2)

多IP绑定与多网卡绑定

配置完成后重新启用服务:

Service network restart

多IP绑定与多网卡绑定

查看bond0状态:/proc/net/bonding/bond0

多IP绑定与多网卡绑定

此时网卡eth0,网卡eth1共用一个IP地址,且MAC地址相同。

多IP绑定与多网卡绑定

断开网卡eth1 可以看出在网卡转换时会丢包。

多IP绑定与多网卡绑定

断开网卡eth0:同样会有丢包。

多IP绑定与多网卡绑定

这时在模式0下网卡没100ms检测一次链路状态,发现一条线路不同就转向另一条线路时需要时间。

使用nmcli实现bonding

添加bonding接口

命令:  nmcli connection add type bond con-name bond0 ifname bond0 mode active-backup ipv4.method manual ipv4.addresses 192.168.52.200/24

输入命令回车,ifcfg-bond0文件自动生成。

多IP绑定与多网卡绑定

查看网络设置 bond0直接启用

多IP绑定与多网卡绑定

添加从属接口

nmcli connection add type bond-slave ifname eth0 master bond0

nmcli connection add type bond-slave ifname eth1 master bond0

注:如无为从属接口提供连接名,则该名称是接口名称加类型构成

多IP绑定与多网卡绑定

要启动绑定,则必须首先启动从属接口

nmcli connection up bond-slave-eth0

nmcli connection up bond-slave-eth1

多IP绑定与多网卡绑定

v 启动绑定

nmcli connection up bond0

多IP绑定与多网卡绑定

绑定成功!

多IP绑定与多网卡绑定

连接成功!

多IP绑定与多网卡绑定

删除绑定:

关闭bond0

多IP绑定与多网卡绑定

删除配置文件

多IP绑定与多网卡绑定

重新加载配置文件:nmcli connection reload

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzpdww.html