RHEL6 雙網路卡繫結
RHEL6 雙網路卡繫結
為了提供網路的高可用性,我們可能需要將多塊網路卡繫結成一塊虛擬網路卡對外提供服務,這樣即使其中的一塊物理網路卡出現故障,也不會導致連線中斷。多網路卡繫結這個詞在不同的平臺有不同叫法,在Linux下叫bonding,IBM稱為etherchanel,broadcom叫team,但是名字怎麼變,效果都是將兩塊或更多的網路卡當做一塊網路卡使用,在增加頻寬的同時也可以提高冗餘性。比如我們在RHEL6下可以將eth0和eth1繫結成虛擬網路卡bond0。
1、 新增虛擬網路卡
# vim /etc/sysconfig/network-scripts/ifcfg-bond0 # cat /etc/sysconfig/network-scripts/ifcfg-bond0 DEVICE=bond0 BOOTPROTO=static ONBOOT=yes IPADDR=192.168.12.128 NETMASK=255.255.255.0 USERCTL=no # |
2、 配置本地網路卡資訊
# vim /etc/sysconfig/network-scripts/ifcfg-eth0 # vim /etc/sysconfig/network-scripts/ifcfg-eth1 # cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE="eth0" TYPE=Ethernet BOOTPROTO=static ONBOOT="yes" MASTER=bond0 SLAVE=yes USERCTL=no # cat /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE="eth1" TYPE=Ethernet BOOTPROTO=static ONBOOT="yes" MASTER=bond0 SLAVE=yes USERCTL=no # |
3、 模組載入
# vim /etc/modprobe.d/dist.conf # grep bond0 /etc/modprobe.d/dist.conf alias bond0 bonding options bond0 miimon=100 mode=1 //miimon是指多久時間要檢查網路一次,單位是ms(毫秒)這邊的100,是100ms,即是0.1秒 //mode共有七種(0~6),這裡解釋兩個常用的選項。 Ø mode=0:平衡負載模式,兩塊網路卡都在工作。 Ø mode=1:自動主備模式,其中一塊網路卡在工作(若eth0斷掉),則自動切換到另一個塊網路卡(eth1做備份)。 |
4、 重啟網路服務,使配置生效
# service network restart # cat /proc/net/bonding/bond0 Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
Bonding Mode: fault-tolerance (active-backup) Primary Slave: None Currently Active Slave: eth0 MII Status: up MII Polling Interval (ms): 100 Up Delay (ms): 0 Down Delay (ms): 0
Slave Interface: eth0 MII Status: up Speed: 100 Mbps Duplex: full Link Failure Count: 0 Permanent HW addr: 00:0c:29:45:bf:a0 Slave queue ID: 0
Slave Interface: eth1 MII Status: up Speed: 100 Mbps Duplex: full Link Failure Count: 0 Permanent HW addr: 00:0c:29:45:bf:aa Slave queue ID: 0 # route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.128.0 0.0.0.0 255.255.255.0 U 0 0 0 bond0 169.254.0.0 0.0.0.0 255.255.0.0 U 1004 0 0 bond0 # lsmod | grep bond bonding 109558 0 # |
5、 測試
選擇一臺Linux機器ping測試機,然後停掉當前使用的網路卡eth0,檢視是否能夠繼續ping通
# ifdown eth0 # cat /proc/net/bonding/bond0 //發現此時啟用的網路卡為eth1了,如果測試可以ping通,則實驗完成 Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
Bonding Mode: fault-tolerance (active-backup) Primary Slave: None Currently Active Slave: eth1 MII Status: up MII Polling Interval (ms): 100 Up Delay (ms): 0 Down Delay (ms): 0
Slave Interface: eth1 MII Status: up Speed: 100 Mbps Duplex: full Link Failure Count: 0 Permanent HW addr: 00:0c:29:45:bf:aa Slave queue ID: 0 # |
相關文章
- 雙網路卡繫結
- linux雙網路卡繫結Linux
- redhat 6.3 雙網路卡繫結Redhat
- Linux 繫結雙網路卡Linux
- Linux 雙網路卡繫結Linux
- Redhat AS 5.4 雙網路卡繫結Redhat
- centos 6.5 雙網路卡繫結CentOS
- 【轉】redhat 雙網路卡繫結Redhat
- liunx下雙網路卡繫結
- CentOS 5.4上雙網路卡(多網路卡)繫結CentOS
- 關於AIX雙網路卡繫結AI
- linux redhat 雙網路卡繫結LinuxRedhat
- NIC bonding 雙網路卡繫結
- Linux 雙網路卡繫結實踐Linux
- 虛擬機器雙網路卡繫結虛擬機
- linux6.5 雙網路卡繫結Linux
- Linux 雙網路卡繫結技術Linux
- RedHat Linux 5 雙網路卡繫結RedhatLinux
- 《linux 網路卡別名的新增和繫結》RHEL6Linux
- Linux下雙網路卡繫結bond0Linux
- SUSE linux雙網路卡繫結一個IPLinux
- Redhat linux雙網路卡繫結一個IPRedhatLinux
- Oracle 11gR2 RAC 單網路卡轉雙網路卡繫結配置Oracle
- Liunx 網路卡繫結
- Linux雙網路卡繫結單個IP之(team)Linux
- 華為server centos 6.5雙網路卡繫結操作步驟ServerCentOS
- Linux網路卡繫結Linux
- 剖析網路卡繫結模式模式
- linux 網路卡繫結Linux
- Linux下雙網路卡繫結bond配置例項詳解Linux
- OEL6.4(BOND)雙網路卡繫結實戰—附加說明
- Linux(09):網路卡繫結Linux
- Oracle RAC 與 網路卡繫結Oracle
- 網路卡繫結七種模式模式
- linux rac 網路卡繫結Linux
- CentOS 5中改造RAC的private ip實現雙網路卡繫結CentOS
- 深度分析Linux下雙網路卡繫結七種模式 多網路卡的7種bond模式原理Linux模式
- linux6.5 網路卡繫結Linux