Tôi không tin rằng có bất cứ điều gì đơn giản hơn show interfaces | <some regex>
không may.
Biên tập:
Từ các bình luận bên dưới, @ Santino đã chỉ ra một RegEx ngắn gọn hơn:
show ip interface | include line protocol|access list
Thử nghiệm của tôi cho đến nay cho thấy rằng điều này cho kết quả tương tự như RegEx dài hơn của tôi bên dưới.
Tôi thường sử dụng như sau để tìm nơi áp dụng ACL:
show ip interface | include is up|is administratively|is down|Outgoing|Inbound
Điều này cung cấp cho bạn mọi giao diện, bất kể trạng thái, sau đó là ACL ngoài và trong nước là gì. Ví dụ:
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
Và như vậy cho mọi giao diện.
Lệnh này hoạt động trên cả thiết bị chuyển mạch và bộ định tuyến của Cisco. Xem đầu ra mẫu từ Bộ định tuyến 7200 bên dưới:
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
NX-OS,show ip access-list summary