1. 路由器模式:
用户模式 router>
特权模式 router#
全局模式 router(config)#
接口模式 router(config-if)#
子接口模式router(config-subif)#
行模式 router(config-line)#
2.更改路由器名:在全局模式下,输入hostname 加上名称
删除配置好的路由器名:在全局模式下,输入 no hostname
3.进入特权模式下 设置密码:在全局模式下,输入 enable 加上password(明文)/secret(密文) 加上密码 ----若二者同时设置,则密文的生效;
4.console控制台密码: 在全局模式下,输入line console 0 ,在0端口下输入password 加密码,后输入login
5. vty密码(在进行telnet时):在全局模式下,输入line vty 0 4 (默认设置5条线),后输入password 加密码,后输入login
6.超时时间设置(不使用时也不会掉线):在console 0 下输入:exec-timeout 0 0. (前为分钟,后为秒)
7.日志同步:logging synchronous(敲命令时,不会被提示信息中断)
8. 关闭域名解析:no ip domain-lookup
9.加密所有口令:service password-encryption
10.do命令:在命令前加上do 可以将命令在任何一个模式下能够使用
11.进入路由器接口,配置:以串口为例: 特权模式下输入interface s0/0; 配置该口的IP地址:输入 ip address 10.148.120.4 ;激活端口,输入: no shutdown
12.查看当前路由器配置: 特权模式下 show running-config
13.Running-config中配置保存在raw中,若想保存配置,则需要将其保存在startup-config中:copy running-config startup-config 或者 write 即可
14. 删除配置及重新加载路由器: 特权模式下 erase startup-config 后输入 reload
15.show命令:show interface 加某个接口 查看接口一层二层的状态; show ip route 查看路由表 ; show ip interface 查看接口三层的信息 ; show ip interface brief 查看接口汇总信息 ; show protocols 查看接口协议信息 ; show controllers 查看物理接口自身的信息 ; show version 显示协议
16. 设置别名(简写特权模式的命令): alias exeec a. show ip route; 在输入命令时可直接输入a 简写全局配置模式下 alias configure line console 0