Telnet远程登录实例
三、telnet远程连接服务
注意:需要在⽬标主机上配置特权密码和开启远程登录服务。
实例1:R1远程登录到R2/R3
(1)配置
R2(config)#enable password 123456 //配置进⼊特权模式的密码
R2(config)#line vty 0 4 //配置远程登录的数量
R2(config-line)#logging synchronous //设置信息同步
R2(config-line)#exec-timeout 5 //设置退出时间
R2(config-line)#password 123456 //设置密码
R2(config-line)#login //启动远程登录服务
或
R3(config)#enable password 123456 //配置进⼊特权模式的密码
R3(config)#line vty 0 4 //配置远程登录的数量
R3(config-line)#logging synchronous //设置信息同步
R3(config-line)#exec-timeout 5 //设置退出时间
R3(config-line)#password 123456 //设置密码
R3(config-line)#login //启动远程登录服务
(2)测试
R1#telnet 12.1.1.2
Trying 12.1.1.2 ...Open
[Connection to 12.1.1.2 closed by foreign host]
R1#telnet 12.1.1.2
Trying 12.1.1.2 ...Open
User Access Verification
Password: //输⼊R2的远程登录密码
R2>en
Password: //输⼊R2的特权密码
R2#
说明:从R1远程连接到R2或R3,必须访问R2的g0/0或者R3的G0/0地址,不能访问其他地址。原因是在该⽹络中未配置路由信息,只能访问与R1直连的IP地址。
实例2:R1远程登录到R4
注意:由于R4与R1是⾮直连的⽹络设备,必须要配置从R1到达R4的路由,才能实现远程登录。即R1必须能够PING同R4.
R1#telnet 34.1.1.4
Trying 34.1.1.4 ...
% Connection timed out; remote host not responding R1#//提⽰连接超时。
(1)R1的路由配置
R1(config)#router rip
R1(config-router)#ver 2
R1(config-router)#no auto-summary
R1(config-router)#networ 12.0.0.0
R1(config-router)#net 13.0.0.0
(2)R2的路由配置
R2(config)#router rip
R2(config-router)#ver 2
R2(config-router)#no auto-summary
R2(config-router)#network 12.0.0.0
R2(config-router)#network 23.0.0.0
(3)R3的路由配置
R3(config)#router rip
R3(config-router)#ver 2
R3(config-router)#no auto-summary
R3(config-router)#network 13.0.0.0
R3(config-router)#network 23.0.0.0
R3(config-router)#network 34.0.0.0
(4)R4的路由配置
R4(config)#router rip
R4(config-router)#ver 2
R4(config-router)#no auto-summary
R4(config-router)#network 34.0.0.0
(5)检验路由配置
R1#show ip route rip
R 34.0.0.0/8 [120/2] via 12.1.1.2, 00:00:13, g0/0
R 23.0.0.0/8 [120/1] via 13.1.1.3, 00:00:13,g0/0(6)远程登录
R1#telnet 34.1.1.4
Trying34.1.1.4 ...Open
User Access Verification
Password: //输⼊R4的远程登录密码
R4>en
Password: //输⼊R4的特权密码
R4#
四、域名服务器的配置
(1)配置设备的主机名和IP地址的对应关系
R1(config)#ip host R1 12.1.1.1 //ip host 是关键词,R1的设备名,12.1.1.1设备对于的IP地址。⼀般情况下,⽤该地址对R1进⾏远程管理。
R1(config)#ip host R2 12.1.1.2
R1(config)#ip host R3 13.1.1.3
R1(config)#ip host R4 34.1.1.4
R2(config)#ip host R1 12.1.1.1 //ip host 是关键词,R1的设备名,12.1.1.1设备对于的IP地址。⼀般情况下,⽤该地址对R1进⾏远程管理。
R2(config)#ip host R2 12.1.1.2
R2(config)#ip host R3 13.1.1.3
R2(config)#ip host R4 34.1.1.4
R3(config)#ip host R1 12.1.1.1 //ip host 是关键词,R1的设备名,12.1.1.1设备对于的IP地址。⼀般情况下,⽤该地址对R1进⾏远程管理。
R3(config)#ip host R2 12.1.1.2
R3(config)#ip host R3 13.1.1.3
R3(config)#ip host R4 34.1.1.4
R4(config)#ip host R1 12.1.1.1 //ip host 是关键词,R1的设备名,12.1.1.1设备对于的IP地址。⼀般情况下,⽤该地址对R1进⾏远程管理。
R4(config)#ip host R2 12.1.1.2
R4(config)#ip host R3 13.1.1.3
R4(config)#ip host R4 34.1.1.4
R2到R4上做相同的操作;
(2)配置⽹络的路由,配置同上题⼀样【若已配置,⽆需在配置】
(3)配置域名服务器IP
R1(config)#ip domain-lookup
R1(config)#ip domain-name xmht //配置域名为xmht
R1(config)#ip name 12.1.1.1 //指定域名的主机
注意R2到R4的配置如下:
R4(config)#ip domain-lookup
R4(config)#ip domain-name xmhttelnet远程登录配置
(4)验证
R1#show hosts
Default domain is xmht
Name/address lookup uses domain service
Name servers are 12.1.1.1
Host Port Flags Age Type Address(es)
R4 None (perm, OK) 0 IP 34.1.1.4
R3 None (perm, OK) 0 IP 13.1.1.3
R2 None (perm, OK) 0 IP 12.1.1.2
R1 None (perm, OK) 0 IP 12.1.1.1
R1#ping R2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 12.1.1.2, timeout is 2 seconds:
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/7/8 ms R1#telnet R2
Trying R2 (12.1.1.2)... Open
User Access Verification
Password:
R2>EN
Password:
R2#exit
[Connection to R2 closed by foreign host]
R1#
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论