Cisco Router Basic Configuration (Step by Step Guide)
Introduction
Cisco routers are essential networking devices used for connecting different networks and managing traffic efficiently. Configuring a Cisco router correctly is crucial to ensure network stability, security, and efficiency. This guide provides a detailed, step-by-step explanation of basic Cisco router configuration, including essential commands, interface setup, VLAN configuration, routing, ACLs, switch port security, and troubleshooting techniques.
1. Basic Device Setup
Before configuring a Cisco router, you need to log in and access the command-line interface (CLI). Once inside, basic commands allow you to manage the device settings and configurations efficiently.
Logging In and Basic Commands
When you first connect to a Cisco router, you will be in user EXEC mode, which provides limited access to commands. To perform configuration tasks, you need to enter privileged EXEC mode:
enable
This command allows you to enter privileged EXEC mode, where you can execute administrative commands.
Next, enter global configuration mode:
configure terminal
In this mode, you can make changes to the router configuration. To assign a name to your router, use:
hostname MyRouter
This command sets the router’s hostname to “MyRouter,” making it easier to identify in the network.
To exit from the current mode, use:
exit
This will return you to the previous mode.
Saving and Viewing Configurations
To save your current configuration so that it persists after a reboot, use:
copy running-config startup-config
To display the active configuration currently running on the device, use:
show running-config
To view the saved configuration stored in non-volatile memory, use:
show startup-config
Erasing Configurations
If you need to erase the startup configuration and reset the router to factory settings, use:
erase startup-config
reload
