1、显示mac地址表
show mac-address-table
显示存储在当前交换机中的MAC地址表,这里面记录了交换机目前学习到的所有主机MAC地址与交换机端口的映射关系,二层数据正是通过查找这种映射关系来进行数据传送的。
这里的的MAC地址有两种类型,一种是STATIC即静态的(交换机自身端口或硬件接口的地址), 另一种是DYNAMIC即动态的学习到的地址(所连接的终端设备的MAC地址)。
应用管道符号进行筛选查询
show mac-address-table | include Mac地址里的信息(xxxx.xxxx.xxxx,取后4位或者后8位)
show mac-address-table | include 端口号
显示到其对端的交换机端口号
sh mac-address-table dynamic address 计算机上的mac地址
sh mac-address-table dynamic interface int 端口号
2、显示ARP缓存表
普通交换机(IOS操作系统): show arp
高端交换机(NX-OS操作系统):show ip arp
应用管道符号进行筛选查询
show arp | include Mac地址(xxxx.xxxx.xxxx,取后4位或者后8位)
show ip arp | include Mac地址(xxxx.xxxx.xxxx)
原则上,只要表里有的信息都可以应用这样的方式来查询。
原文地址:https://blog.51cto.com/dawn0919/2413497
时间: 2024-09-29 15:22:13