norteldude78
IS-IT--Management
I have been reading about route maps and about the ANDing and ORing of multiple match statements and I am coming up short in a lab...
My acl and route map is as follows:
Network statements that match in acl 1 and 2 do exist. ACL 3 has no match. However, my routes for acl 1 and 2 on the BGP neighbor have an LP of 123 instead of 150. This means that:
"match ip address 1 2 3" = match 1 OR match 2 OR match 3
Is this correct??
I then tried the following
But the router converted this to:
I have seen examples with multiple match statements but my router is not cooperating. I want to get the statements to do an "AND" instead of an "OR". Then my LP would be 150.
After every test I do a "clear ip bgp *" so I know the sessions are cleared.
Can someone explain what I am doing wrong??
If you need more info, I can paste full configs...
Thanks,
-B
My acl and route map is as follows:
Code:
access-list 1 permit 2.0.0.0 1.255.255.255
access-list 2 permit 2.2.2.2
access-list 3 permit 4.4.4.4
route-map SETLP2 permit 10
match ip address 1 2 3
set local-preference 123
route-map SETLP2 permit 20
match ip address 1 2
set local-preference 150
Network statements that match in acl 1 and 2 do exist. ACL 3 has no match. However, my routes for acl 1 and 2 on the BGP neighbor have an LP of 123 instead of 150. This means that:
"match ip address 1 2 3" = match 1 OR match 2 OR match 3
Is this correct??
I then tried the following
Code:
route-map SETLP2 permit 10
match ip address 1
match ip address 2
match ip address 3
set local-preference 123
But the router converted this to:
Code:
route-map SETLP2 permit 10
match ip address 1 2 3
set local-preference 123
I have seen examples with multiple match statements but my router is not cooperating. I want to get the statements to do an "AND" instead of an "OR". Then my LP would be 150.
After every test I do a "clear ip bgp *" so I know the sessions are cleared.
Can someone explain what I am doing wrong??
If you need more info, I can paste full configs...
Thanks,
-B