For beginners, the basic configuration of this Cisco router is very necessary in order to learn the next level. In this article I will teach "How to configure a basic dicisco router".
As shown above, here we use the basic dicisco topology, I hope you already understand how to create the dipackettracker topology or you can download the basic topology here.
We will start the initial configuration that we will do on R1, R2, R3, namely:
- Time Configuration
- Hostname Configuration
- Enable Password Configuration
- Banner Configuration
- Password Console and VTY Configuration
- Interface and Description Configuration
The first step is Time Configuration:
Router>en
Router#clock set 02:00 27 feb 2019Router#show clock2:0:9.861 UTC Wed Feb 27 2019
The second step is Hostname Configuration:
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.Router(config)#hos -> tekan tabRouter(config)#hostname R1R1(config)#
Third step Enable Password Configuration:
R1(config)#enable ?
password Assign the privileged level passwordsecret Assign the privileged level secretR1(config)#enable secret cisco -> the word cisco is the password we use so it's free.
Fourth step Banner Configuration:
R1(config)#banner motd #
Enter TEXT message. End with the character '#'."WELCOME TO ROUTER 1"#
note : make sure to use the ("") sign for prefix and suffix words and the closing (#) sign to execute the command.
Step five Password Console and VTY Configuration:
R1(config)#line console 0
R1(config-line)#pass -> Press tabR1(config-line)#password cisco -> the word cisco is the password we useso feel free to do anythingR1(config-line)#loginR1(config-line)#exitR1(config)#
Step Six Interface Configuration and Description:
R1(config)#int fa0/0
R1(config-if)#des -> Press tabR1(config-if)#description "connect to switch-1 fa0/1"R1(config-if)#exitR1(config)#int -> Press tabR1(config)#interface s0/0/0R1(config-if)#des -> Press tabR1(config-if)#description "connect to router-2 s0/0/0"R1(config-if)#exitR1(config)#
note :
on router two he will configure the description on interface s0/0/0 which leads to router one and s0/0/1 which leads to router three.
Basic configuration on Cisco routers has been completed on router one, now you can continue to router two and router three with the same commands as above.
0 Comments