- 论坛徽章:
- 0
|
小弟目前准备做关于linux bonding的测试,看了帖子发现有几位兄弟做成功过,我自己做了发现有些问题
首先我用的是centos 4.4 2.6的内核
eth0 配置(eth1 配置同eth0除了DEVICE)
DEVICE=eth0
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
bond0
DEVICE=bond0
ONBOOT=yes
BOOTPROTO=none
IPADDR=192.168.11.10
NETMASK=255.255.255.0
bond0:1
DEVICE=bond0:1
ONBOOT=yes
BOOTPROTO=none
IPADDR=192.168.12.10
NETMASK=255.255.255.0
/etc/rc.d/rc.local
ifenslave bond0 eth0 eth1
ifenslave bond0:1 eth0 eth1
route add -net 192.168.11.0 mask 255.255.255.0 bond0
route add -net 192.168.12.0 mask 255.255.255.0 bond0:1
/etc/modprobe(我etc下没有modules.conf文件,modprobe里面有很多alias)
alias bond0 bonding
options bond0 miimon 100 mode 1
alias bond0:1 bonding
options bond0:1 miimon 100 mode 1
重起network 都正常,bond0 是192.168.11.10 bond0:1 是192.168.12.10
但是我从外面PING这台机器,192.168.11.10能PING通,192.168.12.10PING不通
请问我这样做是否有什么问题吗?
谢谢 |
|