欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

路由器密码配置

程序员文章站 2024-02-12 14:17:58
...

通过console口进行路由器密码配置

Router>enable 
Router#configure terminal 
Router(config)#line console 0
Router(config-line)#password fire	
Router(config-line)#login		//Enable password checking
Router(config-line)#exit

登入vty进行路由器配置

但是未配置过路由器的配置文件是空的,默认情况下23端口是关闭的,要是你telnet的话,会显示[Connection to 192.16.1.2 closed by foreign host],所以首先必须本地路由器配置里打开23端口。(可以通过console口)

Router#configure terminal 
Router(config)#line vty 0 4		//最多连接4个vty
Router(config-line)#password fire	//密码是 fire
Router(config-line)#login

这样设置好之后,就可以通过远程登入到路由器上了,但是这时候登入进去的模式是用户模式,要是enable想进入特权模式,会显示% No password set,因为从特权模式到全局模式是不需要密码的,而一旦进入了全局模式就无所不能了,所以远程登入必须不能让用户轻易进入到特权模式,所以默认一定要设置用户模式到特权模式的密码。下面是本地配置路由器用户模式到特权模式密码。

Router(config)#enable password fire	//密码是fire明文显示
Router(config)#enable secret fire	//密码是fire加密显示
Router(config)#show running-config	//查看内存信息

这样就可以远程telnet路由器了,能够和console口一样进行配置所有路由器信息


最后就是把内存配置文件写入到硬盘中,下次路由器重新启动就有效了。
Router#copy running-config startup-config 
或者
Router#write