SlideShare a Scribd company logo
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1076
Configuration of Residential Network using
Enhanced Interior Gateway Routing Protocol
Khin Aye Thu, Soe Soe Mon, Thida Soe
Lecturer, Faculty of Computer Systems and Technologies, University of Computer Studies, Hinthada, Myanmar
How to cite this paper: Khin Aye Thu |
Soe Soe Mon | Thida Soe "Configuration of
Residential Network using Enhanced
Interior Gateway Routing Protocol"
Published in
International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-5, August
2019, pp.1076-1080,
https://doi.org/10.31142/ijtsrd26581
Copyright © 2019 by author(s) and
International Journalof Trendin Scientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
Commons Attribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
A residential area is used in housing predominates, as opposed to industrial
and commercial areas. These include single-family housing, multi-family
residential, or mobile homes. Enhanced Interior Gateway Routing Protocol
(EIGRP) is a network protocol that is routers exchange information more
efficiently than other protocols. EIGRP is an advanced distance-vectorrouting
protocol used on a computer network for automating routing decisions and
configuration. EIGRP is used to share routes on a router with other routers
within the same autonomous system. Unlike other routing protocols, such as
RIP, EIGRP only sends incremental updates, reducing the workload on the
router and the amount of data that needs to be transmitted. EIGRP evolved
from Interior Gateway Routing Protocol (IGRP) and routers using EIGRP and
IGRP can interoperate for selecting a route with one protocol. Using EIGRP, a
router keeps a copy of it's neighbor's routing tables. If it can't find a route to a
destination in one of these tables, it queries its neighbors forarouteandquery
their neighbors until a route is found. When a routing table entry changes in
one of the routers, it notifies its neighbors of the change only.
KEYWORDS: EIGRP, IGRP
INTRODUCTION
A computer network is a groupofcomputersystems and connected togetherfor
the purpose of sharing resources. The types of networks have many kinds. A
router is a network device and layer threeof theOSIreferencemodel.Routing is
sent IP packets from one network to another network.
Cisco Packet Tracer is software allows users to simulate the
complete network by adding and connecting different
network devices. The configuration of Cisco routers used a
command-line interface.
ROUTING ALGORITHM
A routing algorithm is a set of step-by-step operations used
to direct Internet traffic efficiently. When a packet of data
leaves its source, there are many different paths it can take
to its destination. The routingalgorithmis usedtodetermine
mathematically the best path to take.
Different routing algorithms use different methods to
determine the best path. A distance-vector algorithm
calculates a graph of all available routes determines the cost
of traveling to each immediate neighbor. This information is
collected for every node to create a distance table used to
determine the best path from any one node to another.
ROUTING TABLE
For a network router to know where to send packets of data
it receives, it uses a routing table. The routing table contains
a list of specific routing destinations, and when the router
receives a packet of data, it references the routing table to
know where to send that data. The routing table may also
contain information on how far each destination is from the
router. In essence, a routing table is a map for the router.
A routing table does not contain a list of all possible
destinations. Rather, it contains a list of destinations. Each
router contains this list and when it received packets of data
it directs that packet to the next link or hops in the network
until it reaches its final destination. The routing table
contains a list of IP addresses, Gatewayaddresses, andother
information.
Table 1: Addressing Table
Device Interface IP Address Subnet Mask Default Gateway
R1
G0/0 192.168.1.1 255.255.255.0 N/A
S0/0/0 (DCE) 10.1.1.1 255.255.255.252 N/A
S0/0/1 10.3.3.1 255.255.255.252 N/A
R2
G0/0 192.168.2.1 255.255.255.0 N/A
S0/0/0 10.1.1.2 255.255.255.252 N/A
S0/0/1 (DCE) 10.2.2.2 255.255.255.252 N/A
R3
G0/0 192.168.3.1 255.255.255.0 N/A
S0/0/0 10.3.3.2 255.255.255.252 N/A
S0/0/1 (DCE) 10.2.2.1 255.255.255.252 N/A
IJTSRD26581
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1077
PC-1 NIC 192.168.1.2 255.255.255.0 192.168.1.1
PC-2 NIC 192.168.1.3 255.255.255.0 192.168.1.1
PC-3 NIC 192.168.1.4 255.255.255.0 192.168.1.1
PC-4 NIC 192.168.2.2 255.255.255.0 192.168.2.1
PC-5 NIC 192.168.2.3 255.255.255.0 192.168.2.1
PC-6 NIC 192.168.2.4 255.255.255.0 192.168.2.1
PC-7 NIC 192.168.3.2 255.255.255.0 192.168.3.1
PC-8 NIC 192.168.3.3 255.255.255.0 192.168.3.1
PC-9 NIC 192.168.3.4 255.255.255.0 192.168.3.1
Figure1 Residential network created using cisco packet
tracer
Objectives
Part 1 : Build the Network and Configure Basic Device
Settings
Part 2 : Configure EIGRP Routing
Part 3 : Verify ERGIP Routing
Part 1 : Build the Network and Configure Basic Device
Settings
Step 1: Cable the network.
Step 2: Initialize and reload the routers.
Step 3: Configure basic settings for each router.
A. Disable DNS lookup.
B. Configure device name as shown in the topology.
C. Assign class as the privileged EXEC password.
D. Assign cisco as the console and cisco as vty passwords.
E. Configure a message of the day (MOTD) banner to warn
users that unauthorized access is prohibited.
F. Configure logging synchronous for the console line.
G. Configure the IP address listed in the Addressing Table
for all interfaces.
H. Set the clock rate for all DCE serial interfaces at 128000.
I. Copy the running configuration to the startup
configuration.
Router R1 Configuration:
A. Router(config)# no ip domain lookup
B. Router(config)#hostname R1
C. R1(config)#enable password execpass
D. R1(config)#line console 0
R1(config-line)#password conpass
R1(config-line)#login
R1(config)#exit
R1(config)#line vty 0 4
R1(config-line)#password vtypass
R1(config-line)#login
R1(config)#exit
E. R1(config)#banner motd #” unauthorized access is
prohibited”#
F. R1(config)#line console 0
R1(config-line)#logging synchronous
R1(config-line)#exit
G. R1(config)#interface g0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shut
R1(config)#exit
R1(config)#interface s0/0/0
R1(config-if)#ip address 10.1.1.1 255.255.255.252
H. R1(config-if)#clock rate 128000
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#interface s0/0/1
R1(config-if)#ip address 10.3.3.1 255.255.255.252
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#exit
I. R1# copy running-config startup-config
Router R2 Configuration:
A. Router(config)# no ip domain lookup
B. Router(config)#hostname R2
C. R2(config)#enable password execpass
D. R2(config)#line console 0
R2(config-line)#password conpass
R2(config-line)#login
R2(config)#exit
R2(config)#line vty 0 4
R2(config-line)#password vtypass
R2(config-line)#login
R2(config)#exit
E. R2(config)#banner motd #” unauthorized access is
prohibited”#
F. R2(config)#line console 0
R2(config-line)#logging synchronous
R2(config-line)#exit
G. R2(config)#interface g0/0
R2(config-if)#ip address 192.168.2.1 255.255.255.0
R2(config-if)#no shut
R2(config)#exit
R2(config)#interface s0/0/0
R2(config-if)#ip address 10.1.1.2 255.255.255.252
H. R2(config-if)#clock rate 128000
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#interface s0/0/1
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1078
R2(config-if)#ip address 10.2.2.2 255.255.255.252
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#exit
I. R2# copy running-config startup-config
Router R3 Configuration:
A. Router(config)# no ip domain lookup
B. Router(config)#hostname R3
C. R3(config)#enable password execpass
D. R3(config)#line console 0
R3(config-line)#password conpass
R3(config-line)#login
R3(config)#exit
R3(config)#line vty 0 4
R3(config-line)#password vtypass
R3(config-line)#login
R3(config)#exit
E. R3(config)#banner motd #” unauthorized access is
prohibited”#
F. R3(config)#line console 0
R3(config-line)#logging synchronous
R3(config-line)#exit
G. R3(config)#interface g0/0
R3(config-if)#ip address 192.168.3.1 255.255.255.0
R3(config-if)#no shut
R3(config)#exit
R3(config)#interface s0/0/0
R3(config-if)#ip address 10.3.3.2 255.255.255.252
H. R3(config-if)#clock rate 128000
R3(config-if)#no shut
R3(config-if)#exit
R3(config)#interface s0/0/1
R3(config-if)#ip address 10.2.2.1 255.255.255.252
R3(config-if)#no shut
R3(config-if)#exit
R3(config)#exit
I. R3# copy running-config startup-config
Step 4 : Configure PC hosts.
Step 5 : Test connectivity.
Part 2: Configure EIGRP Routing
Step 1 : Configure EIGRP on R1
R1(config)#router eigrp 10
R1(config-router)#network 192.168.1.0 0.0.0.255
R1(config-router)#network 10.1.1.0 0.0.0.3
R1(config-router)#network 10.3.3.0 0.0.0.3
R1(config-router)#exit
Step 2 :Configure EIGRP on R2
R2(config)#router eigrp 10
R2(config-router)#network 192.168.2.0 0.0.0.255
R2(config-router)#network 10.1.1.0 0.0.0.3
R2(config-router)#network 10.2.2.0 0.0.0.3
R2(config-router)#exit
Step 3 :Configure EIGRP on R3
R3(config)#router eigrp 10
R3(config-router)#network 192.168.3.0 0.0.0.255
R3(config-router)#network 10.3.3.0 0 0.0.0.3
R3(config-router)#network 10.2.2.0.0 0.0.0.3
R3(config-router)#exit
Part 3 : Verify ERGIP Routing
Step 1 : Verify EIGRP neighbors and routing information.
Step 2 : Verify EIGRP protocol setting.
Step 3 : Verify end-to-end connectivity.
Figure 2 Ping test from PC-1 to PC-4 and PC-5
Figure 3 Ping test from PC-1 to PC-6 and PC-7
Figure 4 Ping test from PC-1 to PC-8 and PC-9
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1079
Figure 5 Ping test from PC-2 to PC-4 and PC-5
Figure 6 Ping test from PC-2 to PC-6 and PC-7
Figure 7 Ping test from PC-2 to PC-8 and PC-9
Figure 8 Ping test from PC-3 to PC-4 and PC-5
Figure 9 Ping test from PC-3 to PC-6 and PC-7
Figure 10 Ping test from PC-3 to PC-8 and PC-9
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1080
Figure 11 ip eigrp neighbors and ip route eigrp for R1
Figure 12 ip eigrp neighbors and ip route eigrp for R2
Figure 13 ip eigrp neighbors and ip route eigrp for R3
CONCLUSION
EIGRP provided between networks for communication.
EIGRP is an enhanced version of IGRP. The same distance
vector technology found in IGRP used in EIGRP and the
underlying distance information remains unchanged. The
convergence properties and the operating efficiency of this
protocol have improved significantly. EIGRP allows for
improved architecturewhileretaining existinginvestmentin
IGRP.
REFERENCES
[1] CCNA Routing and Switching Courses, University of
Computer Studies, Mandalay, 2013.
[2] JAMES F.KUROSE, KEITH W.ROSS, “Routing
Algorithms” COMPUTER NETWORKING, A Top-Down
Approach.
[3] ANCHIT BANSAL, “Simulation of Route Redistribution
among RIP, EIGRP & OSPF Routing Protocols”
International Journal of Application or Innovation in
Engineering & Management (IJAIEM) ISSN2319-4847,
Volume 6, Issue 7, July 2017.
[4] Lalu Zazuli Azhar Mardedi Academy of Information
Management and Computer AIMC Mataram
“Developing Computer Network Based on EIGRP
Performance Comparison and OSPF” (IJACSA)
International Journal of Advanced Computer Science
and Applications, Vol. 6, No. 9, 2015.

More Related Content

What's hot

CCNP Lab Guide CCIE University
CCNP Lab Guide CCIE UniversityCCNP Lab Guide CCIE University
CCNP Lab Guide CCIE University
Salachudin Emir
 
Packet Tracer Tutorial # 1
Packet Tracer Tutorial # 1Packet Tracer Tutorial # 1
Packet Tracer Tutorial # 1
Abdul Basit
 
Networking Lab Report
Networking Lab ReportNetworking Lab Report
Networking Lab Report
Syed Ahmed Zaki
 
Network technology Paper 2
Network technology Paper 2Network technology Paper 2
Network technology Paper 2
Sachii Dosti
 
Packet tracer
Packet tracerPacket tracer
Packet tracer
Imdad Ullah
 
CCNA Packet Tracer 1.6.1
CCNA Packet Tracer 1.6.1CCNA Packet Tracer 1.6.1
CCNA Packet Tracer 1.6.1
Rafat Khandaker
 
M3 – cisco packet tracer lab
M3 – cisco packet tracer labM3 – cisco packet tracer lab
M3 – cisco packet tracer lab
Drew7Williams
 
ip v6
ip v6ip v6
Ccna 2 Final V4 1
Ccna 2 Final V4 1Ccna 2 Final V4 1
Ccna 2 Final V4 1
stigerj
 
lab1
lab1lab1
Day 17.1 nat pat (2)
Day 17.1 nat pat  (2)Day 17.1 nat pat  (2)
Day 17.1 nat pat (2)
CYBERINTELLIGENTS
 
Chapter11ccna
Chapter11ccnaChapter11ccna
Chapter11ccna
ernestlithur
 
Ethernet
EthernetEthernet
Ethernet
Sachii Dosti
 
Cisco CCNA module 10
Cisco CCNA module 10Cisco CCNA module 10
Cisco CCNA module 10
Anjar Septiawan
 
Lan Network with Redundancy.ppt
Lan Network with Redundancy.pptLan Network with Redundancy.ppt
Lan Network with Redundancy.ppt
Santanu Mukhopadhyay
 
Ipv6 Alp
Ipv6 AlpIpv6 Alp
Ipv6 Alp
Alp isik
 
Access list-cheatsheet
Access list-cheatsheetAccess list-cheatsheet
Access list-cheatsheet
vannastart
 
Packet Tracer Tutorial # 2
Packet Tracer Tutorial # 2Packet Tracer Tutorial # 2
Packet Tracer Tutorial # 2
Abdul Basit
 
CCNA Lab Guide
CCNA Lab GuideCCNA Lab Guide
CCNA Lab Guide
Salachudin Emir
 
Chapter10ccna
Chapter10ccnaChapter10ccna
Chapter10ccna
ernestlithur
 

What's hot (20)

CCNP Lab Guide CCIE University
CCNP Lab Guide CCIE UniversityCCNP Lab Guide CCIE University
CCNP Lab Guide CCIE University
 
Packet Tracer Tutorial # 1
Packet Tracer Tutorial # 1Packet Tracer Tutorial # 1
Packet Tracer Tutorial # 1
 
Networking Lab Report
Networking Lab ReportNetworking Lab Report
Networking Lab Report
 
Network technology Paper 2
Network technology Paper 2Network technology Paper 2
Network technology Paper 2
 
Packet tracer
Packet tracerPacket tracer
Packet tracer
 
CCNA Packet Tracer 1.6.1
CCNA Packet Tracer 1.6.1CCNA Packet Tracer 1.6.1
CCNA Packet Tracer 1.6.1
 
M3 – cisco packet tracer lab
M3 – cisco packet tracer labM3 – cisco packet tracer lab
M3 – cisco packet tracer lab
 
ip v6
ip v6ip v6
ip v6
 
Ccna 2 Final V4 1
Ccna 2 Final V4 1Ccna 2 Final V4 1
Ccna 2 Final V4 1
 
lab1
lab1lab1
lab1
 
Day 17.1 nat pat (2)
Day 17.1 nat pat  (2)Day 17.1 nat pat  (2)
Day 17.1 nat pat (2)
 
Chapter11ccna
Chapter11ccnaChapter11ccna
Chapter11ccna
 
Ethernet
EthernetEthernet
Ethernet
 
Cisco CCNA module 10
Cisco CCNA module 10Cisco CCNA module 10
Cisco CCNA module 10
 
Lan Network with Redundancy.ppt
Lan Network with Redundancy.pptLan Network with Redundancy.ppt
Lan Network with Redundancy.ppt
 
Ipv6 Alp
Ipv6 AlpIpv6 Alp
Ipv6 Alp
 
Access list-cheatsheet
Access list-cheatsheetAccess list-cheatsheet
Access list-cheatsheet
 
Packet Tracer Tutorial # 2
Packet Tracer Tutorial # 2Packet Tracer Tutorial # 2
Packet Tracer Tutorial # 2
 
CCNA Lab Guide
CCNA Lab GuideCCNA Lab Guide
CCNA Lab Guide
 
Chapter10ccna
Chapter10ccnaChapter10ccna
Chapter10ccna
 

Similar to Configuration of Residential Network using Enhanced Interior Gateway Routing Protocol

Network Level Redundancy for Campus LAN
Network Level Redundancy for Campus LANNetwork Level Redundancy for Campus LAN
Network Level Redundancy for Campus LAN
ijtsrd
 
All About Routers: Types Of Routers, Routing Table And IP Routing : Notes
All About Routers: Types Of Routers, Routing Table And IP Routing : NotesAll About Routers: Types Of Routers, Routing Table And IP Routing : Notes
All About Routers: Types Of Routers, Routing Table And IP Routing : Notes
Subhajit Sahu
 
Ch5
Ch5Ch5
35d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b8935d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b89
Abdisalam A. Mohamed
 
IRJET- Constructing Inter Domain Packet Filter for Controlling IP Spoofing
IRJET- Constructing Inter Domain Packet Filter for Controlling IP SpoofingIRJET- Constructing Inter Domain Packet Filter for Controlling IP Spoofing
IRJET- Constructing Inter Domain Packet Filter for Controlling IP Spoofing
IRJET Journal
 
IMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOT
IMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOTIMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOT
IMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOT
IRJET Journal
 
Respond 3 of your colleagues postings in one or more of the fol.docx
 Respond  3 of your colleagues postings in one or more of the fol.docx Respond  3 of your colleagues postings in one or more of the fol.docx
Respond 3 of your colleagues postings in one or more of the fol.docx
aryan532920
 
Analysis of RIP, EIGRP, and OSPF Routing Protocols in a Network
Analysis of RIP, EIGRP, and OSPF Routing Protocols in a NetworkAnalysis of RIP, EIGRP, and OSPF Routing Protocols in a Network
Analysis of RIP, EIGRP, and OSPF Routing Protocols in a Network
ijtsrd
 
Generating Router Level Topology Using Dns And Ip Identifier
Generating Router Level Topology Using Dns And Ip IdentifierGenerating Router Level Topology Using Dns And Ip Identifier
Generating Router Level Topology Using Dns And Ip Identifier
IJERA Editor
 
Arun project-Final
Arun project-FinalArun project-Final
Serial interface module for ethernet based applications
Serial interface module for ethernet based applicationsSerial interface module for ethernet based applications
Serial interface module for ethernet based applications
eSAT Journals
 
C0343015019
C0343015019C0343015019
C0343015019
ijceronline
 
CCNA
CCNACCNA
ccna project on topic company infrastructure
ccna project on topic company infrastructureccna project on topic company infrastructure
ccna project on topic company infrastructure
Prince Gautam
 
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIPVERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP
Editor IJMTER
 
Cisco Activity
Cisco ActivityCisco Activity
Cisco Activity
Ashley Davis
 
Wireless adhoc multi access networks
Wireless adhoc multi access networksWireless adhoc multi access networks
Wireless adhoc multi access networks
IJCNCJournal
 
Ccna1 presentation
Ccna1 presentationCcna1 presentation
Ccna1 presentation
Shantnu Matharoo
 
Chapter 5 Routing.pptx
Chapter 5 Routing.pptxChapter 5 Routing.pptx
Chapter 5 Routing.pptx
AyaanMohamed4
 
IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...
IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...
IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...
IRJET Journal
 

Similar to Configuration of Residential Network using Enhanced Interior Gateway Routing Protocol (20)

Network Level Redundancy for Campus LAN
Network Level Redundancy for Campus LANNetwork Level Redundancy for Campus LAN
Network Level Redundancy for Campus LAN
 
All About Routers: Types Of Routers, Routing Table And IP Routing : Notes
All About Routers: Types Of Routers, Routing Table And IP Routing : NotesAll About Routers: Types Of Routers, Routing Table And IP Routing : Notes
All About Routers: Types Of Routers, Routing Table And IP Routing : Notes
 
Ch5
Ch5Ch5
Ch5
 
35d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b8935d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b89
 
IRJET- Constructing Inter Domain Packet Filter for Controlling IP Spoofing
IRJET- Constructing Inter Domain Packet Filter for Controlling IP SpoofingIRJET- Constructing Inter Domain Packet Filter for Controlling IP Spoofing
IRJET- Constructing Inter Domain Packet Filter for Controlling IP Spoofing
 
IMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOT
IMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOTIMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOT
IMPLEMENTATION OF NETWORK DESIGN FOR UNIVERSITIES WITH IOT
 
Respond 3 of your colleagues postings in one or more of the fol.docx
 Respond  3 of your colleagues postings in one or more of the fol.docx Respond  3 of your colleagues postings in one or more of the fol.docx
Respond 3 of your colleagues postings in one or more of the fol.docx
 
Analysis of RIP, EIGRP, and OSPF Routing Protocols in a Network
Analysis of RIP, EIGRP, and OSPF Routing Protocols in a NetworkAnalysis of RIP, EIGRP, and OSPF Routing Protocols in a Network
Analysis of RIP, EIGRP, and OSPF Routing Protocols in a Network
 
Generating Router Level Topology Using Dns And Ip Identifier
Generating Router Level Topology Using Dns And Ip IdentifierGenerating Router Level Topology Using Dns And Ip Identifier
Generating Router Level Topology Using Dns And Ip Identifier
 
Arun project-Final
Arun project-FinalArun project-Final
Arun project-Final
 
Serial interface module for ethernet based applications
Serial interface module for ethernet based applicationsSerial interface module for ethernet based applications
Serial interface module for ethernet based applications
 
C0343015019
C0343015019C0343015019
C0343015019
 
CCNA
CCNACCNA
CCNA
 
ccna project on topic company infrastructure
ccna project on topic company infrastructureccna project on topic company infrastructure
ccna project on topic company infrastructure
 
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIPVERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP
 
Cisco Activity
Cisco ActivityCisco Activity
Cisco Activity
 
Wireless adhoc multi access networks
Wireless adhoc multi access networksWireless adhoc multi access networks
Wireless adhoc multi access networks
 
Ccna1 presentation
Ccna1 presentationCcna1 presentation
Ccna1 presentation
 
Chapter 5 Routing.pptx
Chapter 5 Routing.pptxChapter 5 Routing.pptx
Chapter 5 Routing.pptx
 
IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...
IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...
IRJET- Assessment of Network Protocol Packet Analysis in IPV4 and IPV6 on Loc...
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
ijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
ijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
ijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
ijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
ijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
ijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
ijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 

Recently uploaded (20)

Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 

Configuration of Residential Network using Enhanced Interior Gateway Routing Protocol

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1076 Configuration of Residential Network using Enhanced Interior Gateway Routing Protocol Khin Aye Thu, Soe Soe Mon, Thida Soe Lecturer, Faculty of Computer Systems and Technologies, University of Computer Studies, Hinthada, Myanmar How to cite this paper: Khin Aye Thu | Soe Soe Mon | Thida Soe "Configuration of Residential Network using Enhanced Interior Gateway Routing Protocol" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019, pp.1076-1080, https://doi.org/10.31142/ijtsrd26581 Copyright © 2019 by author(s) and International Journalof Trendin Scientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT A residential area is used in housing predominates, as opposed to industrial and commercial areas. These include single-family housing, multi-family residential, or mobile homes. Enhanced Interior Gateway Routing Protocol (EIGRP) is a network protocol that is routers exchange information more efficiently than other protocols. EIGRP is an advanced distance-vectorrouting protocol used on a computer network for automating routing decisions and configuration. EIGRP is used to share routes on a router with other routers within the same autonomous system. Unlike other routing protocols, such as RIP, EIGRP only sends incremental updates, reducing the workload on the router and the amount of data that needs to be transmitted. EIGRP evolved from Interior Gateway Routing Protocol (IGRP) and routers using EIGRP and IGRP can interoperate for selecting a route with one protocol. Using EIGRP, a router keeps a copy of it's neighbor's routing tables. If it can't find a route to a destination in one of these tables, it queries its neighbors forarouteandquery their neighbors until a route is found. When a routing table entry changes in one of the routers, it notifies its neighbors of the change only. KEYWORDS: EIGRP, IGRP INTRODUCTION A computer network is a groupofcomputersystems and connected togetherfor the purpose of sharing resources. The types of networks have many kinds. A router is a network device and layer threeof theOSIreferencemodel.Routing is sent IP packets from one network to another network. Cisco Packet Tracer is software allows users to simulate the complete network by adding and connecting different network devices. The configuration of Cisco routers used a command-line interface. ROUTING ALGORITHM A routing algorithm is a set of step-by-step operations used to direct Internet traffic efficiently. When a packet of data leaves its source, there are many different paths it can take to its destination. The routingalgorithmis usedtodetermine mathematically the best path to take. Different routing algorithms use different methods to determine the best path. A distance-vector algorithm calculates a graph of all available routes determines the cost of traveling to each immediate neighbor. This information is collected for every node to create a distance table used to determine the best path from any one node to another. ROUTING TABLE For a network router to know where to send packets of data it receives, it uses a routing table. The routing table contains a list of specific routing destinations, and when the router receives a packet of data, it references the routing table to know where to send that data. The routing table may also contain information on how far each destination is from the router. In essence, a routing table is a map for the router. A routing table does not contain a list of all possible destinations. Rather, it contains a list of destinations. Each router contains this list and when it received packets of data it directs that packet to the next link or hops in the network until it reaches its final destination. The routing table contains a list of IP addresses, Gatewayaddresses, andother information. Table 1: Addressing Table Device Interface IP Address Subnet Mask Default Gateway R1 G0/0 192.168.1.1 255.255.255.0 N/A S0/0/0 (DCE) 10.1.1.1 255.255.255.252 N/A S0/0/1 10.3.3.1 255.255.255.252 N/A R2 G0/0 192.168.2.1 255.255.255.0 N/A S0/0/0 10.1.1.2 255.255.255.252 N/A S0/0/1 (DCE) 10.2.2.2 255.255.255.252 N/A R3 G0/0 192.168.3.1 255.255.255.0 N/A S0/0/0 10.3.3.2 255.255.255.252 N/A S0/0/1 (DCE) 10.2.2.1 255.255.255.252 N/A IJTSRD26581
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1077 PC-1 NIC 192.168.1.2 255.255.255.0 192.168.1.1 PC-2 NIC 192.168.1.3 255.255.255.0 192.168.1.1 PC-3 NIC 192.168.1.4 255.255.255.0 192.168.1.1 PC-4 NIC 192.168.2.2 255.255.255.0 192.168.2.1 PC-5 NIC 192.168.2.3 255.255.255.0 192.168.2.1 PC-6 NIC 192.168.2.4 255.255.255.0 192.168.2.1 PC-7 NIC 192.168.3.2 255.255.255.0 192.168.3.1 PC-8 NIC 192.168.3.3 255.255.255.0 192.168.3.1 PC-9 NIC 192.168.3.4 255.255.255.0 192.168.3.1 Figure1 Residential network created using cisco packet tracer Objectives Part 1 : Build the Network and Configure Basic Device Settings Part 2 : Configure EIGRP Routing Part 3 : Verify ERGIP Routing Part 1 : Build the Network and Configure Basic Device Settings Step 1: Cable the network. Step 2: Initialize and reload the routers. Step 3: Configure basic settings for each router. A. Disable DNS lookup. B. Configure device name as shown in the topology. C. Assign class as the privileged EXEC password. D. Assign cisco as the console and cisco as vty passwords. E. Configure a message of the day (MOTD) banner to warn users that unauthorized access is prohibited. F. Configure logging synchronous for the console line. G. Configure the IP address listed in the Addressing Table for all interfaces. H. Set the clock rate for all DCE serial interfaces at 128000. I. Copy the running configuration to the startup configuration. Router R1 Configuration: A. Router(config)# no ip domain lookup B. Router(config)#hostname R1 C. R1(config)#enable password execpass D. R1(config)#line console 0 R1(config-line)#password conpass R1(config-line)#login R1(config)#exit R1(config)#line vty 0 4 R1(config-line)#password vtypass R1(config-line)#login R1(config)#exit E. R1(config)#banner motd #” unauthorized access is prohibited”# F. R1(config)#line console 0 R1(config-line)#logging synchronous R1(config-line)#exit G. R1(config)#interface g0/0 R1(config-if)#ip address 192.168.1.1 255.255.255.0 R1(config-if)#no shut R1(config)#exit R1(config)#interface s0/0/0 R1(config-if)#ip address 10.1.1.1 255.255.255.252 H. R1(config-if)#clock rate 128000 R1(config-if)#no shut R1(config-if)#exit R1(config)#interface s0/0/1 R1(config-if)#ip address 10.3.3.1 255.255.255.252 R1(config-if)#no shut R1(config-if)#exit R1(config)#exit I. R1# copy running-config startup-config Router R2 Configuration: A. Router(config)# no ip domain lookup B. Router(config)#hostname R2 C. R2(config)#enable password execpass D. R2(config)#line console 0 R2(config-line)#password conpass R2(config-line)#login R2(config)#exit R2(config)#line vty 0 4 R2(config-line)#password vtypass R2(config-line)#login R2(config)#exit E. R2(config)#banner motd #” unauthorized access is prohibited”# F. R2(config)#line console 0 R2(config-line)#logging synchronous R2(config-line)#exit G. R2(config)#interface g0/0 R2(config-if)#ip address 192.168.2.1 255.255.255.0 R2(config-if)#no shut R2(config)#exit R2(config)#interface s0/0/0 R2(config-if)#ip address 10.1.1.2 255.255.255.252 H. R2(config-if)#clock rate 128000 R2(config-if)#no shut R2(config-if)#exit R2(config)#interface s0/0/1
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1078 R2(config-if)#ip address 10.2.2.2 255.255.255.252 R2(config-if)#no shut R2(config-if)#exit R2(config)#exit I. R2# copy running-config startup-config Router R3 Configuration: A. Router(config)# no ip domain lookup B. Router(config)#hostname R3 C. R3(config)#enable password execpass D. R3(config)#line console 0 R3(config-line)#password conpass R3(config-line)#login R3(config)#exit R3(config)#line vty 0 4 R3(config-line)#password vtypass R3(config-line)#login R3(config)#exit E. R3(config)#banner motd #” unauthorized access is prohibited”# F. R3(config)#line console 0 R3(config-line)#logging synchronous R3(config-line)#exit G. R3(config)#interface g0/0 R3(config-if)#ip address 192.168.3.1 255.255.255.0 R3(config-if)#no shut R3(config)#exit R3(config)#interface s0/0/0 R3(config-if)#ip address 10.3.3.2 255.255.255.252 H. R3(config-if)#clock rate 128000 R3(config-if)#no shut R3(config-if)#exit R3(config)#interface s0/0/1 R3(config-if)#ip address 10.2.2.1 255.255.255.252 R3(config-if)#no shut R3(config-if)#exit R3(config)#exit I. R3# copy running-config startup-config Step 4 : Configure PC hosts. Step 5 : Test connectivity. Part 2: Configure EIGRP Routing Step 1 : Configure EIGRP on R1 R1(config)#router eigrp 10 R1(config-router)#network 192.168.1.0 0.0.0.255 R1(config-router)#network 10.1.1.0 0.0.0.3 R1(config-router)#network 10.3.3.0 0.0.0.3 R1(config-router)#exit Step 2 :Configure EIGRP on R2 R2(config)#router eigrp 10 R2(config-router)#network 192.168.2.0 0.0.0.255 R2(config-router)#network 10.1.1.0 0.0.0.3 R2(config-router)#network 10.2.2.0 0.0.0.3 R2(config-router)#exit Step 3 :Configure EIGRP on R3 R3(config)#router eigrp 10 R3(config-router)#network 192.168.3.0 0.0.0.255 R3(config-router)#network 10.3.3.0 0 0.0.0.3 R3(config-router)#network 10.2.2.0.0 0.0.0.3 R3(config-router)#exit Part 3 : Verify ERGIP Routing Step 1 : Verify EIGRP neighbors and routing information. Step 2 : Verify EIGRP protocol setting. Step 3 : Verify end-to-end connectivity. Figure 2 Ping test from PC-1 to PC-4 and PC-5 Figure 3 Ping test from PC-1 to PC-6 and PC-7 Figure 4 Ping test from PC-1 to PC-8 and PC-9
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1079 Figure 5 Ping test from PC-2 to PC-4 and PC-5 Figure 6 Ping test from PC-2 to PC-6 and PC-7 Figure 7 Ping test from PC-2 to PC-8 and PC-9 Figure 8 Ping test from PC-3 to PC-4 and PC-5 Figure 9 Ping test from PC-3 to PC-6 and PC-7 Figure 10 Ping test from PC-3 to PC-8 and PC-9
  • 5. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26581 | Volume – 3 | Issue – 5 | July - August 2019 Page 1080 Figure 11 ip eigrp neighbors and ip route eigrp for R1 Figure 12 ip eigrp neighbors and ip route eigrp for R2 Figure 13 ip eigrp neighbors and ip route eigrp for R3 CONCLUSION EIGRP provided between networks for communication. EIGRP is an enhanced version of IGRP. The same distance vector technology found in IGRP used in EIGRP and the underlying distance information remains unchanged. The convergence properties and the operating efficiency of this protocol have improved significantly. EIGRP allows for improved architecturewhileretaining existinginvestmentin IGRP. REFERENCES [1] CCNA Routing and Switching Courses, University of Computer Studies, Mandalay, 2013. [2] JAMES F.KUROSE, KEITH W.ROSS, “Routing Algorithms” COMPUTER NETWORKING, A Top-Down Approach. [3] ANCHIT BANSAL, “Simulation of Route Redistribution among RIP, EIGRP & OSPF Routing Protocols” International Journal of Application or Innovation in Engineering & Management (IJAIEM) ISSN2319-4847, Volume 6, Issue 7, July 2017. [4] Lalu Zazuli Azhar Mardedi Academy of Information Management and Computer AIMC Mataram “Developing Computer Network Based on EIGRP Performance Comparison and OSPF” (IJACSA) International Journal of Advanced Computer Science and Applications, Vol. 6, No. 9, 2015.