Ubuntu 双网卡绑定

前端之家收集整理的这篇文章主要介绍了Ubuntu 双网卡绑定前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1插件安装

apt-get install ifenslave

2、配置interfaces

# This file describes the network interfaces available on your system

# and how to activate them. For more information,see interfaces(5).

# The loopback network interface

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet static

address 172.16.200.50

netmask 255.255.255.0

#gateway 172.16.200.254

auto eth1

iface eth1 inet static

address 172.16.200.51

netmask 255.255.255.0

#gateway 172.16.200.254

auto bond0

iface bond0 inet static

address 172.16.200.52

netmask 255.255.255.0

gateway 172.16.200.254

broadcast 172.16.200.255

dns-nameservers 202.96.209.133

up /sbin/ifenslave bond0 eth0

up /sbin/ifenslave bond0 eth1

3、把bond模块加入到/etc/modules

alias bond0 bonding

options bond0 mode=balance-alb miimon=100 max_bonds=2

说明:miimon是用来进行链路监测的。比如:miimon=100,那么系统每100ms监测一次链路连接状态,如果有一条线路不通就转入另一条线路;mode的值表示工作模式,他共有01,2,3四种模式,常用的为0,1两种。

mode=0表示load balancing (round-robin)负载均衡方式,两块网卡都工作。

mode=1表示fault-tolerance (active-backup)提供冗余功能,工作方式是主备的工作方式,也就是说默认情况下只有一块网卡工作,另一块做备份.

bonding只能提供链路监测,即从主机到交换机的链路是否接通。如果只是交换机对外的链路down掉了,而交换机本身并没有故障,那么bonding会认为链路没有问题而继续使用.

4、重启网卡

5、加入开机启动

modprobe bonding max_bonds=2

创建一个bond设备,三个简单的步骤即可搞定:

1)首先要保证相应的驱动程序已经加载:

localhost@root ~# modprobe bonding

modprobe <3c59x| eepro100|pcnet32|tulip|...>

2)其次给等梆定bond设备分配IP地址

localhost@root ~# ifconfig bond0 <IP地址> netmask <子网掩码> broadcast <广播地址>

例如ifconfig bond0 192.168.1.242 netmask 255.255.255.0 broadcast 172.31.3.254

3)最后将所有要梆定的物理网卡接口添加bond设备中去

localhost@root ~# ifenslave bond0 [{-f|--force} bond0 eth0 [ eth1 [eth2]...]

例如ifenslave bond0 eth0 eth1梆定了eth0 eth1两个网卡设备。--force表示强制进行梆定

创建好bond设备后,就可以像一般的网卡设备一样使用了

如启动bond0: # ifconfig bond0 up

停用bond0: # ifconfig bond0 down

在不停用bond0的情况下添加接口: # ifenslave {-d| --detach} bond0 eth0 [eth1 [eth2]...]

--detach表示"附加"的意思

改变活动的从设备: # ifenslave {-c|--change-active} bond0 eth0

--change-acitve表示"改变活动的从设备"的意思

显示主接口(bond0)信息: # ifenslave bond0

显示所以接口信息: # ifenslave {-a|--all-interfaces}

--all-interfaces表示"所有接口"

原文链接:https://www.f2er.com/ubuntu/353611.html

猜你在找的Ubuntu相关文章