SlideShare una empresa de Scribd logo
1 de 7
Descargar para leer sin conexión
RIP (Routing Information Protocol). Document Version 1.1.
Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330
Updated material may be found at http://www.deepuverma.in
LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw
Today we are covered about RIP Version 2 in real time configuration.
Last time we covered about RIP Basic and RIP Version 1 in details configuration on Cisco Router. Here I
am attached some basic again about RIP and RIP Version 2.
Routing Information Protocol (RIP) is a standardized
Distance Vector protocol (First true Distance Vector), and used on smaller networks. RIP uses the
“Bellman-Ford” Distance Vector algorithm to determine the best “path” to a particular destination. The
maximum number of hops allowed for RIP is 15. This hop limit, however, also limits the size of networks
that RIP can support. A hop count of 16 is considered an infinite distance or poison route, in other
words the route is considered unreachable.
Some Specification of RIP Protocol:
1. AD (Administrator Distance) is 120.
2. RIP sends out periodic routing updates after every 30 seconds with full routing table.
3. RIP uses a form of distance (Hopcount) as it’s metric, maximum hopcount are 15 hops.
4. RIP uses the “Bellman-Ford Distance Vector algorithm”.
5. RIP Utilize UDP Port 520.
6. RIP Support IP and IPX Routing.
7. RIP has two Versions (RIP Version 1 and RIP Version 2). (For IPv6 is RIPng, it’s not a Version of
RIP)
RIP will load balance between those paths (default, up to 4) only if the metric (hopcount) is equal. RIP
uses a round-robin system of load-balancing between equal metric routes, which can lead to pinhole
congestion.
Timers
RIP uses the following timers as part of its operation:
1. Update Timer – Default 30 Seconds.
2. Invalid Timer - Default 180 Seconds, After expires Invalid timer the hop count of the routing
entry will be set to 16, marking the destination as unreachable.
3. Flush Timer – Default 240 Seconds.
RIP (Routing Information Protocol). Document Version 1.1.
Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330
Updated material may be found at http://www.deepuverma.in
LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw
4. Holddown Timer - Default is 180 Seconds (This is Cisco's implementation and can word on only
Cisco Routers)
Limitations
The hop count cannot exceed 15, otherwise it will be considered invalid. Most RIP networks are flat.
There is no concept of areas or boundaries in RIP networks. Variable Length Subnet Masks are not
supported by RIP version 1. RIP has slow convergence and count to infinity problems.
RIP Versions
RIP has two versions, RIPv1 and RIPv2.
RIP Version 1 (RIPv1):
1. RIPv1 is classful, and therefore does not include the subnet mask with its routing table updates.
2. RIPv1 does not support Variable Length Subnet Masks (VLSMs).
3. RIPv1 sends updates as broadcasts to address 255.255.255.255.
4. RIPv1 has maximum hopcount is 15 hops.
5. RIPv1 does not support authentication.
6. RIPv1 routers will send only Version 1 packets.
7. RIPv1 routers will receive both Version 1 and 2 updates.
8. Cisco Routers by default support RIPv1.
RIP Version 2 (RIPv2):
1. RIPv2 is classless, and therefore does include the subnet mask with its routing table updates.
2. RIPv2 fully supports VLSMs.
3. Routing updates are sent via multicast, using address 224.0.0.9
4. Encrypted authentication can be configured between RIPv2 routers
5. Route tagging is supported.
6. RIPv2 routers will both send and receive only Version 2 updates
7. We can control the version of RIP a particular interface will “send” or “receive.”
8. RIPv2 is manually specified on, a Cisco will default to RIPv1 when configuring RIP.
9. User below mention command for change version on Cisco Routers
Router(config)#router rip
Router(config-router)#version 2
RIP (Routing Information Protocol). Document Version 1.1.
Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330
Updated material may be found at http://www.deepuverma.in
LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw
Configuration of RIPv2
As per image, take a network Diagram for testing RIPv1 Configuration.
Let’s Check Router Configuration on R0:-
interface FastEthernet0/0
ip address 192.168.10.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
RIP (Routing Information Protocol). Document Version 1.1.
Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330
Updated material may be found at http://www.deepuverma.in
LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw
speed auto
shutdown
!
interface Serial0/0/0
ip address 192.168.2.1 255.255.255.252
!
interface Serial0/0/1
ip address 192.168.3.6 255.255.255.252
!
!
router rip
version 2
network 192.168.2.0
network 192.168.3.0
network 192.168.10.0
no auto-summary
!
Let’s Check Router Configuration on R1:-
interface FastEthernet0/0
ip address 192.168.30.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.20.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0/0
ip address 192.168.2.2 255.255.255.252
clock rate 2000000
!
interface Serial0/0/1
ip address 192.168.3.5 255.255.255.252
clock rate 2000000
RIP (Routing Information Protocol). Document Version 1.1.
Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330
Updated material may be found at http://www.deepuverma.in
LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw
!
router rip
version 2
network 192.168.2.0
network 192.168.3.0
network 192.168.20.0
network 192.168.30.0
no auto-summary
!
Let’s Check Router Configuration on R2:-
interface FastEthernet0/0
ip address 192.168.30.2 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 192.168.40.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0/0
no ip address
clock rate 2000000
shutdown
!
interface Serial0/0/1
no ip address
clock rate 2000000
shutdown
!
!
router rip
version 2
network 192.168.30.0
network 192.168.40.0
no auto-summary
RIP (Routing Information Protocol). Document Version 1.1.
Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330
Updated material may be found at http://www.deepuverma.in
LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw
Project Success:-
1. Project Ping test pass
2. Project Ready to work on Live Network
3. Load Balancing is tested.
Let’s Testing load Balancing: - (Tracert command from Laptop2 to Laptop0)
PC>tracert 192.168.10.2
Tracing route to 192.168.10.2 over a maximum of 30 hops:
1 1 ms 0 ms 1 ms 192.168.40.1
2 1 ms 0 ms 0 ms 192.168.30.1
3 0 ms 2 ms 2 ms 192.168.3.6
4 20 ms 0 ms 1 ms 192.168.10.2
Trace complete.
(Tracert command from Laptop1 to Laptop0)
PC>tracert 192.168.10.2
Tracing route to 192.168.10.2 over a maximum of 30 hops:
1 0 ms 0 ms 1 ms 192.168.20.1
2 1 ms 0 ms 0 ms 192.168.2.1
3 31 ms 0 ms 0 ms 192.168.10.2
Trace complete.
Test RIP Database on Routers
R2#sho ip rip database
192.168.2.0/30 auto-summary
192.168.2.0/30
[1] via 192.168.30.1, 00:00:23, FastEthernet0/0
192.168.3.4/30 auto-summary
192.168.3.4/30
RIP (Routing Information Protocol). Document Version 1.1.
Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330
Updated material may be found at http://www.deepuverma.in
LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw
[1] via 192.168.30.1, 00:00:23, FastEthernet0/0
192.168.10.0/24 auto-summary
192.168.10.0/24
[2] via 192.168.30.1, 00:00:23, FastEthernet0/0
192.168.20.0/24 auto-summary
192.168.20.0/24
[1] via 192.168.30.1, 00:00:23, FastEthernet0/0
192.168.30.0/24 auto-summary
192.168.30.0/24 directly connected, FastEthernet0/0
192.168.40.0/24 auto-summary
192.168.40.0/24 directly connected, FastEthernet0/1
R2#
R1#sho ip rip database
192.168.2.0/30 auto-summary
192.168.2.0/30 directly connected, Serial0/0/0
192.168.3.4/30 auto-summary
192.168.3.4/30 directly connected, Serial0/0/1
192.168.10.0/24 auto-summary
192.168.10.0/24
[1] via 192.168.2.1, 00:00:22, Serial0/0/0 [1] via 192.168.3.6, 00:00:22, Serial0/0/1
192.168.20.0/24 auto-summary
192.168.20.0/24 directly connected, FastEthernet0/1
192.168.30.0/24 auto-summary
192.168.30.0/24 directly connected, FastEthernet0/0
192.168.40.0/24 auto-summary
192.168.40.0/24
[1] via 192.168.30.2, 00:00:18, FastEthernet0/0
No auto-summary command forces the advertisement of two different subnets from different interfaces
within the same network.
-----------------------------End RIP Document Version 1.1 by Deepak Kumar -----------------------------------
Note: - RIP Troubleshooting Document will soon. Drop an email to get document in your inbox.

Más contenido relacionado

La actualidad más candente

How deep is your buffer – Demystifying buffers and application performance
How deep is your buffer – Demystifying buffers and application performanceHow deep is your buffer – Demystifying buffers and application performance
How deep is your buffer – Demystifying buffers and application performanceCumulus Networks
 
RPM Junos-service
RPM Junos-serviceRPM Junos-service
RPM Junos-serviceKHNOG
 
Precision Time Protocol
Precision Time ProtocolPrecision Time Protocol
Precision Time ProtocolSteven Kreuzer
 
introduction of iptables in linux
introduction of iptables in linuxintroduction of iptables in linux
introduction of iptables in linuxNouman Baloch
 
TCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and SwitchesTCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and SwitchesNetProtocol Xpert
 
PSKmail presentation @ Garec 2013 conference
PSKmail presentation @ Garec 2013 conferencePSKmail presentation @ Garec 2013 conference
PSKmail presentation @ Garec 2013 conferenceRein Couperus
 
BSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control Networks
BSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control NetworksBSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control Networks
BSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control NetworksBSidesROC
 
Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)
Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)
Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)Netwax Lab
 
2900 3500-5400-6200-8200-i pv6-jan08-2-intro
2900 3500-5400-6200-8200-i pv6-jan08-2-intro2900 3500-5400-6200-8200-i pv6-jan08-2-intro
2900 3500-5400-6200-8200-i pv6-jan08-2-introStoyan Stoyanov
 
Cisco discovery drs ent module 3 - v.4 in english.
Cisco discovery   drs ent module 3 - v.4 in english.Cisco discovery   drs ent module 3 - v.4 in english.
Cisco discovery drs ent module 3 - v.4 in english.igede tirtanata
 

La actualidad más candente (17)

IP Source Guard
IP Source Guard IP Source Guard
IP Source Guard
 
How deep is your buffer – Demystifying buffers and application performance
How deep is your buffer – Demystifying buffers and application performanceHow deep is your buffer – Demystifying buffers and application performance
How deep is your buffer – Demystifying buffers and application performance
 
RPM Junos-service
RPM Junos-serviceRPM Junos-service
RPM Junos-service
 
Precision Time Protocol
Precision Time ProtocolPrecision Time Protocol
Precision Time Protocol
 
DHCP Snooping
DHCP SnoopingDHCP Snooping
DHCP Snooping
 
Remote VPN
Remote VPNRemote VPN
Remote VPN
 
OTV Configuration
OTV ConfigurationOTV Configuration
OTV Configuration
 
introduction of iptables in linux
introduction of iptables in linuxintroduction of iptables in linux
introduction of iptables in linux
 
TCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and SwitchesTCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and Switches
 
PSKmail presentation @ Garec 2013 conference
PSKmail presentation @ Garec 2013 conferencePSKmail presentation @ Garec 2013 conference
PSKmail presentation @ Garec 2013 conference
 
BSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control Networks
BSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control NetworksBSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control Networks
BSidesROC 2016 - Nick Piazza - Fault Tolerant Command and Control Networks
 
RAZORPOINT TCP/UDP PORTS LIST
RAZORPOINT TCP/UDP PORTS LISTRAZORPOINT TCP/UDP PORTS LIST
RAZORPOINT TCP/UDP PORTS LIST
 
Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)
Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)
Eincop Netwax Lab: HSRP (Hot Standby Router Protocol)
 
UDP Hunter
UDP HunterUDP Hunter
UDP Hunter
 
2900 3500-5400-6200-8200-i pv6-jan08-2-intro
2900 3500-5400-6200-8200-i pv6-jan08-2-intro2900 3500-5400-6200-8200-i pv6-jan08-2-intro
2900 3500-5400-6200-8200-i pv6-jan08-2-intro
 
Cisco discovery drs ent module 3 - v.4 in english.
Cisco discovery   drs ent module 3 - v.4 in english.Cisco discovery   drs ent module 3 - v.4 in english.
Cisco discovery drs ent module 3 - v.4 in english.
 
Iptables presentation
Iptables presentationIptables presentation
Iptables presentation
 

Similar a Rip 2 docoments version 1.1 by deepak kumar

In depth understanding network security
In depth understanding network securityIn depth understanding network security
In depth understanding network securityThanawan Tuamyim
 
project on OSPF
project on OSPFproject on OSPF
project on OSPFOm Prakash
 
Ripe71 FastNetMon open source DoS / DDoS mitigation
Ripe71 FastNetMon open source DoS / DDoS mitigationRipe71 FastNetMon open source DoS / DDoS mitigation
Ripe71 FastNetMon open source DoS / DDoS mitigationPavel Odintsov
 
Aceleracion TCP Mikrotik.pdf
Aceleracion TCP Mikrotik.pdfAceleracion TCP Mikrotik.pdf
Aceleracion TCP Mikrotik.pdfWifiCren
 
Picobgp - A simple deamon for routing advertising
Picobgp - A simple deamon for routing advertisingPicobgp - A simple deamon for routing advertising
Picobgp - A simple deamon for routing advertisingClaudio Mignanti
 
RIP (routing information protocol)
RIP (routing information protocol)RIP (routing information protocol)
RIP (routing information protocol)Netwax Lab
 
RIP Routing Information Protocol Extreme Networks
RIP Routing Information Protocol Extreme NetworksRIP Routing Information Protocol Extreme Networks
RIP Routing Information Protocol Extreme NetworksDani Royman Simanjuntak
 
Telnet configuration
Telnet configurationTelnet configuration
Telnet configurationMdAlAmin187
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_configarjuntrk
 
Quick Guide Ip Routing
Quick Guide   Ip RoutingQuick Guide   Ip Routing
Quick Guide Ip RoutingCCNAResources
 
Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013
Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013
Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013Đồng Quốc Vương
 
Chapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdfChapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdfBuntha Chhay
 
2.5.1.2 packet tracer configure cisco routers for syslog, ntp, and ssh oper...
2.5.1.2 packet tracer   configure cisco routers for syslog, ntp, and ssh oper...2.5.1.2 packet tracer   configure cisco routers for syslog, ntp, and ssh oper...
2.5.1.2 packet tracer configure cisco routers for syslog, ntp, and ssh oper...Salem Trabelsi
 

Similar a Rip 2 docoments version 1.1 by deepak kumar (20)

In depth understanding network security
In depth understanding network securityIn depth understanding network security
In depth understanding network security
 
project on OSPF
project on OSPFproject on OSPF
project on OSPF
 
CCNA Lab Guide
CCNA Lab GuideCCNA Lab Guide
CCNA Lab Guide
 
Ripe71 FastNetMon open source DoS / DDoS mitigation
Ripe71 FastNetMon open source DoS / DDoS mitigationRipe71 FastNetMon open source DoS / DDoS mitigation
Ripe71 FastNetMon open source DoS / DDoS mitigation
 
Aceleracion TCP Mikrotik.pdf
Aceleracion TCP Mikrotik.pdfAceleracion TCP Mikrotik.pdf
Aceleracion TCP Mikrotik.pdf
 
Picobgp - A simple deamon for routing advertising
Picobgp - A simple deamon for routing advertisingPicobgp - A simple deamon for routing advertising
Picobgp - A simple deamon for routing advertising
 
RIP (routing information protocol)
RIP (routing information protocol)RIP (routing information protocol)
RIP (routing information protocol)
 
ccna networking ppt
ccna networking pptccna networking ppt
ccna networking ppt
 
RIP Routing Information Protocol Extreme Networks
RIP Routing Information Protocol Extreme NetworksRIP Routing Information Protocol Extreme Networks
RIP Routing Information Protocol Extreme Networks
 
RIP Overview
RIP OverviewRIP Overview
RIP Overview
 
Telnet configuration
Telnet configurationTelnet configuration
Telnet configuration
 
Rfc1723
Rfc1723Rfc1723
Rfc1723
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config
 
Quick Guide Ip Routing
Quick Guide   Ip RoutingQuick Guide   Ip Routing
Quick Guide Ip Routing
 
Ducat
DucatDucat
Ducat
 
Chapter6ccna
Chapter6ccnaChapter6ccna
Chapter6ccna
 
Chapter6ccna
Chapter6ccnaChapter6ccna
Chapter6ccna
 
Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013
Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013
Www ccnav5 net_ccna_3_v5_0_scaling_networks_final_exam_2013
 
Chapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdfChapter 2-IP Routing.pdf
Chapter 2-IP Routing.pdf
 
2.5.1.2 packet tracer configure cisco routers for syslog, ntp, and ssh oper...
2.5.1.2 packet tracer   configure cisco routers for syslog, ntp, and ssh oper...2.5.1.2 packet tracer   configure cisco routers for syslog, ntp, and ssh oper...
2.5.1.2 packet tracer configure cisco routers for syslog, ntp, and ssh oper...
 

Último

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
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
 
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
 
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
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
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
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
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
 
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
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
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
 
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
 

Último (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
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
 
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...
 
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
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
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...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
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
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
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...
 
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
 

Rip 2 docoments version 1.1 by deepak kumar

  • 1. RIP (Routing Information Protocol). Document Version 1.1. Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330 Updated material may be found at http://www.deepuverma.in LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw Today we are covered about RIP Version 2 in real time configuration. Last time we covered about RIP Basic and RIP Version 1 in details configuration on Cisco Router. Here I am attached some basic again about RIP and RIP Version 2. Routing Information Protocol (RIP) is a standardized Distance Vector protocol (First true Distance Vector), and used on smaller networks. RIP uses the “Bellman-Ford” Distance Vector algorithm to determine the best “path” to a particular destination. The maximum number of hops allowed for RIP is 15. This hop limit, however, also limits the size of networks that RIP can support. A hop count of 16 is considered an infinite distance or poison route, in other words the route is considered unreachable. Some Specification of RIP Protocol: 1. AD (Administrator Distance) is 120. 2. RIP sends out periodic routing updates after every 30 seconds with full routing table. 3. RIP uses a form of distance (Hopcount) as it’s metric, maximum hopcount are 15 hops. 4. RIP uses the “Bellman-Ford Distance Vector algorithm”. 5. RIP Utilize UDP Port 520. 6. RIP Support IP and IPX Routing. 7. RIP has two Versions (RIP Version 1 and RIP Version 2). (For IPv6 is RIPng, it’s not a Version of RIP) RIP will load balance between those paths (default, up to 4) only if the metric (hopcount) is equal. RIP uses a round-robin system of load-balancing between equal metric routes, which can lead to pinhole congestion. Timers RIP uses the following timers as part of its operation: 1. Update Timer – Default 30 Seconds. 2. Invalid Timer - Default 180 Seconds, After expires Invalid timer the hop count of the routing entry will be set to 16, marking the destination as unreachable. 3. Flush Timer – Default 240 Seconds.
  • 2. RIP (Routing Information Protocol). Document Version 1.1. Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330 Updated material may be found at http://www.deepuverma.in LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw 4. Holddown Timer - Default is 180 Seconds (This is Cisco's implementation and can word on only Cisco Routers) Limitations The hop count cannot exceed 15, otherwise it will be considered invalid. Most RIP networks are flat. There is no concept of areas or boundaries in RIP networks. Variable Length Subnet Masks are not supported by RIP version 1. RIP has slow convergence and count to infinity problems. RIP Versions RIP has two versions, RIPv1 and RIPv2. RIP Version 1 (RIPv1): 1. RIPv1 is classful, and therefore does not include the subnet mask with its routing table updates. 2. RIPv1 does not support Variable Length Subnet Masks (VLSMs). 3. RIPv1 sends updates as broadcasts to address 255.255.255.255. 4. RIPv1 has maximum hopcount is 15 hops. 5. RIPv1 does not support authentication. 6. RIPv1 routers will send only Version 1 packets. 7. RIPv1 routers will receive both Version 1 and 2 updates. 8. Cisco Routers by default support RIPv1. RIP Version 2 (RIPv2): 1. RIPv2 is classless, and therefore does include the subnet mask with its routing table updates. 2. RIPv2 fully supports VLSMs. 3. Routing updates are sent via multicast, using address 224.0.0.9 4. Encrypted authentication can be configured between RIPv2 routers 5. Route tagging is supported. 6. RIPv2 routers will both send and receive only Version 2 updates 7. We can control the version of RIP a particular interface will “send” or “receive.” 8. RIPv2 is manually specified on, a Cisco will default to RIPv1 when configuring RIP. 9. User below mention command for change version on Cisco Routers Router(config)#router rip Router(config-router)#version 2
  • 3. RIP (Routing Information Protocol). Document Version 1.1. Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330 Updated material may be found at http://www.deepuverma.in LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw Configuration of RIPv2 As per image, take a network Diagram for testing RIPv1 Configuration. Let’s Check Router Configuration on R0:- interface FastEthernet0/0 ip address 192.168.10.1 255.255.255.0 duplex auto speed auto ! interface FastEthernet0/1 no ip address duplex auto
  • 4. RIP (Routing Information Protocol). Document Version 1.1. Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330 Updated material may be found at http://www.deepuverma.in LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw speed auto shutdown ! interface Serial0/0/0 ip address 192.168.2.1 255.255.255.252 ! interface Serial0/0/1 ip address 192.168.3.6 255.255.255.252 ! ! router rip version 2 network 192.168.2.0 network 192.168.3.0 network 192.168.10.0 no auto-summary ! Let’s Check Router Configuration on R1:- interface FastEthernet0/0 ip address 192.168.30.1 255.255.255.0 duplex auto speed auto ! interface FastEthernet0/1 ip address 192.168.20.1 255.255.255.0 duplex auto speed auto ! interface Serial0/0/0 ip address 192.168.2.2 255.255.255.252 clock rate 2000000 ! interface Serial0/0/1 ip address 192.168.3.5 255.255.255.252 clock rate 2000000
  • 5. RIP (Routing Information Protocol). Document Version 1.1. Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330 Updated material may be found at http://www.deepuverma.in LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw ! router rip version 2 network 192.168.2.0 network 192.168.3.0 network 192.168.20.0 network 192.168.30.0 no auto-summary ! Let’s Check Router Configuration on R2:- interface FastEthernet0/0 ip address 192.168.30.2 255.255.255.0 duplex auto speed auto ! interface FastEthernet0/1 ip address 192.168.40.1 255.255.255.0 duplex auto speed auto ! interface Serial0/0/0 no ip address clock rate 2000000 shutdown ! interface Serial0/0/1 no ip address clock rate 2000000 shutdown ! ! router rip version 2 network 192.168.30.0 network 192.168.40.0 no auto-summary
  • 6. RIP (Routing Information Protocol). Document Version 1.1. Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330 Updated material may be found at http://www.deepuverma.in LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw Project Success:- 1. Project Ping test pass 2. Project Ready to work on Live Network 3. Load Balancing is tested. Let’s Testing load Balancing: - (Tracert command from Laptop2 to Laptop0) PC>tracert 192.168.10.2 Tracing route to 192.168.10.2 over a maximum of 30 hops: 1 1 ms 0 ms 1 ms 192.168.40.1 2 1 ms 0 ms 0 ms 192.168.30.1 3 0 ms 2 ms 2 ms 192.168.3.6 4 20 ms 0 ms 1 ms 192.168.10.2 Trace complete. (Tracert command from Laptop1 to Laptop0) PC>tracert 192.168.10.2 Tracing route to 192.168.10.2 over a maximum of 30 hops: 1 0 ms 0 ms 1 ms 192.168.20.1 2 1 ms 0 ms 0 ms 192.168.2.1 3 31 ms 0 ms 0 ms 192.168.10.2 Trace complete. Test RIP Database on Routers R2#sho ip rip database 192.168.2.0/30 auto-summary 192.168.2.0/30 [1] via 192.168.30.1, 00:00:23, FastEthernet0/0 192.168.3.4/30 auto-summary 192.168.3.4/30
  • 7. RIP (Routing Information Protocol). Document Version 1.1. Deepak Kumar (deepuverma@outlook.com), Call: - +91 - 8875332931 / 9214012330 Updated material may be found at http://www.deepuverma.in LinkedIn: - https://in.linkedin.com/in/engdeepak Twitter: - https://twitter.com/Deepakkhw [1] via 192.168.30.1, 00:00:23, FastEthernet0/0 192.168.10.0/24 auto-summary 192.168.10.0/24 [2] via 192.168.30.1, 00:00:23, FastEthernet0/0 192.168.20.0/24 auto-summary 192.168.20.0/24 [1] via 192.168.30.1, 00:00:23, FastEthernet0/0 192.168.30.0/24 auto-summary 192.168.30.0/24 directly connected, FastEthernet0/0 192.168.40.0/24 auto-summary 192.168.40.0/24 directly connected, FastEthernet0/1 R2# R1#sho ip rip database 192.168.2.0/30 auto-summary 192.168.2.0/30 directly connected, Serial0/0/0 192.168.3.4/30 auto-summary 192.168.3.4/30 directly connected, Serial0/0/1 192.168.10.0/24 auto-summary 192.168.10.0/24 [1] via 192.168.2.1, 00:00:22, Serial0/0/0 [1] via 192.168.3.6, 00:00:22, Serial0/0/1 192.168.20.0/24 auto-summary 192.168.20.0/24 directly connected, FastEthernet0/1 192.168.30.0/24 auto-summary 192.168.30.0/24 directly connected, FastEthernet0/0 192.168.40.0/24 auto-summary 192.168.40.0/24 [1] via 192.168.30.2, 00:00:18, FastEthernet0/0 No auto-summary command forces the advertisement of two different subnets from different interfaces within the same network. -----------------------------End RIP Document Version 1.1 by Deepak Kumar ----------------------------------- Note: - RIP Troubleshooting Document will soon. Drop an email to get document in your inbox.