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

Week-7 Lab practicum.Enterprise network and design

The document outlines a laboratory practicum for configuring enterprise network routers using RIP routing protocol. It includes objectives, network topology, and detailed steps for configuring router settings and monitoring RIP configuration. The lab emphasizes the importance of split-horizon and poison reverse techniques in managing routing updates and preventing loops.

Uploaded by

kiprob77
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

Week-7 Lab practicum.Enterprise network and design

The document outlines a laboratory practicum for configuring enterprise network routers using RIP routing protocol. It includes objectives, network topology, and detailed steps for configuring router settings and monitoring RIP configuration. The lab emphasizes the importance of split-horizon and poison reverse techniques in managing routing updates and preventing loops.

Uploaded by

kiprob77
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

ICT5354 Enterprise Network Design

Week-7 Laboratory Practicum


Objectives

 Configure basic router settings


 Configure DCE devices (serial links)
 Configure RIP routing protocol
 Verify RIP routing protocol configuration

Network Topology Diagram

Address Table

Device
Interface IP Address Subnet Mask
(Hostname)
RouterA e0 148.1.1.1 255.255.255.0
s0 192.1.1.1 255.255.255.0
RouterB e0 150.1.1.1 255.255.255.0
s0 192.1.1.2 255.255.255.0
s1 193.1.1.1 255.255.255.0
RouterC e0 152.1.1.1 255.255.255.0
s0 193.1.1.2 255.255.255.0

Background
RIP is the first protocol proposed to support routing at network layer (Layer 3). It is a classful
distance vector (DV) routing protocol.

In this lab, you will configure RIP (Version 2), a classful DV routing protocol used in small networks.
You will also configure serial links that are used to connect routers (WAN links).

Task 1: Configure Router Settings


Page 1 of 6
In this task, you will set up the network topology and configure router settings.

Step 1: Create network topology.

In Packet Tracer, create a network as shown in the network topology.

Step 2: Configure settings for each router.


Assign IP address to each router interface as shown in the address table, then configure RIP for each
router.

Configuration of RouterA

Router>en

Router#config t

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname RouterA

RouterA(config)#int loopback0
Note: Defines a virtual interface that I used as test point

RouterA(config-if)#ip address 10.1.1.1 255.255.255.0

RouterA(config-if)#no shut

RouterA(config-if)#int e0

RouterA(config-if)#ip address 148.1.1.1 255.255.255.0

RouterA(config-if)#no shut

RouterA(config-if)#

RouterA(config-if)#int s0

RouterA(config-if)#ip address 192.1.1.1 255.255.255.0

RouterA(config-if)#no shut

RouterA(config-if)#

RouterA(config-if)#router rip
RouterA(config-if)#version 2

Note: Enables the RIP routing process on the router.

Page 2 of 6
RouterA(config-router)#network 10.0.0.0
Note: Specifies what interfaces will receive and send RIP routing updates. It also specifies what
networks will be advertised.

RouterA(config-router)#network 148.1.0.0

RouterA(config-router)#network 192.1.1.0

Configuration of RouterB

Router>en

Router#config t

Router(config)#hostname RouterB

RouterB(config-if)#int e0

RouterB(config-if)#ip address 150.1.1.1 255.255.255.0

RouterB(config-if)#no shut

RouterB(config-if)#int s0

RouterB(config-if)#ip address 192.1.1.2 255.255.255.0

RouterB(config-if)#clockrate 500000
Note: Acts as DCE providing clock

RouterB(config-if)#no shut

RouterB(config-if)#int s1

RouterB(config-if)#ip address 193.1.1.1 255.255.255.0

RouterB(config-if)#clockrate 500000

RouterB(config-if)#no shut

RouterB(config-if)#router rip
RouterB(config-if)#version 2

Note: Enables the RIP routing process on the router.

RouterB(config-router)#network 192.1.1.0
Page 3 of 6
Note: Specifies what interfaces will receive and send RIP routing updates. It also specifies what
networks to be advertised.

RouterB(config-router)#network 193.1.1.0
RouterB(config-router)#network 150.1.0.0

Configuration of RouterC

Router>en

Router#config t

Router(config)#hostname RouterC

RouterC(config-if)#int e0

RouterC(config-if)#ip address 152.1.1.1 255.255.255.0

RouterC(config-if)#no shut

RouterC(config-if)#int s0

RouterC(config-if)#ip address 193.1.1.2 255.255.255.0

RouterC(config-if)#no shut

RouterC(config-if)#router rip
RouterC(config-if)#version 2

Note: Enables the RIP routing process on the router.

RouterC(config-router)#network 152.1.0.0
Note: Specifies what interfaces will receive and send RIP routing updates. It also specifies what
networks will be advertised.

RouterC(config-router)#network 193.1.1.0

Task 2: Monitor and Troubleshoot RIP Configuration


RIP is a very simple protocol to configure and troubleshot. Show the IP routing table on RouterA with
the show ip route command.

Step 1: Find the routing table entries received using the RIP routing protocol.

RouterA#show ip route

Page 4 of 6
From RouterA, monitor the routing packets being passed using the debug ip rip command. Notice
that on interface serial 0, the router does not advertise the networks it learned from RouterB
(152.1.1.0 and 193.1.1.0) but on all other interfaces, those networks are advertised. This is split
horizons at work – remember that when split horizons is enabled, the router will never advertise a
route back through the interface from which it was learned.

Step 2: Turn on debugging mode

RouterA#debug ip rip

RIP protocol debugging is on

Step 3: Configure split-horizon and poison reverse.

Split –Horizon – A routing technique used by distance vector routing protocols (RIP, IGRP) to reduce
routing traffic on the network. With split-horizon, information about routes is not propagated back
into the same interface from which it was learned.

Poison reverse – A route is “poisoned” when a router marks a route as unreachable by setting the
hop count to 16 and then passes this route out to a neighboring router, causing the neighboring
router to remove the route from its routing table. This speeds network convergence by preventing
invalid routes from being propagated throughout the network.

These features allow RIP to adjust to network-topology changes and prevent routing loops from
being propagated and continuing indefinitely.

Now disable split horizons on RouterA using the interface configuration command, no ip
splithorizon.

RouterA(config)#int s0

RouterA(config-if)#no ip split-horizon

From RouterA, monitor the routing updates being passed using the debug ip rip command. Notice
that now all routes are being advertised out Serial 0, including the routes learned from RouterB on
Serial 0.

Remember that RIP is a very easy routing protocol to use and troubleshot. It uses hop count as it’s
metric and has a maximum hop count of 15 and the destination is considered unreachable at 16. RIP
manages this by changing the administrative distance of hop 16 to 255 which is considered
unreachable. Also remember that RIP is a classfull routing protocol and therefore does not include
the subnet mask in the routing update. RIP assumes that everyone is using the same subnet mask.
One of the primary reasons this came about was because RIP was developed before the need for
subnetting came to be.

Submission

Write your name and student ID on the top of this lab document and submit during the lab session

to APIC online learning system. The report should include screenshots and working procedures as
Page 5 of 6
evidence of the completion of your lab task and should be completed and submitted during the

workshop session.

Note, the lab work will contribute to the Laboratory Practicum assessment.

Page 6 of 6

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy