在路由策略里做了控制列表,202.103.203.129 一条宽带的网关地址,192.168.1.1是条宽带的光猫网关地址
# policy-based-route node1 permit node 1
if-match acl 3334
apply ip-address next-hop 202.103.203.129
# policy-based-route node2 permit node 2
if-match acl 3333
apply ip-address next-hop 192.168.1.1 #
# interface GigabitEthernet0/1
port link-mode route
nat outbound 3000 address-group 1
ip address 202.103.203.173 255.255.255.192
ip policy-based-route node1
#
interface GigabitEthernet0/2
port link-mode route
nat outbound 3000 address-group 2
ip address 192.168.1.254 255.255.255.0
ip policy-based-route node2
#
ip route-static 0.0.0.0 0.0.0.0 192.168.1.1 preference 70
ip route-static 0.0.0.0 0.0.0.0 GigabitEthernet0/1 202.103.203.129 preference 50
#
按道理这样配置应该就能按3333,3334不同的IP地址走不同的线路了,node2 里的IP地址走的网关出去192.168.1.1线路出去,可是怎么配置,现所有的IP都还是走interface GigabitEthernet0/1 出去,并没有走interface GigabitEthernet0/2.
两条线路,按路由策略走
(0)
最佳答案
ip policy-based-route 最终调用在内网接口,而不是外网接口下;
按如下案例修改下:
通过策略路由控制从Router A的以太网接口GigabitEthernet1/0/1接收的报文:
· 源地址为192.168.10.2的报文以4.1.1.2/24作为下一跳IP地址;
· 其它源地址的报文以5.1.1.2/24作为下一跳IP地址;
· 保证Router B和Router C之间路由完全不可达。
图1-4 基于报文源地址的转发策略路由的配置举例组网图
配置前请确保Router B和Host A/Host B,Router C和Host A/Host B之间路由可达。
(1) 配置Router A
# 配置接口GigabitEthernet1/0/2和GigabitEthernet1/0/3的IP地址。
<RouterA> system-view
[RouterA] interface gigabitethernet 1/0/2
[RouterA-GigabitEthernet1/0/2] ip address 4.1.1.1 24
[RouterA-GigabitEthernet1/0/2] quit
[RouterA] interface gigabitethernet 1/0/3
[RouterA-GigabitEthernet1/0/3] ip address 5.1.1.1 24
[RouterA-GigabitEthernet1/0/3] quit
# 定义访问控制列表ACL 2000,用来匹配源地址为192.168.10.2的报文。
[RouterA] acl basic 2000
[RouterA-acl-ipv4-basic-2000] rule 10 permit source 192.168.10.2 0
[RouterA-acl-ipv4-basic-2000] quit
# 定义0号节点,指定所有源地址为192.168.10.2的报文的下一跳为4.1.1.2。
[RouterA] policy-based-route aaa permit node 0
[RouterA-pbr-aaa-0] if-match acl 2000
[RouterA-pbr-aaa-0] apply next-hop 4.1.1.2
[RouterA-pbr-aaa-0] quit
[RouterA] policy-based-route aaa permit node 1
[RouterA-pbr-aaa-1] apply next-hop 5.1.1.2
[RouterA-pbr-aaa-1] quit
# 在以太网接口GigabitEthernet1/0/1上应用转发策略路由,处理此接口接收的报文。
[RouterA] interface gigabitethernet 1/0/1
[RouterA-GigabitEthernet1/0/1] ip address 192.168.10.1 24
[RouterA-GigabitEthernet1/0/1] ip policy-based-route aaa
[RouterA-GigabitEthernet1/0/1] quit
从Host A上ping Router B,结果成功。
从Host B上ping Router B,结果失败。
从Host A上ping Router C,结果失败。
从Host B上ping Router C,结果成功。
以上结果可证明:从Router A的以太网接口GigabitEthernet1/0/1接收的源地址为192.168.10.2的报文的下一跳为4.1.1.2,所以Host A能ping通Router B,源地址为192.168.10.3的下一跳5.1.1.2,所以Host B能ping通Router C,由此表明策略路由设置成功。
(0)
我把路由策略放在外网上了,所以一直不生效
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
嗯,改成内网口