1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - Linux系统 - centos - 正文

君子好学,自强不息!

CentOS7双网卡绑定配置

2023-02-25 | centos | 1818ip | 6253°c
A+ A-

step1:创建绑定文件

[root@node-1 ~]# vi /etc/sysconfig/network-scripts/ifcfg-bond0 

TYPE=”bond”
BOOTPROTO=”none”
NAME=”bond0″
DEVICE=”bond0″
IPADDR=”192.168.1.20″
NETMASK=”255.255.255.0″
GATEWAY=”192.168.1.1″
DNS1=”8.8.8.8″
DNS2=”8.8.4.4″
ONBOOT=”yes”

step2:编辑需要绑定的物理网卡,并且指定主从,如下:

[root@node-1 ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0

TYPE=”Ethernet”
BOOTPROTO=”none”
NAME=”eth0″
DEVICE=”eth0″
MASTER=”bond0″
SLAVE=”yes”
ONBOOT=”yes”

[root@node-1 ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth1

TYPE=”Ethernet”
BOOTPROTO=”none”
NAME=”eth1″
DEVICE=”eth1″
MASTER=”bond0″
SLAVE=”yes”
ONBOOT=”yes”

step3:创建bond文件,并且设定冗余的模式

[root@node-1 ~]# vi /etc/modprobe.d/bonding.conf 

 alias bond0 binding

options bond0 miimon=100 mode=1

step4:重启机器

注:关于mode的说明

mode=0  //平衡循环

mode=1 //主备

mode=3 //广播

mode=4 //链路聚合

 

本文来源:1818IP

本文地址:https://www.1818ip.com/post/32717.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。