0% found this document useful (0 votes)
7 views

Exp 05 Router Configuration

The document outlines the configuration of two Cisco routers (R1 and R2) along with an IP address plan for connected computers and switches. It details the basic setup commands for each router, including interface configurations and static routing to ensure connectivity between different subnets. Additionally, it provides a link to a video resource for further learning on router-switch configuration.

Uploaded by

userisnewuser
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Exp 05 Router Configuration

The document outlines the configuration of two Cisco routers (R1 and R2) along with an IP address plan for connected computers and switches. It details the basic setup commands for each router, including interface configurations and static routing to ensure connectivity between different subnets. Additionally, it provides a link to a video resource for further learning on router-switch configuration.

Uploaded by

userisnewuser
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

CISCO ROUTER Configuration

Network Diagram for implementation:


IP Address plan:
System IP address Subnet mask Gateway Switch Router
Computer- 192.168.10.2 255.255.255.0 192.168.10.1 Switch-1 2950-24 2620XM
1
Computer- 192.168.10.3 255.255.255.0 192.168.10.1 Switch-1 2950-24 2620XM
2
Computer- 172.16.0.2 255.255.0.0 172.16.0.1 Switch-2 2950-24 2620XM
3
Computer- 172.16.0.3 255.255.0.0 172.16.0.1 Switch-2 2950-24 2620XM
4
Router-1 Basic Configuration

Router>
Router>enable
Router#
Router# configure terminal
Router(config)#
Router(config)#hostname R1 You can give router name as per your wish
R1(config)#
R1(config)#interface fastEthernet 0/0
R1(config-if)#
R1(config-if)#ip address 192.168.10.1 255.255.255.0
R1(config-if)#
R1(config-if)#no shutdown Now LED will glow to GREEN
R1(config-if)#
R1(config-if)#exit
R1(config)#
R1(config)#interface serial 0/0
R1(config-if)#
R1(config-if)#ip address 10.16.0.1 255.0.0.0
R1(config-if)#
R1(config-if)# no shutdown Now LED will glow
R1(config-if)#
R1(config-if)# clock rate 64000
R1(config-if)#
R1(config-if)# exit
R1(config)#
R1(config)# exit
R1#
R1#show startup-configuration
R1#copy running-configuration startup-configuration
R1#
R1#

Router-2 Basic Configuration

Router>
Router>enable
Router#
Router# configure terminal
Router(config)#
Router(config)#hostname R2 You can give router name as per your wish
R2(config)#
R2(config)#interface fastEthernet 0/0
R2(config-if)#
R2(config-if)#ip address 172.16.0.1 255.255.0.0
R2(config-if)#
R2(config-if)#no shutdown Now LED will glow to GREEN
R2(config-if)#
R2(config-if)#exit
R2(config)#
R2(config)#interface serial 0/0
R2(config-if)#
R2(config-if)#ip address 10.16.0.2 255.0.0.0
R2(config-if)#
R2(onfig-if)# no shutdown Now LED will glow
R2(config-if)#
R2(config-if)# clock rate 64000
R2(config-if)#
R2(config-if)# exit
R2(config)#
R2(config)# exit
R2#
R2#show startup-configuration
R2#copy running-configuration startup-configuration
R2#
R2#
Both the router needs Routing setting (we will go for STATIC), but why do we need such routing?
Answer: R1 doesn’t know about 172.16.0.0./16
and R2 doesn’t know about 192.168.10.0/24

R1 Routing Static Table:

R1#
R1#show ip route
C directly connected serial 0/0
C directly connected fastEthernet 0/0
R1#
R1#configure terminal
R1(config)#
R1(config)#ip route 172.16.0.0 255.255.0.0 serial 0/0 1
OR
R1(config)#ip route 172.16.0.0 255.255.0.0 10.16.0.2 1
R1(confid)#exit
R1#
R1#show ip route
R!#

C 10.0.0.0/8 is directly connected serial 0/0

S 172.16.0.0/16 directly connected serial 0/0 [1/0] via 10.16.0.2

C 192.168.10.0/24 is directly connected serial 0/0 [1/0] via fastEthernet 0/0

R1#
R1# copy running-configuration startup-configuration
R2 Routing Static Table:

R2#
R2#show ip route
C 10.0.0.0/18 directly connected serial 0/0
C 172.16.0.0/16 directly connected fastEthernet 0/0
R2#
R2#configure terminal
R2(config)#
R2(config)#ip route 192.168.10.0 255.255.255.0 serial 0/0 1
OR
R2(config)#ip route 192.168.10.0 255.255.255.0 10.16.0.1 1
R2(confid)#exit
R2#
R2#show ip route
R2#

C 10.0.0.0/8 is directly connected serial 0/0


S 172.16.0.0/16 directly connected serial 0/0 [1/0] via 10.16.0.2
C 192.168.10.0/24 is directly connected serial 0/0 [1/0] via fastEthernet 0/0

R2#
R2# copy running-configuration startup-configuration

Best video on Router-Switsh configuration:


https://www.google.com/search?
sca_esv=561558033&q=cisco+router+configuration+step+by+step&tbm=vid&source=lnms&sa=X&ved=2
ahUKEwiG_I3HuIaBAxUD1zgGHY5qDpgQ0pQJegQIDxAB&biw=1536&bih=731&dpr=1.25#fpstate=ive&vld=ci
d:73029764,vid:lZfBmi4TrVM

You might also like