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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems with async PPP authentication on 2511

Status
Not open for further replies.

DrGryphon

MIS
Feb 18, 2003
56
AU
Hi,

I have a cisco 2511RJ configured with a couple of modems. I have a local password database (with two simple entries) and a local IP address pool. When I dial up the modems handshake but ppp is not negotiated.

I have tried heaps of debug ppp commands but get no console output. This leads me to think I am missing something BIG but after looking through heaps of cisco sample configs I am left scratching my head.

I am lead to believe that I don't need to use AAA for local authentication.

Below is my config... I have tried about a thousand variations it seems :) Any help or ideas gratefully accepted.


------


Router#sh run
Building configuration...

Current configuration:
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Router
!
enable secret 5 **********
!
username bert password 0 ernie
username b1 password 0 b2
ip subnet-zero
!
!
!
interface Ethernet0
ip address x.x.x.69 255.255.255.0
no ip directed-broadcast
!
interface Serial0
no ip address
no ip directed-broadcast
no ip mroute-cache
shutdown
no fair-queue
!
interface Group-Async1
ip unnumbered Ethernet0
no ip directed-broadcast
encapsulation ppp
ip tcp header-compression passive
async mode dedicated
peer default ip address pool ModemsIP
no fair-queue
no cdp enable
ppp authentication chap pap
ppp multilink
group-range 1 16
!
ip local pool ModemsIP x.x.x.61 x.x.x.65
ip default-gateway x.x.x.250
ip classless
!
!
line con 0
transport input none
line 1 16
autoselect during-login
autoselect ppp
login local
modem InOut
transport input all
speed 57600
flowcontrol hardware
line aux 0
line vty 0 4
password **********
login
!
end

Router#
 
in the Group-Async 1 interface, try disabling the TCP Header Compression, and specify only the authentication u support..

i'd start simple, with PAP, then move on.. otherwise, everything else looks alright..

good luck..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top