linux配置多網卡-九游会j9娱乐平台
1. linux如何配置雙網卡綁定bond
sles:
# vi /etc/sysconfig/network/ifcfg-bond0 插入如下內容
bootproto='static'
ipaddr='10.34.81.21'
netmask='255.255.255.0'
startmode='onboot'
bonding_master='yes'
bonding_module_opts='mode=1 miimon=200 use_carrier=1'
bonding_slave0='eth1'
bonding_slave1='eth2'
檢查# /etc/sysconfig/network/ 下有沒有eth1、eth2的mac地址配置,若有,則刪除
啟動雙網卡綁定# rcnetwork restart
其中:bonding_module_opts='mode=1 為主備 0為負荷分擔
redhat:
創建一個ifcfg-bond0
# vi /etc/sysconfig/network-scripts/ifcfg-bond0
device=bond0
bonding_opts="mode=1 miimon=500"
bootproto=none
onboot=yes
broadcast=192.168.0.255
ipaddr=192.168.0.180
netmask=255.255.255.0
network=192.168.0.0
userctl=no
其中:bonding_opts="mode=1 為主備 0為負荷分擔
修改/etc/sysconfig/ifcfg-ethx
這里說的ethx指要加入綁定網卡的名稱,本例中是eth0、eth1。
# vi /etc/sysconfig/ifcfg-eth0
device=eth0 bootproto=none onboot=yes master=bond0 slave=yes userctl=no
# vi /etc/sysconfig/ifcfg-eth1
device=eth1bootproto=none onboot=yes master=bond0 slave=yes userctl=no
配置/etc/modprobe.conf,添加alias bond0 bonding
# vi /etc/modprobe.conf
alias eth0 pcnet32
alias eth1 pcnet32
alias scsi_hostadapter mptbase
alias scsi_hostadapter1 mptspi
alias bond0 bonding
重啟網路服務
#service network restart