Networking

Cisco Nexus:列出所有介面及其 ip

  • February 28, 2013

這與這個問題相同,但對於 Nexus:Junos:找出每個介面的 ip

我需要顯示所有介面及其各自的 IP。我知道在 IOS 上我可以show ip interface brief | exclude unassigned使用show interfaces terse | match inet.

如果我show ip interface brief在這個設備上執行,我得到一個空輸出:

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

然而,設備有幾個狀態為 up 的 Eth 介面。

你需要發出: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,以便獲取管理 IPsh ip int brief operational vrf management

引用自:https://serverfault.com/questions/483466