Texmansru47
IS-IT--Management
Can you do something like this:
two T-1s inbound from two different networks. You desire to route only particular data over each link. You have created PBR as such:
route-map T1ONE permit 10
match ip address 10
set ip next-hop 10.10.10.254
(ACL for that traffic - access-list 10 permit 10.20.10.0 0.0.0.255)
route-map T1TWO permit 10
match ip address 20
set ip next-hop 10.10.10.1
(ACL for that traffic - access-list 20 permit 192.168.0.0 0.0.0.255)
Now would it be correct to have a gateway of last resorts for the rest of the IP traffic (ip route 0.0.0.0 0.0.0.0 10.10.10.254) OR add another ACL to the route-map T1ONE:
access-list 10 permit ip any any
Just questioning the logic... and just desired to see what everyone else thinks of this scenario.
Texman
two T-1s inbound from two different networks. You desire to route only particular data over each link. You have created PBR as such:
route-map T1ONE permit 10
match ip address 10
set ip next-hop 10.10.10.254
(ACL for that traffic - access-list 10 permit 10.20.10.0 0.0.0.255)
route-map T1TWO permit 10
match ip address 20
set ip next-hop 10.10.10.1
(ACL for that traffic - access-list 20 permit 192.168.0.0 0.0.0.255)
Now would it be correct to have a gateway of last resorts for the rest of the IP traffic (ip route 0.0.0.0 0.0.0.0 10.10.10.254) OR add another ACL to the route-map T1ONE:
access-list 10 permit ip any any
Just questioning the logic... and just desired to see what everyone else thinks of this scenario.
Texman