欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

配置bond

程序员文章站 2022-04-10 15:37:23
注意:配置bond要有两个以上的网口 1、配置文件所有目录:/etc/sysconfig/network-scripts 网口配置文件名规则:以ifcfg-开头,然后接着是网口名 例如:eth0的配置文件名是 ifcfg-eth0 如果没有配置文件,则需要创建网口配置文件(需要eth0和eth1) ......

注意:配置bond要有两个以上的网口

1、配置文件所有目录:/etc/sysconfig/network-scripts

网口配置文件名规则:以ifcfg-开头,然后接着是网口名

例如:eth0的配置文件名是 ifcfg-eth0

如果没有配置文件,则需要创建网口配置文件(需要eth0和eth1)

cd /etc/sysconfig/network-scripts/

2、创建eth0的配置文件

# cat ifcfg-eth0

device=eth0               #网口名

onboot=yes              #linux在启动时激活该网口

bootproto=none          #使用什么协议激活网口,none不使用任何协议,如果是静态ip,需要设置为static;如果是动态获取ip,需要设置为dhcp     动态主机配置协议(dynamic host configuration protocol)

master=bond0            #指定虚拟网口的名字

slave=yes                 #备用

3、创建eth1的配置文件

#cp ifcfg-eth0 ifcfg-eth1

# cat ifcfg-eth1

device=eth1                #网口名

onboot=yes               #linux在启动时激活该网口

bootproto=none          #使用什么协议激活网口,none不使用任何协议,如果是静态ip,需要设置为static;如果是动态获取ip,需要设置为dhcp     动态主机配置协议(dynamic host configuration protocol)

master=bond0            #指定虚拟网口的名字

slave=yes                 #备用

4、找到bond0配置文件,没有的话就创建一个

# cat ifcfg-bond0

device=bond0

onboot=yes

bootproto=static

ipaddr=172.16.1.3

netmask=255.255.0.0

5、配置bonding

/etc/modprobe.d/dist.conf(没有该文件就创建) 增加以下2行

alias bond0 bonding

options bond0 miimon=100 mode=1

6、重启os

reboot