Route map Cisco
5 pts.
0
Q:
Route map Cisco
I have a cisco router 1841. It has 2 outside adsl interfaces, and an
inside interface connected to local lan. I want to use the 1st adsl
interface for http, ftp and the 2nd adsl interface for the rest of the
internet traffic. Below is a sample of my configuration:



interface FastEthernet0/0

 ip address 10.100.1.2 255.255.0.0

 ip nat inside

 ip route-cache policy

 ip policy route-map adsl



interface Dialer0

 ip address negotiated

 ip nat outside

 

interface Dialer1

 ip address negotiated

 ip nat outside



ip route 0.0.0.0 0.0.0.0 Dialer0

ip route 0.0.0.0 0.0.0.0 Dialer1 10



ip nat inside source route-map nat0 interface Dialer0 overload

ip nat inside source route-map nat1 interface Dialer1 overload



access-list 1 permit 10.100.0.0 0.0.255.255

access-list 110 permit tcp 10.100.0.0 0.0.255.255 any eq www

access-list 110 permit tcp 10.100.0.0 0.0.255.255 any eq domain

access-list 110 permit udp 10.100.0.0 0.0.255.255 any eq domain

access-list 110 permit tcp 10.100.0.0 0.0.255.255 any eq ftp

access-list 110 permit tcp 10.100.0.0 0.0.255.255 any eq ftp-data



route-map adsl permit 10

 match ip address 110

 set interface Dialer0

!

route-map adsl permit 20

 set interface Dialer1

!

route-map nat1 permit 10

 match ip address 1

 match interface Dialer1

!

route-map nat0 permit 10

 match ip address 1

 match interface Dialer0



Which debug command should i use in order to see from which interface the traffic is going through?
ASKED: Nov 10 2009  8:08 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
5 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
Last Answered: Nov 10 2009  8:08 AM GMT by Meglo1610   5 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0