If
you’re new to Cisco networking, one of the first skills you’ll need is
mastering Privileged EXEC mode and its powerful ‘show’ commands.
These commands allow you to monitor, troubleshoot, and manage Cisco routers and
switches effectively.
This
beginner-friendly guide will explain:
- What
Privileged EXEC mode is
- Why show
commands are important
- Essential
commands you must know
- Practical
tips to get started
🔹 What is
Privileged EXEC Mode?
Cisco
devices use different CLI (Command Line Interface) modes:
- User EXEC
mode
→ Limited access (monitoring only).
- Privileged
EXEC mode → Full access to advanced commands like show,
debug, and configuration commands.
To
enter Privileged EXEC mode:
Router> enable
Router#
👉 Notice the prompt changes from >
to #.
🔹 Why Use 'Show'
Commands?
The show commands give real-time information about your device.
They are
used to:
- Display current
and saved configurations.
- Check interface
status and IP addresses.
- Monitor device
performance and uptime.
- Troubleshoot
connectivity issues with neighbors and ARP tables.
They’re
the most essential commands for both beginners and professionals.
Command | Purpose |
---|---|
show running-config | Displays current active configuration (RAM). |
show startup-config | Displays saved configuration (NVRAM). |
show ip interface brief | Summarizes interfaces, IPs, and status. |
show interfaces | Gives detailed interface statistics. |
show version | Shows IOS version, uptime, and hardware info. |
show vlan brief | (On switches) Lists VLANs configured. |
show mac address-table | (On switches) Displays learned MAC addresses. |
show arp | Displays ARP table (IP-to-MAC mapping). |
show cdp neighbors | Shows directly connected Cisco devices. |
🔹 Example:
Checking Interfaces
The
most common troubleshooting command is:
Router# show ip
interface brief
Sample
output:
Interface IP-Address OK? Method Status Protocol
Fa0/0 192.168.1.1 YES manual up up
Fa0/1 unassigned YES unset
administratively down down
From
this output, you can quickly see:
- Which
interfaces have IP addresses.
- Whether
they’re up (enabled).
- Whether the protocol
is working.
🔹 Quick Tips for
Beginners
- running-config
= active, temporary configuration.
- startup-config
= saved, permanent configuration.
✅ Final Thoughts
Learning
how to use show commands in Privileged EXEC mode is the foundation of
Cisco networking. These commands make it easy to troubleshoot, monitor, and
understand how routers and switches operate.
Whether
you’re studying for the CCNA certification or just starting your
networking career, practicing these commands will build your confidence and
skills.
👉 For more tutorials and networking guides, visit FlackBox
❓ Frequently Asked Questions (FAQ)
show
, debug
, and configuration commands.enable
in User EXEC mode (Router>
)
to access Privileged EXEC mode (Router#
).3. What is
the difference between show
running-config
and show startup-config
?
· show running-config
displays the
current active configuration stored in RAM.
· show startup-config
displays the
saved configuration in NVRAM, which loads after a reboot.
show
command is
best for troubleshooting interfaces?show ip
interface brief
command provides a quick overview of IP
addresses, interface status, and protocol status, making it the most useful for
troubleshooting.
0Comments