- 论坛徽章:
- 0
|
IPMP从Solaris 8 (01/01)开始就已经成为Solaris的标准配置了,所以大家都可以用,对于这些新的feature,大家不要客气啊,不用白不用啊!
下面就用配置文件的方式来配置IPMP,假设如下:
multipathing test IP 10.170.1.81 测试地址1
multipathing test IP 10.170.1.82 测试地址1
Logical IP 10.170.1.80 逻辑地址,这是我们访问的地址
Group Name mswitch 这个名字,随便取的
Network Card ce0,ce1
1、首先更改hosts文件
#vi /etc/hosts
10.170.1.80 host1 loghost
10.170.1.81 host1-1
10.170.1.82 host1-2
2、然后创建文件hostname.ce0 , hostname.ce1
#vi /etc/hostname.ce0
host1 group mswitch up
addif host1-1 -failover deprecated up
#vi /etc/hostname.ce1
host1-2 group mswitch -failover deprecated up
3、重新启动计算机,就可以了
#reboot
4、after reboot , you can use ifconfig -a to view the configure information.
#ifconfig -a
做做测试,看看会不会failover! |
|