Assignment-8
Assignment-8
Problem Definition:
Problem Definition :Use packet Tracer tool for configuration of 3 router network
using one of the following protocol RIP/OSPF/BGP
● Prerequisite
1. Routing Protocols.
2. Basics of Packet Tracer.
● Learning Objectives:
1. To Understand Simulation Tool.
2. Should Able to Configure Routing Protocols
1.3 Theory:
1.3.1 Introduction
● OSPF is an interior gateway protocol (IGP) for routing Internet Protocol (IP) packets
solely within a single routing domain, such as an autonomous system. It gathers link
Open the router 1 (R1) which is the main router connected to ISP router. Do the following
command for RIP Routing.
R1>enable
R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#network 200.100.10.0
DHCP message types:
R1(config-router)#network 192.168.20.0
R1(config-router)#network 10.10.10.0
R1(config-router)#
After enabling router with enable command then go to privileged mode with configure
terminal command. Now with router rip command, enable routing for all routers. The
version 2 Command, configure routing information protocol with version two. And next set
all network id like the above network command. I have set all three network which connect
Now go to router R2 and configure routing protocol the same as router R1. On router 2 you
must assign the network ids of all connected network the R2.
R2>enable
R2#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#network 10.10.10.0
R2(config-router)#network 192.168.10.0
R2(config-router)#network 192.168.1.0
R2(config-router)#
For ISP router, just enter the network id 200.100.10.0, because only one network
connected to ISP router.
ISP>enable
ISP#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
ISP(config)#router rip
ISP(config-router)#version 2
ISP(config-router)#network 200.100.10.0
R1>enable
R1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#router ospf 1
R1(config-router)#network 20.10.10.0 0.0.0.3 area 0
R1(config-router)#network 10.10.10.0 0.0.0.3 area 0
R1(config-router)#network 10.10.10.4 0.0.0.3 area 0
R1(config-router)#
The router OSPF command is enable OSPF routing on the router, and the 1 before OSFP is the
process ID of the OSFP Protocol. You can set different process id from “1-65535” for each
router.
The network command with network ID “network 20.10.10.0” is the network identifier, and
the “ 0.0.0.3″ is the wildcard mask of 20.10.10.0 network. Wildcard mask determine which
interfaces to advertise, because OSPF advertise interfaces, not networks.
Assignment Questions:
1. Explain Routing Protocols in Details?
2. Draw Classification Diagram of Routing Protocols?
3. Explain Packet Tracer Routing Commands?
4. Difference between RIP & OSPF?
5. Key differences between RIPv1 and RIPv2?
Conclusion:
Hence we have studied Packet Tracer Properly.