拔下交换机电源,用手按住交换机“Mode” 按钮(路由器应该是启动时按pause键),插上电源,等待交换机进入控制台模式。其提示符为“switch:”
switch:flash_init //初始化flash文件系统
switch:dir flash: //命令显示flash中所保存的配置文件的名称。
switch:rename flash:config.text flash:config.old //命令把原来的配置文件改名为config.old。(NVRAM是从flash虚拟的,flash:config.text =startup-config)
switch:reboot //命令把原来的配置文件改名为config.old。重新启动交换机,这时交换机找不到其配置文件(所以配置文件中的特权密码也就无效),系统就会提示是否进入“配置对话(configuration dialog)” ,选择“N” 。
switch>#enable //进入特权执行模式。
Switch#rename flash:config.old flash:config.text //把配置文件名字修改回来
Switch#copy flash:config.text running-config //把配置文件从FLASH中装载到RAM中。
Switch# config terminal //进入全局配置模式
Switch(config)# no enable password //删除使能密码
Switch(config)# no enable secret //删除加密的密码
Switch(config)#end //直接返回到特权模式
Switch# show runnig-config //查看正在进行的配置文件,请注意查看密码
Switch# copy running-config startup-config //备份配置文件到NVRAM
本文转自 chengchow 51CTO博客,原文链接:http://blog.51cto.com/chengchow/828001,如需转载请自行联系原作者