Solaris IPMP Link模式

Solaris 10之後IPMP能夠配置Link模式。服務器

以Solaris 10位環境,配置ide

配置網卡ce1,以前該接口沒有任何配置,若是有
ifconfig ce1 unplumb
所有清除,若是有子接口如:ce1:1也都刪除接口

配置ce1接口:
ifconfig ce1 plumb 192.168.1.10 netmask + broadcast + group IPMP0 up
配置主接口,服務的IP地址就是192.168.1.10,link模式和Probe區別只有一個IP地址,也是惟一的。若是在hosts文件裏有定義,ip地址能夠用名字代替。netmask是已經在文件/etc/inet/netmasks裏面定義,組的名字就是IPMP0,最後up一下,啓動起來進程

配置ce5接口:
ifconfig ce5 plumb group IPMP0 up
ce5接口也是空配置開始,什麼都不要配置,直接加入IPMP0組就好。ip

配置完了用ifconfig -a看一下
#ifconfig -a
lo0: flags=2072000749[UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL] mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
ce1: flags=1000793[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 2
inet 192.168.1.10 netmask ffffff00 broadcast 192.168.1.255
groupname IPMP0
ether 0:14:4f:2a:ef:67
ce5: flags=1000563[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 3
inet 0.0.0.0 netmask ff000000
groupname IPMP0
ether 0:14:4f:2a:ef:71 內存

能夠看到ce5接口上是沒有IP地址的,經過交換機查看,
cisco交換機:sh arp和sh mac addr
能夠看到ip地址192.168.1.10對應的mac地址是在ce1所對應的交換機接口上
關閉交換機ce1對應的接口
查看服務器log
tail /var/adm/messages
in.mpathd進程
能夠看到ce1接口down了,而後ipmp組偵測動做,發生遷移從ce1到ce5ci

這時再看網卡信息it

#ifconfig -a
lo0: flags=2072000749[UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL] mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
ce1: flags=1000793[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 2
inet 0.0.0.0 netmask ffffff00 broadcast 192.168.1.255
groupname IPMP0
ether 0:14:4f:2a:ef:67
ce5: flags=1000563[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 3
inet 0.0.0.0 netmask ff000000
groupname IPMP0
ether 0:14:4f:2a:ef:71
ce5:1 flags=1000563[UP,BROADCAST,RUNNING,MULTICAST,IPv4] mtu 1500 index 3
inet 192.168.1.10 netmask ffffff00 broadcast 192.168.1.255
接口ce1的ip地址都消失了(inet 0.0.0.0),ce5並無修改ip地址,而是出現了一個ce5:1的子接口,配置了應該出現的IP地址ast

這樣配置了只是在內存裏,機器重啓動就沒了,要保存還須要把配置寫入/etc/hostname.接口 裏
這裏就是/etc/hostname.ce1
192.168.1.10 netmask + broadcast + group IPMP0 up
和/etc/hostname.ce5
group IPMP0 upclass

以上配置的是雙active模式,能夠配置active和standby
ifconfig ce5 group IPMP0 standby up
該接口就變成待機接口了,如長期的,注意保存/etc/hostname.ce5

有時候須要臨時把某個接口從組裏移出來ifconfig ce5 group ""

相關文章
相關標籤/搜索