1、 交换机与路由的telnet访问
(1)、第一步设置特权模式进入密码
enable passowrd 321
(2)、第二步设置虚拟局域网vlan或者环回地址loopback的ip地址
交换机:需要注意的是,虚拟局域网必须是有正在使用的端口,否则无法连接
interface vlan 1
ip address 192.168.1.254 255.255.255.0
no shutdown
路由器:需要注意的是,一般选用环回地址作为telnet连接,因为始终处于up状态
interface loopback 0
ip address 192.168.1.254 255.255.255.0
no shutdown
(3)、设置telnet登录的密码
line vty 0 4
password 321
login
例子1:telnet交换机
代码如下:
en
conf t
hostname S1
enable password 321
interface vlan 1
ip address 192.168.1.254255.255.255.0
no shutdown
exit
line vty 0 4
password 321
login
exit
end
测试结果:成功进入
PC>telnet 192.168.1.254
Trying 192.168.1.254 ...Open
User Access Verification
Password:
S1>en
Password:
S1#
例子2:路由器
代码如下:
en
conf t
hostname R1
enable password 321
interface loopback 0
ip address 192.168.2.254255.255.255.0
no shutdown
exit
interface f0/0
ip address 192.168.1.253255.255.255.0
no shutdown
exit
line vty 0 4
password 321
login
exit
end
结果:telnet成功
PC>telnet 192.168.2.254
Trying 192.168.2.254 ...Open
User Access Verification
Password:
R1>en
Password:
R1#