在每个vios上建2虚拟网卡,第一块用作外联,第二块用做心跳。SEA failover时要注意,vios1的priority为1 ,vios2的priority为2。2个vios的portvlanid号相同。在2台vios上都要配置(IP地址为内网的ip)mkvdev -sea en...
在每个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
本文标题为:双 VIOS 环境如何配置心跳网卡?
基础教程推荐
- 以代码实例总结iOS应用开发中数据的存储方式 2022-11-20
- Kotlin的枚举与异常示例详解 2022-12-07
- iOS对数组进行排序的实例代码 2023-03-16
- iOS的音频文件的格式转换示例 2023-06-11
- Android zxing如何识别反转二维码详解 2022-11-08
- iOS统计项目的代码总行数 2022-11-01
- 使用Android Studio创建OpenCV4.1.0 项目的步骤 2023-02-26
- iOS微信分享后关闭发送成功提示并返回应用 2023-01-03
- Android自定义悬浮按钮效果 2023-04-22
- Android自定义view实现圆形进度条效果 2023-05-26
