~2 min read • Updated Jan 31, 2026
1. Initial Setup of Cisco Devices
After accessing a Cisco device, the first step is performing the Initial Setup to prepare the device for network configuration.
Entering Privileged EXEC Mode:
enableThis command elevates your access level from User Mode to Privileged Mode, allowing advanced configuration and monitoring.
Entering Global Configuration Mode:
configure terminalThis command allows you to enter the global configuration context of the device.
2. Setting the Device Hostname
Assigning a proper Hostname helps identify the device easily within the network.
hostname Router13. Assigning IP Address to Interfaces
To enable network communication, each Interface must be assigned an IP Address.
Entering Interface Configuration Mode:
interface GigabitEthernet0/0Assigning an IP Address:
ip address 192.168.1.1 255.255.255.0The first value represents the IP address, and the second value represents the Subnet Mask.
Enabling the Interface:
no shutdownBy default, Cisco interfaces are administratively down. This command activates the interface.
4. Configuring Interface Description
The Description command is used for documentation and identifying the purpose of each interface.
description Connection to Core SwitchThis description appears in Show command outputs and greatly simplifies network management and troubleshooting.
5. Monitoring Interfaces Using Show Commands
Show Commands are used to display the current status, configuration, and operational details of the device.
Displaying Interface Status Summary:
show ip interface briefThis command displays IP addresses and the Up/Down status of all interfaces.
Viewing Configuration of a Specific Interface:
show running-config interface GigabitEthernet0/0Displaying the Current Running Configuration:
show running-configDisplaying the Saved Startup Configuration:
show startup-config6. Saving the Configuration
To prevent configuration loss after a device reload, the configuration must be saved.
write memoryOr alternatively:
copy running-config startup-configConclusion
Mastering Initial Setup, IP Addressing, Interface Description, and Show Commands on Cisco devices is a fundamental skill for any network administrator. These concepts are essential for proper network deployment, documentation, monitoring, and troubleshooting.
Written & researched by Dr. Shahin Siami