1、基本命令 en--进入特权模式 config t --进入全局配置模式 wr(或者)--保存配置(不然断电后之前配置失效) no ip domain-lookup --错误命令进入解析状态。实验环境一般加上 show running-config (简写sh run) --查看当前配置口令 show ip int br --查看路由器各接口状态 2、设置进入路由器console口password 全局配置模式下输入: 假设要设置密文的password须要在全局配置模式下先输入service password-encryption line console 0---进入‘0’接口 (config-line)#exec-timeout 3 0 设置超时时间3分0秒 password 123--设置password为123 login--表示当登录时要输入password。nologin表示不须要password 如是login local表示登陆时不光要password还要username,username和password须要在全局配置下另外配置如:#username seq privilege 15 password 123 。当中15表示登录后即是特权模式 3、设置进入特权模式口令及加密口令 全局配置模式下输入: enable password 12--设置特权password(不经常使用) enable secret 123--设置特权加密口令(经常使用) enable secret level 5 12345 默认15级别 //enable用来使用户模式切换到特权模式 4、设置vty口令用于限制人员通过telnet訪问 假设要设置密文的密码须要在全局配置模式下先输入service password-encryption line vty 0 4 --开启5条远程连接 (config-line)#exec-timeout 3 0 设置超时时间3分0秒 password 123 login 5、删除启动配置文件 delete flash:config.text --新设备用 erase startup-config --老设备用 6、line aux 0 aux表示路由器上的辅助接口,一般和modem连接,用于远程接入配置路由器。比方:某公司无人懂路由器的配置,造成网络瘫痪能够让人通过拨号接入网络进行配置 7、权限级别 R1#enable //默认进入权限15 R1#show privilege Current privilege level is 15 R1#enable 1 R1>show privilege Current privilege level is 1 注:思科权限有16种为0~15,1为用户模式、15为特权模式,使用show privilege能够显示权限级别,enable后面跟权限级别能够进入指定的级别