H3C SecPath F1000-AK1010防火墙设备怎么设置双防火墙主备HA部署
(0)
最佳答案
RBM,参考手册:
https://www.h3c.com/cn/pub/Document_Center/2023/08/WebHelp_H3C_SecPath_FHQCP_DXPZALJ(V7)/default_auto.htm?CHID=904200
(0)
暂无评论
F1000-AK1010 做双机主备 HA,用的是 H3C 标准的 RBM(远端备份管理)+ VRRP 方案:
RBM:负责心跳、配置同步、会话表同步
VRRP:在外网 / 内网接口上配置虚拟 IP,作为网关,故障时秒级切换
下面给你一套可直接照着做的完整配置(V7 平台,命令行 + Web 思路)。
一、组网规划(先定好地址)
两台防火墙:FW1(主)、FW2(备)
外网:GE1/0/1
FW1:202.96.1.1/24
FW2:202.96.1.2/24
VRRP 虚 IP:202.96.1.254/24
内网:GE1/0/2
FW1:10.1.1.1/24
FW2:10.1.1.2/24
VRRP 虚 IP:10.1.1.254/24
心跳(RBM):GE1/0/3(直连,不要过交换机)
FW1:192.168.100.1/30
FW2:192.168.100.2/30
二、FW1(主设备)配置
1. 接口 IP
bash
运行
system-view
# 外网
interface GigabitEthernet1/0/1
ip address 202.96.1.1 255.255.255.0
# 内网
interface GigabitEthernet1/0/2
ip address 10.1.1.1 255.255.255.0
# 心跳
interface GigabitEthernet1/0/3
ip address 192.168.100.1 255.255.255.252
2. VRRP(外网 + 内网虚拟 IP)
bash
运行
# 外网 VRRP
interface GigabitEthernet1/0/1
vrrp vrid 1 virtual-ip 202.96.1.254
vrrp vrid 1 priority 150 # 主设备优先级高
# 内网 VRRP
interface GigabitEthernet1/0/2
vrrp vrid 2 virtual-ip 10.1.1.254
vrrp vrid 2 priority 150
3. RBM 双机热备核心
bash
运行
# 开启 RBM
remote-backup group
# 本端/对端心跳 IP
local-ip 192.168.100.1
remote-ip 192.168.100.2
# 心跳口
data-channel interface GigabitEthernet1/0/3
# 角色:主设备
device-role primary
# 开启配置、会话同步
configuration sync enable
session sync enable
# 监控业务口(Down 就切换)
track interface GigabitEthernet1/0/1
track interface GigabitEthernet1/0/2
# 抢占:主故障恢复后 60 秒切回
preempt-mode timer delay 60
# 全局开启 RBM
remote-backup enable
三、FW2(备设备)配置
1. 接口 IP
bash
运行
system-view
interface GigabitEthernet1/0/1
ip address 202.96.1.2 255.255.255.0
interface GigabitEthernet1/0/2
ip address 10.1.1.2 255.255.255.0
interface GigabitEthernet1/0/3
ip address 192.168.100.2 255.255.255.252
2. VRRP
bash
运行
interface GigabitEthernet1/0/1
vrrp vrid 1 virtual-ip 202.96.1.254
vrrp vrid 1 priority 100
interface GigabitEthernet1/0/2
vrrp vrid 2 virtual-ip 10.1.1.254
vrrp vrid 2 priority 100
3. RBM
bash
运行
remote-backup group
local-ip 192.168.100.2
remote-ip 192.168.100.1
data-channel interface GigabitEthernet1/0/3
device-role secondary # 备设备
configuration sync enable
session sync enable
track interface GigabitEthernet1/0/1
track interface GigabitEthernet1/0/2
preempt-mode timer delay 60
remote-backup enable
四、Web 界面快速路径(不想敲命令)
网络 → 接口:配置内外网、心跳口 IP
网络 → VRRP:在外网 / 内网接口创建虚拟 IP,主备不同优先级
系统 → 高可靠性 → 双机热备(RBM):
开启双机热备
填入本端 / 对端心跳 IP
选择心跳接口
角色:主 / 备
开启配置同步、会话同步
监控业务接口
五、验证命令
bash
运行
# 查看 RBM 状态
display remote-backup-group status
# 查看 VRRP 状态
display vrrp brief
# 查看同步是否正常
display remote-backup-group configuration
正常情况:
FW1:Primary、VRRP Master
FW2:Secondary、VRRP Backup
六、关键点(避坑)
心跳口 必须直连,不要经过交换机,防止脑裂
所有业务接口都要 track,否则接口断了不切换
只在 主设备 上做策略、NAT、对象,会自动同步到备机
建议加 60 秒抢占延迟,防止链路震荡频繁切来切去
(0)
暂无评论
GigabitEthernet 1/0/2 接口)。G1/0/2 接口,配置心跳 IP 地址(例如:1.1.1.1/24)。G1/0/2 接口配置为同网段 IP(例如:1.1.1.2/24)。G1/0/2)指定为 HA 控制通道和数据通道。(0)
暂无评论
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
暂无评论