basic Cisco router configuration

By:

Published:

Updated:

basic router configuration

Disclaimer

As an affiliate, we may earn a commission from qualifying purchases. We get commissions for purchases made through links on this website from Amazon and other third parties.

It is a simple Topology for the basic Cisco router configuration. I will show step by step Cisco command mode with video.

Access of  CISCO router:
===================

1.Line Consol
From RS232 port to Router Console  port

2. Virtually (Line Vty)
a.Telnet

Starting point : on packet tracer > Router > double click  > CLI mode open of router >  no >Enter
>Router>enable > Enter
Router#configure terminal
Router(config)#

Change router name :
————————-
Router(config)#
Router(config)#hostname Router1
Router1(config)#

Secure Cisco Router using password:
========================
Password for line console:
——————————-
Router1(config)#line console 0
Router1(config-line)#password vidyut
Router1(config-line)#login
Router1(config-line)#exit

Enable Password:
——————–
Router1(config)#enable secret  vidyut (Encrypted)
Router1(config)#enable password vidyut (Plain Text)

Password for virtual login:
——————————-
Using Telnet
—————
Router1(config-line)#line vty 0 4
Router1(config-line)#password vidyut
Router1(config-line)#login
Router1(config-line)#exit

To encrypt console and vty password
——————————————–
Router1(config)#service password-encryption

To set an IP Address at interface: Router 1
————————————————–
Router1(config)#interface fa  0/0
Router1(config-if)#ip address 10.10.0.1 255.255.255.0
Router1(config-if)#no shutdown
Router1(config-if)#exit

Router1(config)#interface fa  0/1
Router1(config-if)#ip address 192.168.0.1  255.255.255.0
Router1(config-if)#no shutdown
Router1(config-if)#exit

To set an IP Address at interface: Router 2
————————————————-
Router 2(config)#interface fa  0/0
Router 2(config-if)#ip address   192.168.2.1  255.255.255.0
Router 2(config-if)#no shutdown
Router 2(config-if)#exit

Router 2(config)#interface fa  0/1
Router 2(config-if)#ip address   192.168.3.1  255.255.255.0
Router 2(config-if)#no shutdown
Router 2(config-if)#exit

To set a Warning Banner
—————————–
Router1(config)#banner motd @ Authenticate user only. Otherwise Hacker will be HACKED.@

You can see the video Tutorial:

 

Howdy! I’m Arafat Bidyut, Co-founder of a popular tech blog greentechrevolution, and a BSc in Electronics and Telecommunication Engineering.

With a passion for all things related to Wi-Fi routers, network devices, and software troubleshooting, my goal is to unravel the complexities of technology and make it accessible to everyone.

We may earn a commission if you click on the links within this article. Learn more.

Leave a Reply