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?
Software/Hardware used:
ASKED:
November 10, 2009 8:08 AM
UPDATED:
January 7, 2010 7:19 PM