回答:
show interfaces | <some regex>
残念ながら、もっと単純なものはないと思います。
編集:
以下のコメントから、@ Santinoはより簡潔な正規表現を指摘しました。
show ip interface | include line protocol|access list
これまでの私のテストでは、これは以下の長い正規表現と同じ結果をもたらすことを示しています。
私は通常、ACLが適用される場所を見つけるために以下を使用します。
show ip interface | include is up|is administratively|is down|Outgoing|Inbound
これにより、状態に関係なくすべてのインターフェイスが提供され、その後、アウトバウンドACLとインバウンドACLが提供されます。例えば:
LAB-4510-A#show ip interface | include is up|is administratively|is down|Outgoing|Inbound
Vlan1 is administratively down, line protocol is down
Vlan110 is up, line protocol is up
Outgoing access list is not set
Inbound access list is VENDOR->INTERNET
Vlan140 is administratively down, line protocol is down
Outgoing access list is not set
Inbound access list is not set
Vlan150 is down, line protocol is down
Outgoing access list is not set
Inbound access list is VENDOR->INTERNET
Vlan210 is up, line protocol is up
Outgoing access list is not set
Inbound access list is not set
FastEthernet1 is administratively down, line protocol is down
Outgoing access list is not set
Inbound access list is not set
GigabitEthernet1/1 is up, line protocol is up
Outgoing access list is not set
Inbound access list is not set
GigabitEthernet1/2 is down, line protocol is down
Inbound access list is not set
Outgoing access list is not set
すべてのインターフェイスについても同様です。
このコマンドは、Ciscoスイッチとルーターの両方で機能します。以下の7200ルーターのサンプル出力を参照してください。
LAB-7204-A#show ip interface | include is up|is administratively|is down|Outgoing|Inbound
GigabitEthernet0/1 is up, line protocol is up
Outgoing access list is not set
Inbound access list is not set
FastEthernet0/2 is administratively down, line protocol is down
GigabitEthernet0/2 is up, line protocol is up
Outgoing access list is not set
Inbound access list is not set
GigabitEthernet0/3 is administratively down, line protocol is down
SSLVPN-VIF0 is up, line protocol is up
Outgoing access list is not set
Inbound access list is not set
Loopback0 is up, line protocol is up
Outgoing access list is not set
Inbound access list is not set
Loopback1 is up, line protocol is up
Outgoing access list is not set
Inbound access list is not set
show ip interface | include line protocol|access list is [^ ]+$
はありません)。「アクセスリスト」の後。
show run | <some regex>
必要な情報を表示するようなコマンドがある場合は、常にエイリアスを作成できます。
このコマンドを使用した例:
alias exec shacls sh ip int | inc line protocol|access list is [^ ]+$
。
次にalias-name
(この例ではshacls)を使用するだけで、次のようになります。show run | <some regex>
注:各IOSデバイスでこれを行う必要があります。ASAはわずかに異なります。
編集:sh ip int | inc line protocol|access list is [^ ]+$
それはPacketLife IOSのヒントからだったので信用することはできません。
sh run | ^ inter | access-grで
running-configからの出力を提供します
show ip interface | include line protocol|access list
For NX-OSに短縮できますshow ip access-list summary