首页 > 代码库 > 破解交换机密码
破解交换机密码
交换机密码破解:
1、进入特权模式设置一个enable 密码
Switch(config)#enable password 123
2、保存
Switch#copy running-config startup-config
Switch#write
此时如果密码忘记了,就应该按照以下的方法来破解
1、将交换机重启,立即按交换机上面的 mode 键,直到出现Switch:这种冒号模式就松开Mode键 (中断交换机的启动过程)
2、执行flash_init 就是初始化FLASH
3、重命名配置文件
Switch:rename flash:config.text flash:123.text
4、reset 重启交换机
5、将123.text重命名为config.text
Switch#rename flash:123.text flash:config.text
6、copy flash:config.text running-config
7、进入配置模式修改密码或者取消密码
Switch(config)#enable password 111 //修改密码
Switch(config)#no enable password 123 //取消密码
8、保存
wr