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

access server 2511 to emulate hyperterminal

Status
Not open for further replies.

fabiangp

Technical User
Aug 10, 2006
17
0
0
US
I do not want to use telnet from my access servers to the consoles. I want to do exactly what hyperterminal does. Can it be done? That way when I plug a new router to my access server I can access it right away instead of having to configure transport in the destination router console. Does anyone know how to do that? This is my current configuration for tty line 6. Now I need to know how to connect to that line.

line 6
session-timeout 20
no flush-at-activation
absolute-timeout 60
transport preferred telnet
transport input all
transport output all
stopbits 1
flowcontrol hardware

I tried udptn and rlogin but those connection type do not work. Thanks.
 
Set up reverse telnet in the access server. You will need an octal cable, the serial end plugged into the access server and the RJ-45 ends each plugged into a router console port.

ip host R1 2001 192.168.1.1
ip host R2 2002 192.168.1.1
ip host R3 2003 192.168.1.1

etc...

int lo0
ip add 192.168.1.1 255.255.255.255

Then, from the access server

router#R1

It then connects you.

Burt
 

fabiangp,

What Burt posted - that is how the "online" Cisco labs rent time and you are able to blow away the config and start from scratch !!!

I have set it up on a 2511-RJ and a 2509 with an octal cable and it works pretty good! I have also used it in online Cisco labs and it worked great - they were using 2600's with the Network Module to do the same as the 2511's.

E.A. Broda
CCNA, CCDA, CCAI, Network +
 
I did that and did not work at all, I have the same configuration 2511 octal cable connected to 3550 console, I can hyperterminal to the 3550 but no luck from the access server. Any ideas?
 
here it is

Building configuration...

Current configuration : 1760 bytes
!
! Last configuration change at 13:12:30 MST Tue Feb 10 2009 by fabian
! NVRAM config last updated at 07:31:51 MST Mon Feb 9 2009 by fabian
!
version 12.3
service timestamps debug datetime msec localtime show-timezone year
service timestamps log datetime msec localtime show-timezone year
service password-encryption
!
hostname accessserver
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$F8S0$Bv4D885ftve2E8QqNQ1Zd0
!
clock timezone MST -7
no aaa new-model
ip subnet-zero
no ip domain lookup
ip host power 23 192.168.20.10
ip host 3550-1 2005 172.21.1.1
ip host 3550-2 2006 172.21.1.1
ip host 831-1 2012 172.21.1.1
ip host PIX 2013 172.21.1.1
!
prompt accessserver>
username fabian privilege 15 secret 5 $1$.S/K$wqVJ5O2./7bVEnepnBlb//
username yadira privilege 0 password 7 0208054D0A141D2E
!
!
!
!
interface Loopback0
ip address 172.21.1.1 255.255.255.255
!
interface Ethernet0
ip address 192.168.20.11 255.255.255.240
!
interface Serial0
no ip address
shutdown
!
interface Serial1
no ip address
shutdown
!
interface Async1
no ip address
encapsulation slip
!
ip default-gateway 172.21.1.1
ip http server
ip classless
!
!
!
alias exec crs copy running-config startup-config
alias exec sr show running-config
!
line con 0
exec-timeout 0 0
logging synchronous
transport preferred none
transport output none
line 1 4
session-timeout 20
transport input all
transport output all
line 5 6
session-timeout 20
no flush-at-activation
absolute-timeout 60
transport preferred telnet
transport input all
transport output all
stopbits 1
flowcontrol hardware
line 7 16
session-timeout 20
transport input all
transport output all
line aux 0
line vty 0 4
exec-timeout 0 0
privilege level 0
login local
transport input telnet
!
end

Thank you guys, fabian
 
Thanks a lot for your help. I finally decided to use a different wire and it is working perfectly. In the future I will pay more attention to the noise indicator.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top