- 积分
- 68
- 鸿鹄币
- 个
- 好评度
- 点
- 精华
- 最后登录
- 1970-1-1
- 阅读权限
- 20
- 听众
- 收听
助理工程师
 
|
发表于 2018-4-30 22:31:02
|
显示全部楼层
我认为这个题目的答案需要深究,首先这个题目的初始配置是有问题的,四个路由器用eigrp组成了全网可达网络,cisco实际题目是什么样子无法考究,只能是考试的时候去看了,
我认为题目答案的2个问题:
1.route-map在没有指定ACL时,是匹配所有流量的,何不建立一个acl 102 来匹配所有流量呢?
2.route-map没有和SLA联动,与题目中 IT policy requires that all outbound HTTP traffic use the frame relay link when it is available不符,题目中不允许使用静态路由/浮动路由,如果再不与SLA联动,就会导致当R1不能到达10.1.100.2时,但10.1.101.2可达时,所有的http流量全部丢包,所以我认为需要将PBR与SLA联动
ip sla monitor 10
type echo protocol ipIcmpEcho 10.1.100.2 source-ipaddr 10.1.100.1
frequency 5
ip sla monitor schedule 10 life forever start-time now
ip sla monitor 11
type echo protocol ipIcmpEcho 10.1.101.2 source-ipaddr 10.1.101.1
frequency 5
ip sla monitor schedule 11 life forever start-time now
!
track 10 rtr 10
delay down 10 up 10
!
track 11 rtr 11
delay down 10 up 10
!
access-list 101 permit tcp any any eq www
access-list 102 permit ip any any
!
route-map pbr permit 10
match ip address 101
set ip next-hop verify-availability 10.1.100.2 1 track 10
set ip next-hop verify-availability 10.1.101.2 2 track 11
!
route-map pbr permit 20
match ip address 102
set ip next-hop verify-availability 10.1.101.2 1 track 11
set ip next-hop verify-availability 10.1.100.2 2 track 10 |
5#
2018-4-30 22:31:02
回复(0)
收起回复
|