show ip interface brief – Fast Interface Overview & Troubleshooting
Purpose of show ip interface brief
Command
Definition: show ip interface brief
is a Cisco IOS command providing a concise summary of all Layer 3 interfaces on a router or switch.
- Quickly displays interface names, IP assignments, and operational status.
- Essential for rapid verification and troubleshooting.
- Prepares the engineer for more advanced diagnostics if needed.
Common Usage Scenarios
- Verify which interfaces are up or down.
- Check IP assignments at a glance.
- Spot configuration or connectivity problems quickly.
- Prepare for in-depth troubleshooting (e.g., check details, errors, configs).
Understanding Output Fields
Field | Description |
---|---|
Interface | Name (e.g., GigabitEthernet0/1, FastEthernet0/0) |
IP-Address | IPv4 address assigned (or "unassigned") |
OK? | Hardware status (usually "YES" if operational) |
Method | How IP was assigned: manual, DHCP, unset |
Status | Physical (Layer 1) status: up, down, administratively down |
Protocol | Layer 2/3 protocol status: up (running), down (not running) |
Sample Output Example
Router# show ip interface brief Interface IP-Address OK? Method Status Protocol GigabitEthernet0/0 192.168.1.1 YES manual up up GigabitEthernet0/1 unassigned YES unset administratively down down Serial0/0/0 10.0.0.1 YES manual up up Loopback0 172.16.1.1 YES manual up up
Interpreting Interface Statuses
Status | Protocol | Meaning |
---|---|---|
up | up | Interface fully operational |
up | down | Layer 1 (physical) is fine, but Layer 2/3 not working |
administratively down | down | Disabled via config; use no shutdown to enable |
down | down | Cable unplugged, hardware failure, or remote end down |
- Status: "up" (Layer 1 is good), "down" (physical problem), "administratively down" (shut down by config)
- Protocol: "up" (protocols running), "down" (not running)
Using the Command for Troubleshooting
- Find interfaces that are down or disabled (easy to spot errors).
- Spot missing or misconfigured IPs (shows as "unassigned").
- Mismatch (up/down) may indicate Layer 2 issues (cabling, speed/duplex, neighbor down).
- See if interfaces are up but not configured with an IP address.
Example: Interface shutdown (needs enabling)
GigabitEthernet0/2 unassigned YES unset administratively down downAction: Run
no shutdown
in interface config mode.
Example: Physical issue
GigabitEthernet0/3 192.168.20.1 YES manual down downAction: Check cable, SFP, or remote end.
Example: All interfaces up
GigabitEthernet0/0 192.168.10.1 YES manual up up GigabitEthernet0/1 10.10.10.2 YES manual up up
Variations and Related Commands
- show interfaces: Detailed info (errors, speed, packets, etc.)
- show interfaces status (switches): Layer 2 port/VLAN status
- show ip interface: More detailed Layer 3 info (ACLs, helpers)
- show running-config interface [name]: Full config for a specific interface
Tip: Use filtering for quick searches, e.g.:
show ip interface brief | include down
Use in Different Cisco Devices
- Routers & Layer 3 Switches: Shows routed interfaces.
- Layer 2 Switches: Only SVI (VLAN) interfaces and routed ports appear.
- Output formatting may differ slightly by model or IOS version.
Filtering and Sorting Output
- To filter for a specific interface:
show ip interface brief | include GigabitEthernet0/1
- To show all interfaces that are down:
show ip interface brief | include down
Exam Tips and Key Points
show ip interface brief
is a primary troubleshooting command on Cisco devices.- Know what each column means and typical status/protocol combinations.
- "administratively down" means the interface is shut down by config—not a physical problem.
- Always use this command before deeper diagnostics.
- Combine with
show run interface [name]
for complete troubleshooting.