双 VIOS 环境如何配置心跳网卡?
作者:互联网
在每个vios上建2虚拟网卡,第一块用作外联,第二块用做心跳。
SEA failover时要注意,vios1的priority为1 ,vios2的priority为2。2个vios的portvlanid号相同。
在2台vios上都要配置(IP地址为内网的ip)
mkvdev -sea ent1 -vadapter ent2 -default ent2 -defaultid 30 -attr ha_mode=auto ctl_chan=ent3 netaddr=192.168.70.211 largesend=1
(物理) (虚拟) (ping测试地址,一般用网关地址,此地址一定要存在不然sea网络不通)
Explanation of the parameters:####
sea ent0 --This is the physical interface
vadapterent1 --This is the virtual interface
default ent1 --Default virtual interface to send untagged packets
defaultid1 --This is the PVID for the SEA interface
配置ip地址
mktcpip -hostname gaovios1 -inetaddr 192.168.70.21 -interface en2 -netmask 255.255.255.0 -gateway 192.168.70.211
vios1查看
$ entstat -all ent4 | grep Active
Priority: 1 Active: True
$
vios2查看
$ entstat -all ent4 | grep Active
Priority: 2 Active: True
标签:--,192.168,vios,网卡,interface,地址,sea,心跳,VIOS 来源: https://blog.51cto.com/u_15127582/2750515