Day-1 | Cisco Routers and Switches Complete Configuration on Real Devices |#ciscoccna #ccnp #cisco
Table of Contents
Introduction
This tutorial provides a step-by-step guide on how to configure Cisco routers and switches using real devices. It is designed for beginners and covers the essential process of accessing these devices through a console cable. Following these steps will help you establish a connection and set up your networking devices effectively.
Step 1: Gather Required Hardware
Before you begin the configuration process, ensure you have the following hardware:
- Real Cisco routers and switches
- Power cables for the devices
- Console cable (usually a serial cable)
- Laptop or desktop computer
Step 2: Install Required Software
To communicate with your Cisco devices, you will need terminal emulation software. Follow these steps to install the software:
- Download and install PuTTY from the official website.
- Launch PuTTY once the installation is complete.
Step 3: Connect the Console Cable
Establish a physical connection between your computer and the Cisco device:
- Connect one end of the console cable to the console port on the Cisco router or switch.
- Connect the other end of the console cable to a USB port on your laptop or desktop.
- If your laptop does not have a serial port, you may need a USB to serial adapter.
Step 4: Configure PuTTY for Connection
Now that the hardware is connected, configure PuTTY to access the Cisco device:
- Open PuTTY.
- In the "Session" category, select "Serial" as the connection type.
- Enter the appropriate COM port number (e.g., COM3). You can check this in the Device Manager if unsure.
- Set the following connection settings:
- Speed: 9600 (this is the standard baud rate for Cisco devices)
- Data bits: 8
- Stop bits: 1
- Parity: None
- Flow control: None
- Click on "Open" to initiate the connection.
Step 5: Access the Device Console
Once the connection is established, you should see a terminal window:
- Press the Enter key to access the device's console.
- You may be prompted to log in. If it’s a new device, you might not need credentials initially.
Step 6: Start Basic Configuration
Now that you have access to the device, you can start configuring it:
- Enter privileged EXEC mode by typing
enable
and pressing Enter. - You can now enter global configuration mode by typing
configure terminal
orconf t
.
Here are some basic commands you might want to explore:
- To set the hostname:
hostname YourRouterName
- To configure an interface:
interface GigabitEthernet0/0 ip address 192.168.1.1 255.255.255.0 no shutdown
Conclusion
In this tutorial, you learned how to access and configure Cisco routers and switches using a console cable and PuTTY. The steps included gathering the necessary hardware, installing software, making connections, and starting basic configurations. Next, you can explore advanced configurations or dive deeper into specific networking concepts by following the related playlists provided in the video description. Happy networking!