Reverse telnet 又称为反向telnet,反远程登录,此处反的意思为从异步串行端口向外建立连接,与一般为外向内连接区别。

使用模块NM-8A/16A或者SIC-8A/16A,下联八爪线,每个LINE对应于不同设备扩展口。

相当于telnet 192.168.1.200 端口号

      此处的端口号为2000+线路号,分别对应于console口号

     telnet 192.168.1.200 不加端口号,为默认端口号23,登录到RCMS设备。

                       加上端口号的工作原理为,先通过默认端口号23登录到RCMS设备,再通过端口号找到异步线路,通过异步口向外连接到其他网络设备。

在配置中的ip host a0 2001 22.22.22.22 将IP+端口映射为主机名。

    故此处输入a0或者telnet 22.22.22.22 2001效果相同,因为输入a0路由器会启动名字的解析过程,此处的a0为了方便记忆与管理。

也有不用八爪线的,而用猫进行配置的,这里就不赘述了,因为本来八爪线的技术就用的少,更不用说猫了。

配置过程:(一个实例)

Building configuration...

Current configuration : 1721 bytes


!

version 8.4 (building 15)

hostname 52.209

!

no service password-encryption

!

!

//配置主机名与IP+端口号的映射,此处有16个线路

ip host a0 2001 22.22.22.22

ip host a1 2002 22.22.22.22

ip host a2 2003 22.22.22.22

ip host a3 2004 22.22.22.22

ip host a4 2005 22.22.22.22

ip host a5 2006 22.22.22.22

ip host a6 2007 22.22.22.22

ip host a7 2008 22.22.22.22

ip host b0 2009 22.22.22.22

ip host b1 2010 22.22.22.22

ip host b2 2011 22.22.22.22

ip host b3 2012 22.22.22.22

ip host b4 2013 22.22.22.22

ip host b5 2014 22.22.22.22

ip host b6 2015 22.22.22.22

ip host b7 2016 22.22.22.22

!

logging monitor  informational

//外网的端口号,可以通过远程telnet

interface FastEthernet 1/0

ip address 192.168.52.2 255.255.255.0

duplex auto

speed auto

!

interface FastEthernet 1/1

duplex auto

speed auto

!

//配置环回口,使用环回口不容易down,也可使用f1/0的IP地址

interface Loopback 0

ip address 22.22.22.22 255.255.255.255

!      

!

ip route 0.0.0.0 0.0.0.0 192.168.52.1

!

line con 0

exec-timeout 0 0

line aux 0

//配置TTY线路

line tty 1 16

no exec

transport input all

exec-timeout 0 0

//配置vty线路,使其可以远程telnet

line vty 0 19

autocommand show users

exec-timeout 0 0

privilege level 15

no login

!

!

End


经过以上配置连接好线路后:

①     telnet 192.168.52.2 全局模式下输入主机名(如a0)即可反向连接到1线路所连接的设备

②     直接 telnet 192.168.52.2 2001 即可达到以上同样的效果(原理上面已讲解)

而这个banner incoming 命令就用在这里