Ip

Junos:找出每個介面的ip

  • February 19, 2013

對不起,如果我的解釋令人困惑。我需要獲取瞻博網路交換機和路由器(不同型號)的所有 IP 地址。在 Cisco IOS 上,我可以通過以下方式獲得show ip interface brief | exclude unassigned

cisco_device>show ip interface brief | exclude unassigned
Interface               IP-Address     OK? Method Status     Protocol
TenGigabitEthernet1/30  10.1.1.24      YES NVRAM  up         up      
Loopback0               10.1.95.2      YES NVRAM  up         up      
Port-channel15          10.1.1.150     YES NVRAM  up         up      
Port-channel39          10.2.1.4       YES NVRAM  up         up      
Port-channel100         10.3.1.2       YES NVRAM  up         up      
Vlan49                  10.4.1.40      YES NVRAM  up         up      

Junos上有類似的東西嗎?謝謝!

你可能想要show interfaces

> show interfaces terse

如果要排除沒有 IP 的介面,可以匹配inet

> show interfaces terse | match inet

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