답변:
show interfaces | <some regex>
불행히도 단순한 것이 없다고 생각합니다 .
편집하다:
아래 의견에서 @ Santino 는보다 간결한 RegEx를 지적했습니다.
show ip interface | include line protocol|access list
지금까지 테스트 한 결과 아래의 긴 RegEx와 동일한 결과가 나타납니다.
일반적으로 ACL이 적용되는 위치를 찾기 위해 다음을 사용합니다.
show ip interface | include is up|is administratively|is down|Outgoing|Inbound
이를 통해 상태와 상관없이 모든 인터페이스에 아웃 바운드 및 인바운드 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 [^ ]+$
추가 RegEx 일치가 필요한 이유가 있는지 확실하지 않습니다. "액세스 목록"다음에.
당신이있는 경우 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는 약간 다릅니다.
편집 : PacketLife IOS Tipssh ip int | inc line protocol|access list is [^ ]+$
에서 얻은 것처럼 크레딧을 얻을 수 없습니다 .
show ip interface | include line protocol|access list
NX-OS로show ip access-list summary