查看已连接的接口

查看已连接的接口

有人知道如何从 CLI 或 ASDM 查看哪些交换机端口已连接电缆吗?

我正在配置 5505,内部有 6 个关联接口,但其中只有一个实际上是主动链接的。

我找不到这些信息,如能得到任何帮助我将非常感激。

答案1

运行命令:

show interface

这将输出有关所有接口的信息。每个接口的第一行将如下所示:

Interface Ethernet0/2 "", is administratively down, line protocol is down

如果链接的话一般会显示:

Interface Ethernet0/1 "inside", is up, line protocol is up

答案2

如果您想查看所有接口的状态。请按以下步骤操作。

查看已连接的接口

显示接口状态|包括已连接

Gi3/2 连接 28 a-全 a-1000 10/100/1000-TX

Gi3/3 连接 28 a-全 a-1000 10/100/1000-TX

查看未连接的接口

显示接口状态|包括 notconnect

Te1/8 不连接 1 全 10G 10GBase-SR

Gi2/1 不连接 1 自动自动 10/100/1000-TX

Gi2/2 不连接 27 自动自动 10/100/1000-TX

Gi2/5 不连接 1 自动自动 10/100/1000-TX

希望有所帮助。

答案3

show interface ip brief显示一些 IP 信息,但也输出类似于 Catalyst 交换机的接口状态:

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

然后使用以下命令查看分配的 VLAN show switch vlan

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/7

相关内容