One is able to connect from first
Cisco router to console port of second
Cisco router(routers are connected with rollover cable) using for example following configuration on the first router:
Quote:
!
interface Loopback0
ip address 1.1.1.1 255.255.255.255
!
interface Loopback12345
ip address 10.10.10.1 255.255.255.0
!
line con 0
line aux 0
modem InOut
transport input all
line vty 0 4
no login
!
..and executing "telnet 1.1.1.1 2001" or "telnet 10.10.10.1 2001" in the first router if AUX line is 1. If there is for example IP address 192.168.1.75 on a physical interface of the first router, then "telnet 192.168.1.75 2001" works as well. Is there some sort of technical reason behind telneting to IP and such certain port? Or is it just the way this works in Cisco devices?