目录
1.1.bonding链路聚合操作----手动编辑配置文件:
②切换到/etc/sysconfig/network-scripts/下
1.2.bonding链路聚合操作----使用命令自动生成配置文件
一. Bonding 聚合链路工作模式
将多块网卡绑定同一IP地址对外提供服务,可以实现高可用或者负载均衡,类似于网络中的vrrp的虚拟路由。直接给两块网卡设置同一IP地址是不可以的。通过 bonding,虚拟一块网卡对外提供连接,物理网卡的被修改为相同的MAC地址。
1.1.bonding链路聚合操作----手动编辑配置文件:
①添加一个网卡
②切换到/etc/sysconfig/network-scripts/下
[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost ~]# ls
③编辑网卡的配置文件
[root@localhost ~]# cp -a ifcfg-ens33 ifcfg-ens36
[root@localhost ~]# vim ifcfg-ens36
④重启network服务
[root@localhost network-scripts]# systemctl restart network
⑤查看网卡信息
[root@localhost network-scripts]# ifconfig
[root@localhost network-scripts]# nmcli con up mybond0
[root@localhost network-scripts]# cat /proc/net/bonding/bond0
1.2.bonding链路聚合操作----使用命令自动生成配置文件
①先添加网卡
②添加bonding接口
[root@localhost network-scripts]# nmcli con add type bond con-name mybond0 ifname bond0 mode active-backup ipv4.method manual ipv4.addresses 192.168.47.100/24
③添加从属接口
[root@localhost network-scripts]# nmcli con add type bond-slave ifname ens33 master bond0
[root@localhost network-scripts]# nmcli con add type bond-slave ifname ens36 master bond0
④启动从属接口绑定(必须先启动从属接口)
[root@localhost network-scripts]# nmcli con up bond-slave-ens33
[root@localhost network-scripts]# nmcli con up bond-slave-ens36
⑤启动绑定
[root@localhost network-scripts]# nmcli con up mybond0
⑥使用命令验证
[root@localhost network-scripts]# cat /proc/net/bonding/bond0