Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DSL and a 2620xm

Status
Not open for further replies.
Joined
Mar 15, 2005
Messages
141
Location
US
I have a cisco 2620xm router and what I would like to do is connect my home DSL to it. I am hoping to be able to use the 2 ethernet ports in the router and not have to buy a ADSL wic. Never have done it this way, so first question is there a way to do this, have one ethernet interface recieve DHCP from the DSL modem, and use the other ethernet interface for the private side of the network? Any assistance would be greatly appriciated.

Thanks,
 
ya that will work fine. youll just need to leave the modem in bridge mode and set up your router as follows. im actaullt using a 2514 so your router should be better off in this situation..

ip subnet-zero
!
no ip bootp server
vpdn enable
!
vpdn-group 1
request-dialin
protocol pppoe
!
interface Ethernet0
description ADSL WAN Interface
no ip address
ip route-cache flow
pppoe enable
pppoe-client dial-pool-number 1
no cdp enable
!
interface Ethernet1
description LAN Interface
ip address 10.10.10.1 255.255.255.0
ip nat inside
!
interface Dialer1
description ADSL WAN Dialer
ip address negotiated
ip mtu 1492
ip nat outside
encapsulation ppp
ip route-cache flow
ip tcp adjust-mss 1452
dialer pool 1
dialer-group 1
no cdp enable
ppp authentication pap callin
ppp pap sent-username username@domain password XXXX
ppp ipcp dns request
!
ip nat inside source list 10 interface Dialer1 overload
no ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1

access-list 10 permit 10.10.10.0 0.0.0.255
 
Thanks for that help got a question, what IOS are you running? The VPDN command protocol pppoe is not taking I am running 12.2(27) c2600-ik9s-mz.122-27. So the question is, is it IOS related or something else? Thanks again.
 
Are you entering VPDN enable first?
 
Yes, was doing that, I went ahead and put a 12.3 IOS on the router and it took the programming. the only issue now is that the virtual interface is going up and down.
 
im am using a 12.2T ios on my 2514
 
the only other thing i can add to this at this point is that your config is probably good and just verify that your username and passowrd are correct.
the other possibility is that your isp may use chap as the authentication instead of pap ???

 
Here is a capture from the console showing the error I get with the sh run. any clue as to where I went wrong?


01:54:24: %LINK-3-UPDOWN: Interface Virtual-Access1, changed state to down ip classless
--More--  ip route 0.0.0.0 0.0.0.0 Dialer1
--More--  !
--More--  !
--More--  access-list 10 permit 10.10.10.0 0.0.0.255
--More--
01:54:44: Sending PADI: Interface = FastEthernet0/0
01:54:44: PPPoE 0: I PADO R:0009.9794.eec2 L:000c.ce42.3e20 Fa0/0 !
--More--  !
--More--
01:54:46: PPPOE: we've got our pado and the pado timer went off
01:54:46: OUT PADR from PPPoE Session
01:54:46: PPPoE 329: I PADS R:0009.9794.eec2 L:000c.ce42.3e20 Fa0/0
01:54:46: IN PADS from PPPoE Session
01:54:46: %DIALER-6-BIND: Interface Vi1 bound to profile Di1
01:54:46: PPPoE: Virtual Access interface obtained.
01:54:46: PPPoE : encap string prepared
01:54:46: [0]PPPoE 329: data path set to Virtual Acess
01:54:46: %LINK-3-UPDOWN: Interface Virtual-Access1, changed state to up
01:54:46: PPPoE 329: I PADT R:0009.9794.eec2 L:000c.ce42.3e20 Fa0/0
01:54:46: PPPoE : Shutting down client session
01:54:46: [0]PPPoE 329: O PADT R:0009.9794.eec2 L:000c.ce42.3e20 Fa0/0
01:54:46: %DIALER-6-UNBIND: Interface Vi1 unbound from profile Di1 !
--More--  !
--More--
01:54:46: %LINK-3-UPDOWN: Interface Virtual-Access1, changed state to down !
--More--  dial-peer cor custom
--More--  !
--More--  !
--More--  !
--More--  
--More--  !
--More--  line con 0
--More--   speed 115200
--More--  line aux 0
--More--  line vty 0 4
--More--   login
--More--  !
--More--  !
--More--  end
--More--  
HomeTest#
HomeTest#
HomeTest#
HomeTest#sh run
Building configuration...

Current configuration : 1622 bytes
!
version 12.3
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname HomeTest
!
boot-start-marker
boot-end-marker
!
!
no network-clock-participate slot 1
no network-clock-participate wic 0
no aaa new-model
ip subnet-zero
ip cef
!
!
!
ip dhcp pool 1
--More--   network 10.10.10.0 255.255.255.0
--More--   default-router 10.10.10.1
--More--   dns-server 205.152.37.23 205.152.132.23
--More--  !
--More--  ip dhcp-server 10.10.10.1
--More--  vpdn enable
--More--  !
--More--  vpdn-group 1
--More--   request-dialin
--More--   protocol pppoe
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  interface FastEthernet0/0
--More--   description ADSL WAN Interface
--More--   no ip address
--More--   ip route-cache flow
--More--   duplex auto
--More--   speed auto
--More--   pppoe enable
--More--   pppoe-client dial-pool-number 1
--More--   no cdp enable
--More--  !
--More--  interface Serial0/0
--More--   no ip address
--More--   shutdown
--More--  !
--More--  interface Ethernet1/0
--More--   description LAN interface
--More--   ip address 10.10.10.1 255.255.255.0
--More--   ip nat inside
--More--   half-duplex
--More--  !
--More--  interface Dialer1
--More--   description ADSL WAN Dialer
--More--   ip address negotiated
--More--   ip mtu 1492
--More--   ip nat outside
--More--   encapsulation ppp
--More--   ip route-cache flow
--More--   dialer pool 1
--More--   dialer-group 1
--More--   no cdp enable
--More--   ppp authentication chap pap callin
--More--   ppp chap hostname maverick8673
--More--   ppp chap password 0 6859972
--More--   ppp pap sent-username maverick8673@bellsouth.net password 0 xxxxxxx
--More--   ppp ipcp dns request
--More--  !
--More--  ip nat inside source list 10 interface Dialer1 overload
--More--  no ip http server
--More--  ip classless
--More--  ip route 0.0.0.0 0.0.0.0 Dialer1
--More--  !
--More--  !
--More--  access-list 10 permit 10.10.10.0 0.0.0.255
--More--  !
--More--  !
--More--  !
--More--  !
--More--  !
--More--  dial-peer cor custom
--More--  !
--More--  !
--More--  !
--More--  
--More--  !
--More--  line con 0
--More--   speed 115200
--More--  line aux 0
--More--  line vty 0 4
--More--   login
--More--  !
--More--  !
--More--  end
--More--  
 
here is some config i found on dslreports.com for a bellsouth user, the only difference i can see is that your not including the domain name on your chap login... and that is required because your isp will route your login based on the username... ie a wholesale company can still use the physical local loop to provide internet to you. say it was company ABC.. your login would be xxxx@abc.com and then you would be routed to that isp...


ppp authentication chap pap callin
ppp chap hostname xxxxxxxxxxxx@bellsouth.net
ppp chap password 7 144E465A5C557A73
ppp pap sent-username xxxxxxxxxxxx@bellsouth.net password 7 10175D4855464253
ppp ipcp dns request
ppp ipcp wins request

the above should work for you if you put in your username and password correctly....
 
Thanks for the help on this one, really appriciate it. Stay tuned to the next issue HSRP :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top