Cisco Nexus:列出所有接口及其 IP

Cisco Nexus:列出所有接口及其 IP

这与这个问题相同,但是对于 Nexus:Junos:找出每个接口的 IP

我需要显示所有接口及其各自的 IP。我知道在 IOS 上我可以使用 来实现,show ip interface brief | exclude unassigned在 Junos 上可以使用 来实现show interfaces terse | match inet

如果我show ip interface brief在此设备上执行,我会得到一个空的输出:

IP Interface Status for VRF "default"(1)
Interface            IP Address      Interface Status

但是该设备有多个状态为“up”的以太网接口。

答案1

您需要发出:sh ip int brief operational vrf all才能获得所需信息。可能发生的情况是,您的所有 IP 地址都分配给了“管理”VRF,并且sh ip interface brief仅显示默认 VRF。

当我运行全部时,我得到:

ny-nexus01# sh ip int brief operational vrf all
IP Interface Status for VRF "management"(2)
Interface            IP Address      Interface Status
mgmt0                10.7.6.5        protocol-up/link-up/admin-up       

IP Interface Status for VRF "default"(1)
Interface            IP Address      Interface Status

ny-nexus01# 

您还可以选择指定所需的确切 VRF,因此要获取管理 IP,您需要sh ip int brief operational vrf management

相关内容