Linux系统bond配置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1、bond简介
bond是多块物理网卡虚拟为一块网卡,使多块网卡看起来像一块网卡。
2、bond优点
linux系统下配置bond,通过网卡绑定可增加服务器可靠性,同时可增加网络带宽,提供稳定的网络服务。
3、bond模式
(1)mode=1:在主备模式下,只有主网卡工作,备份网卡不工作,只有当一个网络接口失效时(例如交换机掉电等),为了不会出现网络中断,系统会按照配置指定的网卡顺序启动工作,保证机器仍能对外服务,起到了失效保护功能。
(2)mode=0:在负载均衡模式下,两块网卡都工作,提供两倍带宽。
4、配置步骤
选择2块需要绑定的网卡,并进行配置。例:eth0/eth1.
(1)修改eth0配置
vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 #网口名:eth0
TYPE=Ethernet #网口类型:以太网接口
ONBOOT=yes #系统启动时网口状态为激活
BOOTPROTO=none #网口激活协议:nono不适用任何协议
static:设置静态ip dhcp:设置动态获取ip
MASTER=bond0 #指定虚拟网口的名字
SLAVE=yes #备用(从设备)
(2)修改eth1配置
vi /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
SLAVE=yes
(3)配置bond0
vi /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.0.10
NETMASK=255.255.255.0
GATEWAY=192.168.0.1
(4)配置bonding
vi /etc/modprobe.d/dist.conf
末尾增加以下两行
alias bond0 bonding
options bond0 miimon=100 mode=1
#miimon是用来进行链路监测的:miimon=100表示系统每100ms监测一次链路连接状态,如果有一条线路不同就转入另一条线路。
#mode=1表示属于主备模式。
(5)配置开机自启
vi /etc/rc.d/rc.local
ifenslave bond0 eth0 eth1
#route add -net 192.16.0.0 netmask 255.255.255.0 bond0—如果有需要添加该路由
(6)重启机器
reboot
(7)查看当前使用网口
cat /proc/net/bonding/bond0
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)