最佳答案
可以再加上trunk和NQA检测可以做到毫秒级
(0)
有跟踪的配置吗?
policy-based-route aaa permit node 0 if-match acl 3100 apply next-hop 10.13.12.X track 1 # nqa entry yidong_902 1 type icmp-echo description yidong_902 destination ip 10.13.12.X frequency 1000 probe count 3 probe timeout 1000 reaction 1 checked-element probe-fail threshold-type consecutive 3 action-type trigger-only # nqa schedule yidong_902 1 start-time now lifetime forever
参考案例,可以实现毫秒切换:
防火墙作为网络出口设备,外网有移动和联通两条线路。内网有192.168.1.0和192.168.2.0两个网段,需要实现192.168.1.0网段走移动线路,192.168.2.0网段走联通线路。当两条线路中的一条线路故障时数据可以通过正常链路转发。
防火墙上网配置请参考“2.2.2 防火墙外网使用固定IP地址上网配置方法”进行配置,本文只针对策略路由配置进行介绍。
# 创建ACL 3000匹配192.168.1.0网段数据
<H3C>system-view
[H3C]acl advanced 3000
[H3C-acl-ipv4-adv-3000]rule 0 permit ip source 192.168.1.0 0.0.0.255
[H3C-acl-ipv4-adv-3000]quit
# 创建ACL 3001匹配192.168.2.0网段数据
[H3C]acl advanced 3001
[H3C-acl-ipv4-adv-3001]rule 0 permit ip source 192.168.2.0 0.0.0.255
[H3C-acl-ipv4-adv-3001]quit
# 创建策略路由neiwang节点5匹配192.168.1.0网段的数据由移动线路转发。
[H3C]policy-based-route neiwang node 5
[H3C-pbr-neiwang-5]if-match acl 3000
[H3C-pbr-neiwang-5]apply next-hop 1.1.1.2
[H3C-pbr-neiwang-5]quit
注:next-hop后的地址为移动线路的网关
# 创建策略路由neiwang节点10匹配192.168.2.0网段的数据由联通线路转发。
[H3C]policy-based-route neiwang node 10
[H3C-pbr-neiwang-10]if-match acl 3001
[H3C-pbr-neiwang-10]apply next-hop 2.2.2.2
[H3C-pbr-neiwang-10]quit
注:next-hop后的地址为联通线路的网关
# 在防火墙连接内网的接口GigabitEthernet 1/0/4口调用策略路由
[H3C]interface GigabitEthernet 1/0/4
[H3C-GigabitEthernet1/0/4]ip policy-based-route neiwang
[H3C-GigabitEthernet1/0/4]quit
注:策略路由必须调用在内网接口才能生效。
[H3C]save force
(0)
参考 https://zhiliao.h3c.com/Theme/details/2747
你好,这是基本配置,问题是当一条线断了之后,终端切换到另外线路需要多少时间?
参考 https://zhiliao.h3c.com/Theme/details/2747
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
policy-based-route aaa permit node 0 if-match acl 3100 apply next-hop 10.13.12.X track 1 # nqa entry yidong_902 1 type icmp-echo description yidong_902 destination ip 10.13.12.X frequency 1000 probe count 3 probe timeout 1000 reaction 1 checked-element probe-fail threshold-type consecutive 3 action-type trigger-only # nqa schedule yidong_902 1 start-time now lifetime forever