首页 > 代码库 > linux下网卡绑定
linux下网卡绑定
网卡绑定的作用:1、冗余,防止单点故障
2、防止传输瓶颈
1.交换机端口绑定:
1 system-view2 link-aggregation group 1 mode manual3 4 比如把端口1和2进行绑定5 6 interface Ethernet1/0/1 #进入交换机1口7 port link-aggregation group 1 #把当前端口加入汇聚组18 interface Ethernet1/0/2 #进入交换机2口9 port link-aggregation group 1
2.系统网卡绑定
1.设置Boundingvi /etc/modules.conf #添加以下内容alias bond0 bondingoptions bonding mode=1 miimon=200 primary=eth2 use_carrier=12. 加载bonding模块modprobe bonding3.创建/修改bond0 eth0 eth1 配置文件vi /et/sysconfig/network-ifcfg-“网卡名”DEVICE=‘bond0‘BOOTPROTO=‘static‘BROADCAST=‘x.x.x.x‘IPADDR=‘x.x.x.x‘DEVICE=eth0BOOTPROTO=‘static‘STARTMODE=‘onboot‘DEVICE=eth1BOOTPROTO=‘static‘STARTMODE=‘onboot‘4.重启所有网卡rcnetwork restart5.绑定eth0 eth1 到bond0ifenslave bond0 eth0ifenslave bond0 eth16.重启后自动加载设置:在/etc/init.d/中添加bonding启动文件vi /etc/init.d/bonding #添加以下语句case “$1” in start)/sbin/ifenslave bond0 eth0/sbin/ifenslave bond0 eth1;; *);;esac7.把加载bonding模块的脚本加入启动脚本中vi /etc/init.d/boot.localmodprobe bonding
linux下网卡绑定
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。