快捷键
Ctrl + A // 光标移到命令最前面
Ctrl + E // 光标移到命令最后面
Ctrl + Shift + 6 // 中断命令加载(类似 Linux 系统 Ctrl + C)
常用命令
enable // 进入特权模式
configure terminal // 进入全局配置模式,要先进入特权模式
exit // 退出
show running-config // 查看当前系统配置(内存)
show startup-config // 查看系统初始配置(硬盘)
show arp // 显示 arp 表
show ip interface brief // 查看接口三层信息(类似 ipconfig,建议使用)
show interfaces f0/0 // 查看 f0/0 接口二层信息,f0/0 可更换成其它接口(类似 ipconfig /all)
no ip domain-lookup // 关闭域名解析,系统默认开启
(config)#line console 0 // 进入console口模式
(config-line)#exec-timeout 0 0 // 关闭发呆超时(exec-timeout 2 30 代表无操作2分30秒后被“踢”出配置页面)
(config-line)#logging synchronous // 日志同步输出,这样就不会造成命令打到一半的时候出提示信息被日志干扰到
保存命令
write
copy run start
少用命令
show clock // 查看系统时间
show flash // 查看硬盘
show version // 查看系统版本
来自 https://blog.csdn.net/m0_54011621/article/details/131265273