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

Access Server Config problem

Status
Not open for further replies.

brycatanz

Technical User
Sep 26, 2007
6
I started studying for my CCNP and set up a lab, I have (2) 3650s a 2600, (3) 2950 switches and a 2509 Access Server. But I can't seem to get the access server working. Could someone please help me.


Current configuration : 1065 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname AccessServer
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
no ip domain lookup
ip host R1 2001 192.168.10.10
ip host R2 2002 192.168.10.10
ip host R3 2003 192.168.10.10
ip host S1 2004 192.168.10.10
ip host S2 2005 192.168.10.10
ip host S3 2006 192.168.10.10
!
!
!
!
!
interface Loopback0
ip address 192.168.10.10 255.255.255.0
!
interface Ethernet0
ip address 10.0.0.1 255.255.255.0
no keepalive
!
interface Serial0
ip address 12.0.0.1 255.255.255.0
encapsulation ppp
no fair-queue
!
ip default-gateway 10.0.0.1
ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0
!
!
!
!
line con 0
exec-timeout 0 0
password cisco
logging synchronous
login
transport output none
line 1 8
session-timeout 20
exec-timeout 0 0
password cisco
no exec
transport input telnet
line aux 0
password cisco
login
transport input telnet
line vty 0 4
password cisco
login
transport input telnet
!
end

 
Thanks, I figured it out. I needed to add the transport input all under the line con
 
Can you please post your working conf so as to help others.

Regards
 
This is my current config that is working perfectly. Thanks again for everyones help.

hostname AccessServer
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
ip subnet-zero
no ip domain lookup
ip host R1 2001 192.168.10.10
ip host R2 2002 192.168.10.10
ip host R3 2003 192.168.10.10
ip host S1 2004 192.168.10.10
ip host S2 2005 192.168.10.10
ip host S3 2006 192.168.10.10
!
!
!
!
!
interface Loopback0
ip address 192.168.10.10 255.255.255.255
!
interface Ethernet0
ip address 10.0.0.1 255.255.255.0
no keepalive
!
interface Serial0
ip address 12.0.0.1 255.255.255.0
encapsulation ppp
no fair-queue
!
ip default-gateway 10.0.0.1
ip http server
ip classless
!
!
!
!
line con 0
exec-timeout 0 0
password cisco
logging synchronous
login
transport output all
line 1 8
exec-timeout 0 0
password cisco
no exec
transport input all
line aux 0
password cisco
login
transport input all
line vty 0 4
password cisco
login
transport input all
!
end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top