cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
345
Views
0
Helpful
2
Replies

using policy routing to manipulate destination routes from same source

Eamon.Moran
Level 1
Level 1

I have an application running on a PC sitting on my lan in Head Office which must communicate ( using telnet) with multiple different end destinations over multiple pvcs. I have configured a route-map sitting on the router ethernet interface which specifies the source IP address and port number (23) to multiple end destinations. Of course, the problem is that while the first destination will work - all further sites won't as the router process hits the first line in the route-map and will never move further down. Any ideas?

2 Replies 2

moorj
Level 1
Level 1

Could you not use a different extended access list (source & dest match) pair to influence the next hop for each pvc. These access-lists could be applied to each permit match line in the route-map. e.g

access-list 101 permit ip host 7.7.7.7 host 9.9.9.9 log

access-list 102 permit ip host 7.7.7.7 host 8.8.8.8 log

route-map divert permit 10

match ip address 101

set ip next-hop 192.168.1.9

!

route-map divert permit 20

match ip address 102

set ip next-hop 192.168.2.9

The problem is that each remote customer's site run the same subnet (10.0.0.0) so of course, I will need some way of differentiating between each telnet session. Any ideas would be appreciated!