设备电源工作状态

show environment power

设备设备环境温度

show environment temperature

设备风扇工作状态

show environment fan

显示所有VDC的资源信息

show vdc resource detail

模块资源使用状态

show hardware capacity module

CPU使用状态

show system resources

Memory使用状态

show system resources

Fabric使用状态

show hardware capacity fabric-utilization

显示某一槽位的模块状态

show module slot

显示模块uptime时间

show module uptime

显示Fabric模块状态

show module xbar

显示引擎冗余状态

show redundancy status

引擎切换

system switchover

显示系统文件路径

show boot

显示软件版本信息

show version

显示接口状态

show interface brief

show interface ethernet slot/port

显示CDP邻居状态

show cdp neighbor

show cdp neighbor detail

检查邻居的IP连通性

ping

显示UDLD配置状态

show udld

show udld neighbors

显示 port-channel接口状态

show port-channel summary

显示vlan信息

show vlan

显示VPC状态

show vpc

VPC参数一致性检查

show vpc consistency-parameter

显示STP状态

show spanning-tree vlan [vlan-id]

显示mac地址表

show mac address-table

显示 fex连接信息

show fex

显示hsrp状态

show hsrp

显示静态路由

show ip static-route

显示ospf邻居

show ip ospf neighbor

显示ospf数据库

show ip ospf database

显示路由信息

show ip route

显示日志信息

show logging info

显示NTP信息

show ntp peers

show ntp peer-status

show clock

  • show interface counters 查看的是从上一次清除计数器之后到当前时间统计的一个数值,是不断累计的,Octets反应的也是累计的字节数(单位byte),如果要转换为KB那么只需除以1024即可,转换为MB再次除以1024,以此类推

     show interface  t1/1 中的 xxxx packets input/ packets output 是上面 对应的ucast+mcast+Bcast 的和

  • show interface InterfaceName | in rate 查看,这个反应的是该接口的实时流量情况(默认是5分钟的平均值,可以通过接口命令:load-interval 60 进行修改1分钟,单位为秒,也可修改为30-300之间的其他值),数据的单位是bit/sec即bps,如果需要转换为Kb(Kpbs), Mb(Mbps),则需要分别除以一个1000和两个1000来进行转换。
  • 示例:
TEST-C3560x#sh int t1/1 | in rate
  Queueing strategy: fifo
  5 minute input rate 114545000 bits/sec, 44927 packets/sec       ---> 114545 Kbps, 114.545 Mbps
  5 minute output rate 563952000 bits/sec, 69844 packets/sec      ---> 563952 Kbps, 563.952 Mbps
TEST-C3560x#