web-dev-qa-db-ja.com

Junos:各インターフェースのIPを調べます

私の説明が混乱するなら申し訳ありません。ジュニパーのスイッチとルーター(モデルが異なる)のすべてのIPアドレスを取得する必要があります。シスコでは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にも同様のものはありますか?ありがとう!

5
Megaslav

あなたはおそらく show interfaces

> show interfaces terse

IPのないインターフェースを除外したい場合は、inetで照合できます。

> show interfaces terse | match inet
5
mgorven