查看运行中的配置
show running-config
设备的型号,运行时间,固件
show version
其中
Processor board ID 或 System serial number 为设备出厂时候的序列号
show version | in uptime
uptime is 12 weeks, 3 days, 20 hours, 17 minutes
查看mac地址表
show mac address-table
查看具体的mac地址
show mac address-table address 0008.00ff.fc04
设置交换机的vlan ip信息,在configure terminal模式下
ip address 192.168.8.222 255.255.255.0 ip default-gateway 192.168.8.1
查看当前路由器的时间
show clock
查看日志信息
show log
查看接口的信息,很全,后面可以接具体的项
show interfaces
show interfaces description查看接口up or down
show interfaces status 快速查看接口
查看cdp邻居
show cdp neighbors
查看vlan信息
show vlan
设置时间
clock set 16:51:00 20 Aug 2013
查看学习到的arp表
show ip arp
过滤,类似于grep
show arp | include 0010.d1aa.0224
查看内存情况,可以看到内存有70MB
show processes memory Processor Pool Total: 73922040 Used: 26257284 Free: 47664756 I/O Pool Total: 14680064 Used: 12235212 Free: 2444852 Driver te Pool Total: 1048576 Used: 40 Free: 1048536
查看 cpu 使用情况
show processes cpu sorted CPU utilization for five seconds: 9%/0%; one minute: 9%; five minutes: 9%
输出过多时,可以不折叠
terminal length 0
清理单条arp信息
clear arp 10.10.0.249
#clear arp ? A.B.C.D IP address # 清理单条记录 counters Clear ARP counters #重置计数器 interface Clear the entire ARP cache on the interface # 清空整个arp缓存 vrf Clear entries for a VPN Routing/Forwarding instance
配置Telnet密码的过程如下.copy自:http://network.51cto.com/art/201007/212927.htm
第1步,进入全局配置模式.
Cisco# configure terminal
第2步,输入Telnet进程号,进入Line配置模式.在一台交换机和路由器上,最多可以实现16个Telnet进程,方便多个用户同时查看和管理.”0 15″表明配置所有可能的16个进程.
Cisco(config)# line vty 0 15
第3步,指定Telnet密码.Telnet密码设置要求与Enable相同.
Cisco(config)# password password
第4步,返回特权模式.
Cisco(config)# end
第5步,保存配置Telnet密码最后的修改.
Cisco# copy running-config startup-config
改主机名也在configure terminal里
hostname yourhostname
Leave a Reply