SlideShare ist ein Scribd-Unternehmen logo
1 von 15
MAIN PROJECT # 1

SUMMITED BY:
OM PRAKASH
What is IP Routing?

 Routing is the act of moving information (data
packets) across an inter-network from a source node
to a destination node.
 Routing decisions for a packet is taken by the routers
on the basis of the routing tables
 Routing tables of the routers are either provided to
the routers by the Network Admins or that is
generated by the routers it self by using dynamic
routing techniques
WHAT IS IGPs ?

 IGP stands for Interior Gateway Protocols, is the set
consists of protocols could be implemented on the
network owned by some Autonomous System (AS) or
firm ( Privately owned)
 For the transfer of packets between different ASs we
require Exterior Gateway Protocols e.g. BGP
 The IGPs set consists protocols like OSPF,RIP,IGRP
EIGRP etc.
About OSPF

 The Open Shortest Path First (OSPF) protocol is an
Interior Gateway Protocol used to distribute routing
information within a single Autonomous System
 It is defined in Reference For Comments document
(RFC 2328)
 OSPF is a link-state routing protocol, which means
that changes in routing are based on the status and
speeds of the physical links in the networked
routers, and changes are immediately propagated to
every router on the network
Why OSPF

 It is most used IGP
 It has several features like:
• Consists of areas and autonomous systems
• Minimizes routing update traffic
• Allows scalability
• Supports VLSM/CIDR
• Has unlimited hop count
• Allows multi-vendor deployment (open standard)
Problem Statement

 Lets consider that we have to configure a network
for a medium level firm
 The firm consists three CISCO ROUTERS of 2600
series (with IOS v-12) which are to be configured
using the OSPF v2
 Sub-networks for different departments finance,
marketing, sales and HR has to be created(Routers
R1 and R2 )
 There is also a Wi-Fi network to be configured for
Wi-Fi devices (Router R3)
Problem Scenario

About Cisco's Packet Tracer


 Cisco Packet Tracer is a powerful network simulation
program, widely used for training, research and
education (using v5.3.2)
 As it is not feasible to use actual physical router just for
experimental purposes, so we require some simulator to
do the leanings in which we are primarily interested
 There are benefits of using the simulator as well like we
can approximate the behavior of our system in actual
scenario
Configurations on Routers






















Configurations on the Router R0
Router>
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R0
R0(config)#
R0(config)#router ospf 12
R0(config-router)#network 192.168.1.1 0.0.0.0 area
R0(config-router)#network 192.168.2.1 0.0.0.0 area 0
R0(config-router)#network 192.168.3.1 0.0.0.0 area 0
R0(config-router)#network 192.168.4.1 0.0.0.0 area 0
R0(config-router)#exit
R0(config)#
R0(config)#ip dhcp pool admin
R0(dhcp-config)# default-router 192.168.3.1
R0(dhcp-config)# dns-server 192.168.4.2
R0(dhcp-config)#exit
R0(config)#write



















Cont…


Configurations on the Router R1
R1(config)#
R1(config)#router ospf 12
R1(config-router)#network 192.168.1.2 0.0.0.0 area 0
R1(config-router)#network 192.168.10.0 0.0.0.255 area 0
R1(config-router)#network 192.168.11.0 0.0.0.255 area 0
R1(config-router)#exit
R1(config)#
R0(config)#write
Configurations on the Router R2
R2(config)#
R2(config)#router ospf 12
R2(config-router)#network 192.168.1.2 0.0.0.0 area 0
R2(config-router)#network 192.168.10.0 0.0.0.255 area 0
R2(config-router)#network 192.168.11.0 0.0.0.255 area 0
R2(config-router)#exit
R2(config)#
R0(config)#write






















Results


The routing table of router R0 :
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
192.168.1.0/29 is subnetted, 1 subnets
C 192.168.1.0 is directly connected, FastEthernet1/0
192.168.2.0/29 is subnetted, 1 subnets
C 192.168.2.0 is directly connected, FastEthernet2/0
C 192.168.3.0/24 is directly connected, FastEthernet3/0
192.168.4.0/29 is subnetted, 1 subnets
C 192.168.4.0 is directly connected, FastEthernet0/0
O 192.168.10.0/24 [110/2] via 192.168.1.2, 05:45:31, FastEthernet1/0
O 192.168.11.0/24 [110/2] via 192.168.1.2, 05:45:31, FastEthernet1/0
O 192.168.20.0/24 [110/2] via 192.168.2.2, 05:45:31, FastEthernet2/0
O 192.168.21.0/24 [110/2] via 192.168.2.2, 05:45:31, FastEthernet2/0
R0#
Cont…















The routing table of router R1 :
192.168.1.0/29 is subnetted, 1 subnets
C 192.168.1.0 is directly connected, FastEthernet0/0
192.168.2.0/29 is subnetted, 1 subnets
O 192.168.2.0 [110/2] via 192.168.1.1, 02:33:30, FastEthernet0/0
O 192.168.3.0/24 [110/2] via 192.168.1.1, 05:51:59, FastEthernet0/0
192.168.4.0/29 is subnetted, 1 subnets
O 192.168.4.0 [110/2] via 192.168.1.1, 05:51:59, FastEthernet0/0
C 192.168.10.0/24 is directly connected, FastEthernet1/0
C 192.168.11.0/24 is directly connected, FastEthernet2/0
O 192.168.20.0/24 [110/3] via 192.168.1.1, 02:33:30, FastEthernet0/0
O 192.168.21.0/24 [110/3] via 192.168.1.1, 02:33:30, FastEthernet0/0
R1#














Cont…


The routing table of router R2 :
192.168.1.0/29 is subnetted, 1 subnets
O 192.168.1.0 [110/2] via 192.168.2.1, 05:55:04, FastEthernet0/0
192.168.2.0/29 is subnetted, 1 subnets
C 192.168.2.0 is directly connected, FastEthernet0/0
O 192.168.3.0/24 [110/2] via 192.168.2.1, 05:55:04, FastEthernet0/0
192.168.4.0/29 is subnetted, 1 subnets
O 192.168.4.0 [110/2] via 192.168.2.1, 05:55:04, FastEthernet0/0
O 192.168.10.0/24 [110/3] via 192.168.2.1, 05:55:04, FastEthernet0/0
O 192.168.11.0/24 [110/3] via 192.168.2.1, 05:55:04, FastEthernet0/0
C 192.168.20.0/24 is directly connected, FastEthernet1/0
C 192.168.21.0/24 is directly connected, FastEthernet2/0
R2#
Verification of Results

 Ping from Tablet PC0 to PC0:











PC>ping 192.168.10.2
Pinging 192.168.10.2 with 32 bytes of data:
Reply from 192.168.10.2: bytes=32 time=266ms TTL=126
Reply from 192.168.10.2: bytes=32 time=173ms TTL=126
Reply from 192.168.10.2: bytes=32 time=156ms TTL=126
Reply from 192.168.10.2: bytes=32 time=172ms TTL=126
Ping statistics for 192.168.10.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 156ms, Maximum = 266ms, Average = 191ms


THANKING
YOU

Weitere ähnliche Inhalte

Was ist angesagt?

Cisco packet tracer router
Cisco packet tracer  routerCisco packet tracer  router
Cisco packet tracer routerrishi ram khanal
 
CCNA ppt Day 1
CCNA ppt Day 1CCNA ppt Day 1
CCNA ppt Day 1VISHNU N
 
Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Alan Mark
 
Data communication & telecommunication
Data communication & telecommunicationData communication & telecommunication
Data communication & telecommunicationDhani Ahmad
 
NAT (network address translation) & PAT (port address translation)
NAT (network address translation) & PAT (port address translation)NAT (network address translation) & PAT (port address translation)
NAT (network address translation) & PAT (port address translation)Netwax Lab
 
IOS Cisco - Cheat sheets
IOS Cisco - Cheat sheetsIOS Cisco - Cheat sheets
IOS Cisco - Cheat sheetsAlejandro Marin
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01Irsandi Hasan
 
Ncat ccna cheat sheet
Ncat ccna cheat sheetNcat ccna cheat sheet
Ncat ccna cheat sheetEZREIG OMAR
 
Chapter 15 : routing concepts
Chapter 15 : routing conceptsChapter 15 : routing concepts
Chapter 15 : routing conceptsteknetir
 
Advanced computer network lab manual (practicals in Cisco Packet tracer)
Advanced computer network lab manual (practicals in Cisco Packet tracer)Advanced computer network lab manual (practicals in Cisco Packet tracer)
Advanced computer network lab manual (practicals in Cisco Packet tracer)VrundaBhavsar
 

Was ist angesagt? (20)

Cisco packet tracer router
Cisco packet tracer  routerCisco packet tracer  router
Cisco packet tracer router
 
CCNA ppt Day 1
CCNA ppt Day 1CCNA ppt Day 1
CCNA ppt Day 1
 
Routing
RoutingRouting
Routing
 
Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)
 
IP Routing
IP RoutingIP Routing
IP Routing
 
Ccna introduction
Ccna introductionCcna introduction
Ccna introduction
 
Bgp protocol
Bgp protocolBgp protocol
Bgp protocol
 
Ccna
CcnaCcna
Ccna
 
Data communication & telecommunication
Data communication & telecommunicationData communication & telecommunication
Data communication & telecommunication
 
NAT (network address translation) & PAT (port address translation)
NAT (network address translation) & PAT (port address translation)NAT (network address translation) & PAT (port address translation)
NAT (network address translation) & PAT (port address translation)
 
CCNA CheatSheet
CCNA CheatSheetCCNA CheatSheet
CCNA CheatSheet
 
IOS Cisco - Cheat sheets
IOS Cisco - Cheat sheetsIOS Cisco - Cheat sheets
IOS Cisco - Cheat sheets
 
Ccna training report
Ccna training reportCcna training report
Ccna training report
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01
 
Ipv4 ppt
Ipv4 pptIpv4 ppt
Ipv4 ppt
 
Ncat ccna cheat sheet
Ncat ccna cheat sheetNcat ccna cheat sheet
Ncat ccna cheat sheet
 
Dynamic routing protocols (CCNA)
Dynamic routing protocols (CCNA)Dynamic routing protocols (CCNA)
Dynamic routing protocols (CCNA)
 
TCP/IP FRAME FORMAT
TCP/IP FRAME FORMATTCP/IP FRAME FORMAT
TCP/IP FRAME FORMAT
 
Chapter 15 : routing concepts
Chapter 15 : routing conceptsChapter 15 : routing concepts
Chapter 15 : routing concepts
 
Advanced computer network lab manual (practicals in Cisco Packet tracer)
Advanced computer network lab manual (practicals in Cisco Packet tracer)Advanced computer network lab manual (practicals in Cisco Packet tracer)
Advanced computer network lab manual (practicals in Cisco Packet tracer)
 

Andere mochten auch

Matlab Assignment JK Institute
Matlab Assignment JK InstituteMatlab Assignment JK Institute
Matlab Assignment JK InstituteOm Prakash
 
Digitized images and
Digitized images andDigitized images and
Digitized images andAshish Kumar
 
process management
 process management process management
process managementAshish Kumar
 
Computer architecture
Computer architecture Computer architecture
Computer architecture Ashish Kumar
 
video compression techique
video compression techiquevideo compression techique
video compression techiqueAshish Kumar
 
remote procedure calls
  remote procedure calls  remote procedure calls
remote procedure callsAshish Kumar
 
distributed shared memory
 distributed shared memory distributed shared memory
distributed shared memoryAshish Kumar
 

Andere mochten auch (12)

Cisco project ideas
Cisco   project ideasCisco   project ideas
Cisco project ideas
 
Matlab Assignment JK Institute
Matlab Assignment JK InstituteMatlab Assignment JK Institute
Matlab Assignment JK Institute
 
Data structures
Data structuresData structures
Data structures
 
Ospf
OspfOspf
Ospf
 
Digitized images and
Digitized images andDigitized images and
Digitized images and
 
message passing
 message passing message passing
message passing
 
process management
 process management process management
process management
 
Computer architecture
Computer architecture Computer architecture
Computer architecture
 
video compression techique
video compression techiquevideo compression techique
video compression techique
 
remote procedure calls
  remote procedure calls  remote procedure calls
remote procedure calls
 
Compression
CompressionCompression
Compression
 
distributed shared memory
 distributed shared memory distributed shared memory
distributed shared memory
 

Ähnlich wie project on OSPF

Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructionstrayyoo
 
1164 Routers
1164 Routers1164 Routers
1164 Routerstechbed
 
Chapter 5 Routing.pptx
Chapter 5 Routing.pptxChapter 5 Routing.pptx
Chapter 5 Routing.pptxAyaanMohamed4
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010irbas
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010irbas
 
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 : NotesSubhajit Sahu
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Saurav Pandey
 
Chapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdfChapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdfBuntha Chhay
 
Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011Dân Chơi
 
Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011Dân Chơi
 
ConfigureTwo networks principle
ConfigureTwo networks principleConfigureTwo networks principle
ConfigureTwo networks principleDrAlneami
 
Practice exam #2
Practice exam #2Practice exam #2
Practice exam #2Kris Mofu
 
Networking in college
Networking in collegeNetworking in college
Networking in collegeHarpreet Gaba
 

Ähnlich wie project on OSPF (20)

Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructions
 
1164 Routers
1164 Routers1164 Routers
1164 Routers
 
Netw204 Quiz Answers Essay
Netw204 Quiz Answers EssayNetw204 Quiz Answers Essay
Netw204 Quiz Answers Essay
 
Chapter 5 Routing.pptx
Chapter 5 Routing.pptxChapter 5 Routing.pptx
Chapter 5 Routing.pptx
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010
 
06 tk 1073 network layer
06   tk 1073 network layer06   tk 1073 network layer
06 tk 1073 network layer
 
Ch5
Ch5Ch5
Ch5
 
35d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b8935d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b89
 
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
 
Dynamic routing
Dynamic routingDynamic routing
Dynamic routing
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0
 
Chapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdfChapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdf
 
Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011
 
Group 1
Group 1Group 1
Group 1
 
Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011Ccna 2 chapter 1 v4.0 answers 2011
Ccna 2 chapter 1 v4.0 answers 2011
 
ConfigureTwo networks principle
ConfigureTwo networks principleConfigureTwo networks principle
ConfigureTwo networks principle
 
Practice exam #2
Practice exam #2Practice exam #2
Practice exam #2
 
Networking in college
Networking in collegeNetworking in college
Networking in college
 
Clase 4. Routing IP.pdf
Clase 4. Routing IP.pdfClase 4. Routing IP.pdf
Clase 4. Routing IP.pdf
 

Kürzlich hochgeladen

Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMKumar Satyam
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard37
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 

Kürzlich hochgeladen (20)

Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 

project on OSPF

  • 1. MAIN PROJECT # 1 SUMMITED BY: OM PRAKASH
  • 2. What is IP Routing?   Routing is the act of moving information (data packets) across an inter-network from a source node to a destination node.  Routing decisions for a packet is taken by the routers on the basis of the routing tables  Routing tables of the routers are either provided to the routers by the Network Admins or that is generated by the routers it self by using dynamic routing techniques
  • 3. WHAT IS IGPs ?   IGP stands for Interior Gateway Protocols, is the set consists of protocols could be implemented on the network owned by some Autonomous System (AS) or firm ( Privately owned)  For the transfer of packets between different ASs we require Exterior Gateway Protocols e.g. BGP  The IGPs set consists protocols like OSPF,RIP,IGRP EIGRP etc.
  • 4. About OSPF   The Open Shortest Path First (OSPF) protocol is an Interior Gateway Protocol used to distribute routing information within a single Autonomous System  It is defined in Reference For Comments document (RFC 2328)  OSPF is a link-state routing protocol, which means that changes in routing are based on the status and speeds of the physical links in the networked routers, and changes are immediately propagated to every router on the network
  • 5. Why OSPF   It is most used IGP  It has several features like: • Consists of areas and autonomous systems • Minimizes routing update traffic • Allows scalability • Supports VLSM/CIDR • Has unlimited hop count • Allows multi-vendor deployment (open standard)
  • 6. Problem Statement   Lets consider that we have to configure a network for a medium level firm  The firm consists three CISCO ROUTERS of 2600 series (with IOS v-12) which are to be configured using the OSPF v2  Sub-networks for different departments finance, marketing, sales and HR has to be created(Routers R1 and R2 )  There is also a Wi-Fi network to be configured for Wi-Fi devices (Router R3)
  • 8. About Cisco's Packet Tracer   Cisco Packet Tracer is a powerful network simulation program, widely used for training, research and education (using v5.3.2)  As it is not feasible to use actual physical router just for experimental purposes, so we require some simulator to do the leanings in which we are primarily interested  There are benefits of using the simulator as well like we can approximate the behavior of our system in actual scenario
  • 9. Configurations on Routers                     Configurations on the Router R0 Router> Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R0 R0(config)# R0(config)#router ospf 12 R0(config-router)#network 192.168.1.1 0.0.0.0 area R0(config-router)#network 192.168.2.1 0.0.0.0 area 0 R0(config-router)#network 192.168.3.1 0.0.0.0 area 0 R0(config-router)#network 192.168.4.1 0.0.0.0 area 0 R0(config-router)#exit R0(config)# R0(config)#ip dhcp pool admin R0(dhcp-config)# default-router 192.168.3.1 R0(dhcp-config)# dns-server 192.168.4.2 R0(dhcp-config)#exit R0(config)#write
  • 10.                   Cont…  Configurations on the Router R1 R1(config)# R1(config)#router ospf 12 R1(config-router)#network 192.168.1.2 0.0.0.0 area 0 R1(config-router)#network 192.168.10.0 0.0.0.255 area 0 R1(config-router)#network 192.168.11.0 0.0.0.255 area 0 R1(config-router)#exit R1(config)# R0(config)#write Configurations on the Router R2 R2(config)# R2(config)#router ospf 12 R2(config-router)#network 192.168.1.2 0.0.0.0 area 0 R2(config-router)#network 192.168.10.0 0.0.0.255 area 0 R2(config-router)#network 192.168.11.0 0.0.0.255 area 0 R2(config-router)#exit R2(config)# R0(config)#write
  • 11.                      Results  The routing table of router R0 : Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set 192.168.1.0/29 is subnetted, 1 subnets C 192.168.1.0 is directly connected, FastEthernet1/0 192.168.2.0/29 is subnetted, 1 subnets C 192.168.2.0 is directly connected, FastEthernet2/0 C 192.168.3.0/24 is directly connected, FastEthernet3/0 192.168.4.0/29 is subnetted, 1 subnets C 192.168.4.0 is directly connected, FastEthernet0/0 O 192.168.10.0/24 [110/2] via 192.168.1.2, 05:45:31, FastEthernet1/0 O 192.168.11.0/24 [110/2] via 192.168.1.2, 05:45:31, FastEthernet1/0 O 192.168.20.0/24 [110/2] via 192.168.2.2, 05:45:31, FastEthernet2/0 O 192.168.21.0/24 [110/2] via 192.168.2.2, 05:45:31, FastEthernet2/0 R0#
  • 12. Cont…               The routing table of router R1 : 192.168.1.0/29 is subnetted, 1 subnets C 192.168.1.0 is directly connected, FastEthernet0/0 192.168.2.0/29 is subnetted, 1 subnets O 192.168.2.0 [110/2] via 192.168.1.1, 02:33:30, FastEthernet0/0 O 192.168.3.0/24 [110/2] via 192.168.1.1, 05:51:59, FastEthernet0/0 192.168.4.0/29 is subnetted, 1 subnets O 192.168.4.0 [110/2] via 192.168.1.1, 05:51:59, FastEthernet0/0 C 192.168.10.0/24 is directly connected, FastEthernet1/0 C 192.168.11.0/24 is directly connected, FastEthernet2/0 O 192.168.20.0/24 [110/3] via 192.168.1.1, 02:33:30, FastEthernet0/0 O 192.168.21.0/24 [110/3] via 192.168.1.1, 02:33:30, FastEthernet0/0 R1#
  • 13.              Cont…  The routing table of router R2 : 192.168.1.0/29 is subnetted, 1 subnets O 192.168.1.0 [110/2] via 192.168.2.1, 05:55:04, FastEthernet0/0 192.168.2.0/29 is subnetted, 1 subnets C 192.168.2.0 is directly connected, FastEthernet0/0 O 192.168.3.0/24 [110/2] via 192.168.2.1, 05:55:04, FastEthernet0/0 192.168.4.0/29 is subnetted, 1 subnets O 192.168.4.0 [110/2] via 192.168.2.1, 05:55:04, FastEthernet0/0 O 192.168.10.0/24 [110/3] via 192.168.2.1, 05:55:04, FastEthernet0/0 O 192.168.11.0/24 [110/3] via 192.168.2.1, 05:55:04, FastEthernet0/0 C 192.168.20.0/24 is directly connected, FastEthernet1/0 C 192.168.21.0/24 is directly connected, FastEthernet2/0 R2#
  • 14. Verification of Results   Ping from Tablet PC0 to PC0:           PC>ping 192.168.10.2 Pinging 192.168.10.2 with 32 bytes of data: Reply from 192.168.10.2: bytes=32 time=266ms TTL=126 Reply from 192.168.10.2: bytes=32 time=173ms TTL=126 Reply from 192.168.10.2: bytes=32 time=156ms TTL=126 Reply from 192.168.10.2: bytes=32 time=172ms TTL=126 Ping statistics for 192.168.10.2: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 156ms, Maximum = 266ms, Average = 191ms