策略路由经典案例

在RouterA RouterB RouterC使用OSPF保证全网可达,并且在RouterA上查看路由表发现到10.10.10.0的下一跳为RouterC的GE1/0/0接口地址。

要求:使10.0.2.0/24到10.0.0.0/24的流量走RouterB
方法:在RouterA上应用策略路由,是10.0.2.0/24到10.0.0.0/24的流量重定向到RouterB上
拓扑:

策略路由经典案例_第1张图片

基本配置
RouterA:

int g1/0/0
ip add 10.181.20.1 255.255.255.0

int g2/0/0
ip add 10.181.10.1 255.255.255.0

int g3/0/0
ip add 10.0.2.1 255.255.255.0

RouterB:

int g1/0/0
ip add 10.181.10.2 255.255.255.0

int g2/0/0
ip add 10.184.10.1 255.255.255.0

RouterC

int g1/0/0
ip add 10.181.20.2 255.255.255.0

int g2/0/0
ip add 10.184.10.2 255.255.255.0

int g3/0/0
ip add 10.0.0.1 255.255.255.0
配置OSPF协议

RouterA:

ospf 1
area 0
network 10.0.2.0 0.0.0.255
network 10.181.20.0 0.0.0.255
network 10.181.10.0 0.0.0.255

RouterB:

ospf 1
area 0
network 10.181.10.0 0.0.0.255
network 10.184.10.0 0.0.0.255

RouterC:

ospf 1
area 0
network 10.184.10.0 0.0.0.255
network 10.181.20.0 0.0.0.255
network 10.0.0.0 0.0.0.255

配置策略路由
定义ACL匹配目的源地址

acl number 3001
rule 5 permit ip source 10.0.2.0 0.0.0.255 destination 10.0.0.0 0.0.0.255

定义需要重定向的数据流分类

traffic classifier rdt operator or
if-match acl 3001

定义流量行为重定向到RouterB的G1/0/0的接口地址

traffic behavior rdt

绑定流策略

traffic policy rdt
classifier rdt behavior rdt

最后验证配置。
在10.0.2.0/24网段的主机上执行tracert,检测路径

你可能感兴趣的:(策略路由经典案例)