Question
October 17, 2007 at 02:00 AM
jim.smith

Cisco Split Routing Configuration

by jim.smith . Updated 18 years, 9 months ago

I have a Cisco 2800 router with 2 ethernet and 2 DSL connecions. I wish to route traffic from one ethernet to one ADSL and the second ethernet to the second ADSL.

I have included the relevent section of the config. This routes traffic from F0/1 to Di0
but I can’t see how to now route the traffic from F0/0 to Di1

interface FastEthernet0/0
ip address 10.10.10.1 255.255.255.248
ip nat inside
!
interface FastEthernet0/1
ip address 192.168.2.250 255.255.255.0
ip nat inside
!
interface ATM0/0/0
no ip address
no ip redirects
dsl operating-mode auto
pvc 0/38
encapsulation aal5mux ppp dialer
dialer pool-member 10
!
!
interface ATM0/2/0
no ip address
no ip redirects
dsl operating-mode auto
pvc 0/38
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
!
interface Dialer0
ip address 217.36.111.166 255.255.255.248
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat outside
encapsulation ppp
ip route-cache flow
dialer pool 1
dialer persistent
no cdp enable
ppp authentication chap pap callin
ppp chap hostname user@abc.com
ppp chap password adslpassword
!
interface Dialer1
ip address 78.32.58.233 255.255.255.248
no ip redirects
no ip unreachables
no ip proxy-arp
ip nat outside
encapsulation ppp
ip route-cache flow
dialer pool 10
dialer persistent
no cdp enable
ppp authentication chap pap callin
ppp chap hostname user2@def.com
ppp chap password adslpassword2
!
!
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer0
!
ip nat inside source list 100 interface Dialer0 overload
!
access-list 100 permit ip 192.168.2.0 0.0.0.255 any
route-map SDM_RMAP_1 permit 1
match ip address 100

This discussion is locked

All Comments