博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NICs bonding in openfiler 2.3
阅读量:6824 次
发布时间:2019-06-26

本文共 1300 字,大约阅读时间需要 4 分钟。

写了一篇英文的,有错误赶快指出啊,呵呵
     
     Interface bonding is a mens of aggregating two or more network interface cards(NICs) ,and  use the actibe-backup mode which is pretty simple and recommended in openfiler 2.3.In this mode if one interface become inactive,the sysetem will still be accessible through the other "standby"(bonding's NIC) interface.so it can provide high availability 
      When bond two NICs in web console in openfiler ,It's not working
So I must configure interface bonding with console,That's the stepts on below
1: # vi /etc/modprobe.conf
ADD:alias bond0 bonding
      options bond0 max_bonds=8 mode=active-backup miimon=100 downdelay=0 updelay=0
2:#  vi  /etc/syconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
MTU=1500
USERCTL=no
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.40.211
NETMASK=255.255.224.0
GATWAY=192.168.40.253
_3:#  vi /etc/sysconfig/network-scripts/ifcfg-eth1(one of you want to bond NICs-eth1)
DEVICE=eth1
MTU=1500
USERCTL=no
ONBOOT=yes
BOOTPROTO=static
MASTER=bond0
SLAVE=yes
4:# vi /etc/sysconfig/network-scripts/ifcfg-eth2(one of you want to bond NICs一eth2)
DEVICE=eth2
MTU=1500
USERCTL=no
ONBOOT=yes
BOOTPROTO=static
MASTER=bond0
SLAVE=yes
5:# modprobe bonding
6:# ifup bond0
Now multiple NICs bonding is working well 
本文转自 abner110 51CTO博客,原文链接:http://blog.51cto.com/abner/149073,如需转载请自行联系原作者
你可能感兴趣的文章
win7下安装tomcat
查看>>
java基础之short转换byte[]
查看>>
第一次阅读作业
查看>>
Java.lang.Comparable接口和Java.util.Comparator接口的区别
查看>>
使用Python的turtle模块画出简单的柱状图
查看>>
python爬虫爬取煎蛋网妹子图片
查看>>
1692 子集和的目标值
查看>>
关于ubuntu配置静态IP 无法正常上网的解决方案
查看>>
ubuntu14.04安装vmware workstation
查看>>
ArcGIS API for Silverlight部署本地地图服务
查看>>
小知识点
查看>>
python mongodb MapReduce
查看>>
int 操作
查看>>
(转)Android生命周期
查看>>
python-数据类型
查看>>
Google MapReduce/GFS/BigTable三大技术的论文中译版
查看>>
Linux atop监控工具部署
查看>>
struts2请求过程源码分析
查看>>
效率比较--集合
查看>>
jmeter IF控制器学习--使用实例
查看>>