Telnet
基于TCP/IP协议族
远程终端协议
在Internet上远程登录
VTY(Virtual Teletype)
通过IP连接物理上的终端
实现在Internet上
登陆和配置远程目标终端
A
Router>enable
Router#config
Router(config)#hostname A
A(config)#interface gigabitEthernet 0/0
A(config-if)#no shutdown
A(config-if)#ip address 192.168.1.1 255.255.255.0
A(config-if)#enable secret test2
A(config)#line vty 0 4
A(config-line)#password test3
B
Router>enable
Router#config
Router(config)#hostname B
B(config)#interface gigabitEthernet 0/0
B(config-if)#no shutdown
B(config-if)#ip address 192.168.1.2 255.255.255.0
使用Ping命令测试是否连接成功
B#ping 192.168.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms
通过Telnet命令进入终端
B#telnet 192.168.1.1
Trying 192.168.1.1 ...Open
User Access Verification
Password:
A>
配置本地终端登录密码
A(config-if)#enable secret test2
通过vty连接进入目标终端
A(config)#line vty 0 4
配置远程登录终端密码
A(config-line)#password test3