Link to home
Start Free TrialLog in
Avatar of bkwatts
bkwatts

asked on

Need help configuring Cisco 2650XM with AT&T ADSL

I have a Cisco 2650XM Router with a WIC-1ADSL.  I need assistance with the configuration.  We are using AT&T Business DSL.  I have gone thru it several times and can't figure out why it will not connect.  The show config is as follows:

 CISCOROUTER# show config
Using 1703 out of 29688 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname CISCOROUTER
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$Oq5H$f/qcc/C6/R0YmQZHagll01
enable password XXXX
!
no aaa new-model
no network-clock-participate slot 1
no network-clock-participate wic 0
no ip routing
no ip cef
!
!
!
!
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface ATM0/0
 no ip address
 no ip route-cache
 atm restart timer 300
 no atm ilmi-keepalive
 dsl operating-mode auto
!
interface ATM0/0.1 point-to-point
 no ip route-cache
 pvc 0/35
  pppoe-client dial-pool-number 1
 !
!
interface FastEthernet0/0
 ip address 10.10.10.1 255.0.0.0
 ip nat inside
 ip virtual-reassembly
 no ip route-cache
 ip tcp adjust-mss 1412
 speed auto
 half-duplex
 no mop enabled
!
interface Dialer0
 ip address dhcp
 ip mtu 1452
 ip nat outside
 ip virtual-reassembly
 encapsulation ppp
 dialer pool 1
 dialer-group 1
 ppp authentication chap pap callin
 ppp chap hostname genesisrealtygroup@att.net
 ppp chap password 0 XXXX
 ppp pap sent-username genesisrealtygroup@att.net password 0 XXXX
!
!
ip forward-protocol nd
!
!
ip http server
no ip http secure-server
ip nat inside source list 1 interface Dialer0 overload
!
access-list 1 remark INSIDE_IF=FastEthernet0/0
access-list 1 remark SDM_ACL Category=2
access-list 1 permit 10.0.0.0 0.255.255.255
dialer-list 1 protocol ip permit
snmp-server community public RO
!
!
!
control-plane
!
!
!
!
mgcp behavior g729-variants static-pt
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
 password XXX
 login
!
!
end
Avatar of GuruChiu
GuruChiu
Flag of United States of America image

can you pls post the output of:
show ip interface brief
ASKER CERTIFIED SOLUTION
Avatar of greg ward
greg ward
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Here's my config from a 3640 over AT&T's ADSL.  It works fine.  You don't need RIP or an access list.  I would recommend some sort of access list but RIP is completely unnecessary.

interface ATM0/0
 no ip address
 no atm ilmi-keepalive
 bundle-enable
 dsl operating-mode auto
 hold-queue 224 in
!
interface ATM0/0.1 point-to-point
 pvc 0/35
  pppoe-client dial-pool-number 1
 !
!
interface Dialer1
 ip address negotiated
 ip access-group 110 in
 ip mtu 1492
 ip nat outside
 encapsulation ppp
 dialer pool 1
 ppp authentication pap callin
 ppp pap sent-username <me>@att.net password 7 <PASSWORD>
!
Avatar of bkwatts
bkwatts

ASKER

Thanks for the assistance!  It worked like a charm.