Linux多网卡绑定

目录

一. Bonding 聚合链路工作模式

1.1.bonding链路聚合操作----手动编辑配置文件:

①添加一个网卡

②切换到/etc/sysconfig/network-scripts/下

③编辑网卡的配置文件

④重启network服务

⑤查看网卡信息

1.2.bonding链路聚合操作----使用命令自动生成配置文件

①先添加网卡

②添加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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值