QUESTION 155
A customer requests policy-based routing Packets arriving from source 209 165 200 225
should be sent to the next hop at 209.165.200.227 with the precedence bit set to priority
Packets arriving from source 209.165.200.226 should be sent to the next hop at
209.165.200.228 with the precedence bit set to critical. Which configuration completes
these requirements?
看看我放在路线图配置中的粗体字。
A customer requests policy-based routing:
Which configuration completes these requirements
access-list 1 permit 209.165.200.225
access-list 2 permit 209.165.200.226
!
###Packets arriving from source 209 165 200 225 should be sent to the next hop at 209.165.200.227 with the precedence bit set to priority
route-map Texas permit 10
match ip address 1
set ip precedence priority
set ip next-hop 209.165.200.227
!
###Packets arriving from source 209.165.200.226 should be sent to the next hop at 209.165.200.228 with the precedence bit set to critical.
route-map Texas permit 10
match ip address 2
set ip precedence critical
set ip next-hop 209.165.200.228
!
interface ethernet 1
ip policy route-map Texas