Redhat linux雙網路卡繫結一個IP
rh el 5測試透過。。
網路卡1為eth0 網路卡2為eth1 (這個大家都知道)
1.先修改eth0 和eht1這2個網路卡配置檔案.目錄在(/etc/sysconfig/network-scripts/)如下:
DEVICE=eth0
ONBOOT=yes
MASTER=bond0
BOOTPROTO=none (這個最好不要為DHCP 一點啟動慢,二點你網咖有DHCP了,想想!呵呵)
2. eth1 也是同樣的修改.如下:
DEVICE=eth1
ONBOOT=yes
MASTER=bond0
BOOTPROTO=none (這個最好不要為DHCP 一點啟動慢,二點你網咖有DHCP了,想想!呵呵)
3.新建一個虛擬網路卡bond0,我們可以複製eth0的,複製後要修改內容.
複製 (cp /etc/sysconfig/network-scripts/ifcfg-eth0 ifcfg-bond0)修改內容為如下:
DEVICE=bond0
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.0.227
NETMASK=255.255.255.0
BROADCAST=192.168.0.255
TYPE=Ethernet
4.修改/etc/modprobe.conf,新增內容如下:
alias bond0 bonding
options bond0 miimon=100 mode=1
注意:mode可以為0, 1, 0為負載均衡,1為失效保護, 我們只用到0
關於:modprobe.conf檔案在AS版本里面有,linux9.0的是這個modules.conf檔案
mode指定了bond0的工作模式,常用的是0和1,0表示負載均衡方式,1表示主從方式,可根據需要自行配置。常用的為0,1兩種。mode=0表示 load balancing (round-robin)為負載均衡方式,兩塊網路卡都工作。mode=1表示fault-tolerance (active-backup)提供冗餘功能,工作方式是主備的工作方式,也就是說預設情況下只有一塊網路卡工作,另一塊做備份。bonding只能提供鏈路監測,即從主機到交換機的鏈路是否接通。如果只是交換機對外的鏈路down掉了,而交換機本身並沒有故障,那麼bonding會認為鏈路沒有問題而繼續使用。 miimon是用來進行鏈路監測的。比如:miimon=100,那麼系統每100ms監測一次鏈路連線狀態,如果有一條線路不通就轉入另一條線路。
5:修改/etc/rc.d/rc.local,新增內容如下:
ifenslave bond0 eth0 eth1
route add -net 192.168.0.255 netmask 255.255.255.0 bond0
完成。。。。。。。。。。。
檢視:
[root@LMsev ~]# cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.0.3 (March 23, 2006)
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
Link Failure Count: 0
Permanent HW addr: 00:0c:29:ea:73:0f
Slave Interface: eth1
MII Status: up
Link Failure Count: 0
Permanent HW addr: 00:0c:29:ea:73:19
如果bond關閉後,使用一下命令啟動:
ifenslave bond0 eth0 eth1
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22036495/viewspace-1055211/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SUSE linux雙網路卡繫結一個IPLinux
- linux redhat 雙網路卡繫結LinuxRedhat
- RedHat Linux 5 雙網路卡繫結RedhatLinux
- redhat 6.3 雙網路卡繫結Redhat
- Redhat AS 5.4 雙網路卡繫結Redhat
- 【轉】redhat 雙網路卡繫結Redhat
- Linux雙網路卡繫結單個IP之(team)Linux
- linux雙網路卡繫結Linux
- Linux 繫結雙網路卡Linux
- Linux 雙網路卡繫結Linux
- Redhat Linux網路卡配置與繫結RedhatLinux
- 雙網路卡繫結
- Redhat Linux網路卡配置與繫結(zt)RedhatLinux
- Linux 雙網路卡繫結實踐Linux
- linux6.5 雙網路卡繫結Linux
- Linux 雙網路卡繫結技術Linux
- Solaris下網路卡繫結多個IP
- Linux單網路卡繫結多IP與多網路卡共用單IPLinux
- SCO一個網路卡上面繫結多個IP地址(轉)
- centos 6.5 雙網路卡繫結CentOS
- liunx下雙網路卡繫結
- Linux 雙網路卡雙IP配置Linux
- Linux下雙網路卡繫結bond0Linux
- 多塊網路卡繫結IP在linux下Linux
- CentOS 5.4上雙網路卡(多網路卡)繫結CentOS
- Windows下單網路卡繫結多個IP地址Windows
- bond 雙網路卡(兩網路卡使用同一個地址)(Redhat5.5)Redhat
- RHEL6 雙網路卡繫結
- 關於AIX雙網路卡繫結AI
- NIC bonding 雙網路卡繫結
- Linux網路卡繫結Linux
- linux 網路卡繫結Linux
- CentOS 5中改造RAC的private ip實現雙網路卡繫結CentOS
- 虛擬機器雙網路卡繫結虛擬機
- Linux(09):網路卡繫結Linux
- linux rac 網路卡繫結Linux
- Linux下雙網路卡繫結bond配置例項詳解Linux
- 【LINUX】Linux網路卡繫結探析Linux