Cisco 2511 term svr – change baud rate on one reverse telnet connection

cisco

I'm not sure this can be done, but figure I'd ask the Gurus here 😉

I have a 2511 router acting as a terminal server for my lab. All the current equipment I have connected to it have serial port baud rates of 9600bps, but now I have a new piece of equipment that has its serial port baud rate set to 115200. For various reasons, i don't want to change this piece of equipment. Is there any way to set the one reverse telnet connection to run at 115200?

Best Answer

Based on my testing, you would just have to edit the existing line configuration to specify the speed you want on Line 8, for example if that is where you connected your new device. I tested this on a Cisco 2611 with the NM-16A async module.

Existing configuration:

line 1 16
 no exec
 exec-timeout 0 0
 password 7 xxxxxxxxxxxxxxxxx
 login
 transport input all
 stopbits 1

Configuration for device on Line 8 to connect at 115200 bps instead of the default 9600 bps:

line 1 7
 no exec
 exec-timeout 0 0
 password 7 xxxxxxxxxxxxxxxxx
 login
 transport input all
 stopbits 1
line 8
 no exec
 exec-timeout 0 0
 password 7 xxxxxxxxxxxxxxxxx
 login
 transport input all
 speed 115200
 stopbits 1
line 9 16
 no exec
 exec-timeout 0 0
 password 7 xxxxxxxxxxxxxxxxx
 login
 transport input all
 stopbits 1