@Network_Eric
Hi
let`s use this example configured on R1
ip prefix-list test-100 permit 10.0.0.100/32
(invisible deny all)
ip prefix-list test-101 permit 10.0.0.101/32
(invisible deny all)
ip prefix-list test-102 permit 10.0.0.102/32
(invisible deny all)
ip prefix-list test-103 permit 10.0.0.103/32
(invisible deny all)
route-map ine permit 10
match ip address prefix-list test-100
set local preference 1000
route-map ine permit 20
match ip address prefix-list test-101
set local preference 1001
route-map ine permit 30
match ip address prefix-list test-102
set local preference 1002
route-map ine permit 40
match ip address prefix-list test-103
set local preference 1003
(invisible deny all)
sir, what is the difference between the ((invisible deny all)
in the prefix-list and (invisible deny all) in the route-map?
for example, 10.0.0.104/32 is going to match
(invisible deny all) in the prefix-lists ? or in the route-map?
when we have stanza 10 referring to prefix-list test-100 , what is going to happened ?
the ios should go to prefix-list test-100 seq 10 and if it doesnt match it should move to the next seq in the prefix-list test-100 . but since we don
t have another seq in prefix-list test-100 which means that route should move to the next seq which is (invisible deny all ) in the prefix-list 100