java启动绑定网卡_Linux服务器网卡绑定配置(loongnix)

1.首先关闭NetworkManager服务

service NetworkManager stop

2、查看网卡名称,确定要绑定的网卡,本次配置选择双网卡绑定

ifconfig #使用ifconfig命令可以看到网卡的列表

实现物理网口enp5s0f0,enp5s0f1网卡绑定,绑定后的虚拟逻辑网口bond0

3、modinfo bonding 检查自己的操作系统是否支持bonding

[root@localhost ~]# modinfo bonding

filename:/lib/modules/3.10.0-693.lns7.8.mips64el/kernel/drivers/net/bonding/bonding.ko

author: Thomas Davis, tadavis@lbl.gov and many others

description: Ethernet Channel Bonding Driver, v3.7.1version:3.7.1license: GPL

alias: rtnl-link-bond

rhelversion:7.4srcversion: 694CF99DDA3170BD385D0E1

depends:

intree: Y

vermagic:3.10.0-693.lns7.8.mips64el SMP preempt mod_unload modversions LOONGSON3 64BIT

parm: max_bonds:Max number of bonded devices (int)

... ... ... ...

... ... ... ...

如果没有消息返回,说明内核不支持bonding

4、创建网卡绑定配置文件

cd /etc/sysconfig/network-scripts/

备份原来的配置文件

cp ifcfg-enp5s0f0 bak/

cp ifcfg-enp5s0f1 bak/

新建绑定文件

vi ifcfg-bond0

DEVICE=bond0

TYPE=Ethernet

ONBOOT=yes

BOOTPROTO=none

IPADDR=10.150.1.200NETMASK=255.255.255.0GATEWAY=10.150.1.1DNS1=202.99.192.68DNS2=8.8.8.8USERCTL=no

5、修改原网卡enp5s0f0和enp5s0f1配置文件

ifcfg-enp5s0f0:

DEVICE=enp5s0f0

ONBOOT=yes

BOOTPROTO=none

MASTER=bond0

SLAVE=yes

USERCTL=no

ifcfg-enp5s0f1:

DEVICE=enp5s0f1

ONBOOT=yes

BOOTPROTO=none

MASTER=bond0

SLAVE=yes

USERCTL=no

6、修改modprobe相关设定文件,并加载bonding模块

vi /etc/modprobe.d/bonding.conf

alias bond0 bonding

options bonding mode=6 miimon=200

执行命令加载模块

modprobe bonding

miimon=100为每100毫秒(0.1秒)检查网络一次,可以根据自己需求修改

mode为网卡工作模式,共七种,通常设置0、1、6这几种

7、重启网卡

[root@localhost network-scripts]# lsmod |grep bonding

bonding134260 0[root@localhost network-scripts]# service network restart

8、查看绑定状态

[root@localhost network-scripts]# cat /proc/net/bonding/bond0

Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)

Bonding Mode: fault-tolerance (active-backup)

Primary Slave: None

Currently Active Slave: enp5s0f0

MII Status: up

MII Polling Interval (ms):100Up Delay (ms):0Down Delay (ms):0Slave Interface: enp5s0f0

MII Status: up

Speed:1000Mbps

Duplex: full

Link Failure Count:0Permanent HW addr:00:23:9e:05:72:7f

Slave queue ID:0Slave Interface: enp5s0f1

MII Status: up

Speed:1000Mbps

Duplex: full

Link Failure Count:0Permanent HW addr:00:23:9e:05:72:80Slave queue ID:0

9、断网测试

(略)

Mode模式说明:

Mode

功能

功能说明

0

balance-rr

负载均衡模式需要switch配置(trunk)支持才能发挥实际

效果,具有容错功能,其中一块网卡失效仍可持续工作

1

active-backup

同一时间终于一块网卡工作,Active Slave其中一块网卡断

线时自动启用另一块网卡,不需要switch支持

2

balance-xor

具容错作用

3

broadcast

所有网卡一起收发网络数据包,具容错功能,其中一块网卡

断线仍可持续工作

4

802.3ad

无实际功能,不建议使用

5

balance-tlb

发送数据包自动负载均衡,接收数据包有Current Active

Slave 负责,具容错功能,其中一块网卡失效仍可持续工

作,不需要switch支持配置

6

balance-alb

发送及接收皆自动负载均衡。具有容错功能,其中一块网卡

断线时仍可持续工作,网卡驱动程序需要支持setting

hardware address功能,不需要switch支持及配置

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值