Wednesday, 4 December 2019

Configuring CISCO Router 1841

The Cisco 1841 router requires Command-Line Interface (CLI) configuration to set up networking functions such as IP addressing, routing protocols, security settings, and interface configurations. CLI provides precise control, allowing administrators to fine-tune performance, enable advanced features, and troubleshoot network issues efficiently. This method is essential for professional network management, ensuring reliability and scalability.

enable
config t
hostname Router0
enable secret class
line con 0
password cisco
login
exit
line vty 0 4
password cisco
login
exit
interface FastEthernet0/0
ip address 192.168.1.1 255.255.255.0
description Router0 FastEthernet0/0
no shutdown
exit


interface FastEthernet0/1
ip address 192.168.2.1 255.255.255.0
description Router0 FastEthernet0/1
no shutdown
exit
exit
show running-config

click enter..enter to see the report
copy running-config startup-config



No comments:

Post a Comment