是否有人知道如何查看哪些交换机端口是从CLI或ASDM电缆?
我正在配置一个5505和内部有6个接口相关联,其中只有一个实际上是主动链接。
我看不出找到这方面的信息,任何帮助都将不胜感激。
发布于 2013-04-05 19:48:11
运行以下命令:
show interface
这将输出有关所有接口的信息。每行的第一行都会说:
Interface Ethernet0/2 "", is administratively down, line protocol is down
如果它是相互关联的,它通常表明:
Interface Ethernet0/1 "inside", is up, line protocol is up
发布于 2013-04-05 21:03:15
如果您想查看所有接口的状态。你就是这样做的。
接口
显示接口状态??包括已连接的
Gi3/2连接28a-全a-1000 10/100/1000-TX
Gi3/3连接28a-全a-1000 10/100/1000-TX
显示接口状态_
Te1/8 notconnect 1 10 G 10 10GBase SR
Gi2/1非连接1自动10/100/1000-TX
Gi2/2无连接27自动10/100/1000-TX
Gi2/5无连接1自动10/100/1000-TX
希望这能帮上忙。
发布于 2013-04-07 03:28:20
show interface ip brief显示了一些IP信息,但也输出了类似于催化剂开关的接口状态:
Home# sh int ip b
Interface IP-Address OK? Method Status Protocol
Ethernet0/0 unassigned YES unset up up
Ethernet0/1 unassigned YES unset down down
Ethernet0/2 unassigned YES unset down down
Ethernet0/3 unassigned YES unset up up
Ethernet0/4 unassigned YES unset up up
Ethernet0/5 unassigned YES unset down down
Ethernet0/6 unassigned YES unset down down
Ethernet0/7 unassigned YES unset down down
Internal-Data0/0 unassigned YES unset up up
Internal-Data0/1 unassigned YES unset up up
Vlan1 x.x.x.x YES DHCP up up
Vlan2 192.168.1.1 YES CONFIG up up
Virtual0 127.0.0.1 YES unset up up然后使用show switch vlan命令查看分配的vlans:
Home# sh switch vlan
VLAN Name Status Ports
---- -------------------------------- --------- -----------------------------
1 internet up Et0/0
2 inside up Et0/1, Et0/2, Et0/3, Et0/4
Et0/5, Et0/6, Et0/7https://serverfault.com/questions/496614
复制相似问题