REVERSE TELNET ON AUX PORT
Requirement : Need to configure reverse telnet via AUX port. Connect one router's aux port to another device's console port, and telnet to the router.Use reverse telnet to connect to the other device's console via your aux port Setup : Here's how to set it up. 1. Connect your router's aux port to another device's console port using a Cisco flat crossover cable. 2. Telnet to your router, enable, and set the aux port up as follows: R1#conf t R1(config)# line aux 0 R1(config-line)# modem InOut R1(config-line)# transport preferred all R1(config-line)# transport input all R1(config-line)# transport output all R1(config-line)# end 3. Make sure you have an address on your lo0 interface, and the interface is up. R1#conf t R1(config)#int lo0 R1(config-if)#ip add 127.0.0.1 255.255.255.0 Executio...