实验目标:
<1>掌握采用Telnet方式配置交换机的方法。
技术原理:
<1>配置交换机的管理ip地址,为telnet用户配置用户名和登录口令。
<2>交换机、路由器中有很多密码,设置对这些密码可以有效的提高设备的安全性
<3>switch(config)#enable password xxx 进入特权模式的密码
switch(config-line)# 可以设置console口和vty远程登陆密码
switch(consfig)#enable password 123123
switch(config)#line console 0
switch(config-line)#password 112233
switch(config-line)#login
switch(config)#line vty 0 4
switch(config-line)#password 1234
switch(config-line)#login
实验步骤:
如图新建Packet Tracer拓扑图
打开pc1设置好ip地址如图所示
打开PC的Terminal 输入命令
en
conf t
inter vlan 1
ip address 192.168.1.1 255.255.255.0
no shutdown
exit
enable password 123123
line vty 0 4
password 112233
login
end
show run
打开PC CMD
ping 192.168.1.1
telnet 192.168.1.1
password:112233
password:123123 (进入enable)
show runing
原文地址:http://blog.51cto.com/12484496/2087084