码迷,mamicode.com
首页 > 其他好文 > 详细

centos 7 配置多网卡bond

时间:2020-02-21 18:14:36      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:cat   pts   权限   执行   top   设置   ast   启动   https   

原文

https://www.cnblogs.com/yxy-linux/p/8327818.html

关闭 NetworkManager 服务

systemctl stop NetworkManager.service
systemctl disable NetworkManager.service

配置网卡1

技术图片
vim /etc/sysconfig/network-scripts/ifcfg-eno24
TYPE=Ethernet
BOOTPROTO=none
USERCTL=no
DEVICE=eno24
ONBOOT=yes
MASTER=bond0
SLAVE=yes
技术图片

 配置网卡2

技术图片
vim /etc/sysconfig/network-scripts/ifcfg-eno25
TYPE=Ethernet
BOOTPROTO=none
USERCTL=no
DEVICE=eno25
ONBOOT=yes
MASTER=bond0
SLAVE=yes
技术图片

配置bond

技术图片
vim /etc/sysconfig/network-scripts/ifcfg-bond0
TYPE=Bond
BOOTPROTO=none
ONBOOT=yes
USERCTL=no
DEVICE=bond0
IPADDR=192.168.1.4
PREFIX=24
GATEWAY=192.168.1.254
NM_CONTROLLED=no
BONDING_MASTER=yes
技术图片

加bonding内核模板

modprobe --first-time bonding
lsmod | grep bonding 或者 modinfo bonding

配置bonding驱动

(实践该步骤未做,便可用)
vim /etc/modprobe.d/bond.conf
alias bond0 binding
options bond0 miimon=100 mode=1

重启网络服务

service network restart

查看bond0生效

cat /proc/net/bonding/bond0

配置dns

vim /etc/resolv.conf 
nameserver 202.106.0.20

 

centos 7默认启动时没有加载bonding模块

技术图片
# 查看bonding模块详细信息
modinfo bonding
filename  /lib/modules/3.10.0-229.el7.x86_64/kernel/drivers/net/bonding/bonding.ko


# 配置系统启动时加载bonding模块
vim /etc/sysconfig/modules/bonding.modules 
#!/bin/sh
/sbin/modinfo -F filename bonding > /dev/null 2>&1
if [ $? -eq 0 ];then
    /sbin/modprobe bonding
fi


# 设置执行权限
chmod 755 /etc/sysconfig/modules/bonding.modules 
# 重启查看是否生效 reboot
技术图片

centos 7 配置多网卡bond

标签:cat   pts   权限   执行   top   设置   ast   启动   https   

原文地址:https://www.cnblogs.com/itfat/p/12342066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!