linux下多网卡绑定配置
时间:2014-09-21 01:01 来源:linux.it.net.cn 作者:IT网
将eth0和eth1绑定为bond0
修改eth0的内容如下: 修改eth1的内容如下:
DEVICE=eth0 DEVICE=eth1
BOOTPROTO=none BOOTPROTO=none
HWADDR=D4:BE:…… HWADDR=D4:BE:……
ONBOOT=yes ONBOOT=yes
MASTER=bond0 MASTER=bond0
USERCTL=no USERCTL=no
创建并配置bond0文件
bond0文件配置内容如下:
DEVICE=bond0
BOOTPROTO=none
ONBOOT=yes
DHCP_HOSTNAME=localhost
IPADDR=192.168.1.100
NETMASK=255.255.255.0
USECTL=no (此处非USERCTL)
BONDDING_OPTS="mode=1 miimon=100"
然后修改/etc/modprobe.conf
在其中加入一行 alias bond0 bonding
重启网卡设备
/etc/init.d/network restart
(责任编辑:IT)
将eth0和eth1绑定为bond0
修改eth0的内容如下: 修改eth1的内容如下:
DEVICE=eth0 DEVICE=eth1
BOOTPROTO=none BOOTPROTO=none
HWADDR=D4:BE:…… HWADDR=D4:BE:……
ONBOOT=yes ONBOOT=yes
MASTER=bond0 MASTER=bond0
USERCTL=no USERCTL=no
创建并配置bond0文件
bond0文件配置内容如下:
DEVICE=bond0
BOOTPROTO=none
ONBOOT=yes
DHCP_HOSTNAME=localhost
IPADDR=192.168.1.100
NETMASK=255.255.255.0
USECTL=no (此处非USERCTL)
BONDDING_OPTS="mode=1 miimon=100"
然后修改/etc/modprobe.conf
在其中加入一行 alias bond0 bonding
重启网卡设备
/etc/init.d/network restart
|