Skip to main content

RIP (ROUTING INFORMATION PROTOCOL)



1.   It is a Distance Vector Routing Protocol.
2.   RIP is an Application layer protocol.
3.   It uses UDP port number 520
4.   Administrative Distance is 120.
5.   Metric is number of Hop count.
6.   Maximum number of hops 15.
7.   To select best path, it uses Bellman Ford Algorithm.
8.   It supports equal cost load balancing.
9.   Maximum path supported 32, 4(default).
10.                It shares entire routing table with directly connected routers.
11.                RIP performs routing on rumors.
12.                Sends periodic update once in every 30secs.
13.                RIP has three versions:
·     Default version.
·     RIPV1
·     RIPV2
14.                Default version:
·     By default running.
·     Send V1 type packet & receives V1, V2 type packet.
·     Similar to RIPv1.
15.                RIPV1
·     It is a Classful Routing Protocol.
·     It does not support VLSM, CIDR.
·     To send an update, it uses broadcast address 255.255.255.255
·     No authentication support.
·     Can’t disable auto-summary.
·     No support for manual summary.
·     Send V1 & receive V1 type packet.
16.                RIPV2
·     It is a Classless Routing Protocol.
·     It supports VLSM, CIDR.
·     To send an update, it uses multicast address 224.0.0.9.
·     Can disable auto-summary.
·     Supports manual summary and auto summary.
·     Supports MD5 and plain text authentication.
·     Send V2 & receive V2 type packet.
17.                RIP Timers:
·     Update timer: 30 sec. RIP sends the whole routing table update once every 30 secs.
·     Invalid timer: 180 Sec. How long a router will wait to hear an update before considering the route as invalid.
·     Flush timer: 240 sec. How long a router will wait before removing a route from routing table.
·     Hold-down timer: 180 Sec.
18.                RIP Configuration commands:
·     To  enable RIP on a router for a network:
Router(config)#router rip
Router(config-router)#network a.b.c.d
·     To check entire routing table:
Router#show ip route
·     To check current running routing protocol:
Router#show ip protocols
·     To check route learned from RIP only:
Router#show ip route rip
·     To change administrative distance:
Router(config)#router rip
Router(config-router)#distance 120
·     To change maximum-path:
Router(config)#router rip
Router(config-router)#maximum-paths 4
·     To disable auto-summary:
Router(config)#router rip
Router(config-router)#no auto-summary
·     To make an interface passive (don’t want to send update packet):
Router(config)#router rip
Router(config-router)#passive-interface fa0/1
·     To change timers of rip:
Router(config)#router rip
Router(config-router)#timers basic 30 180 180 240
·     To change version of rip:
Router(config)#router rip
Router(config-router)#version 2
·     To populate information of default route over update packet:
Router(config)#router rip
Router(config-router)#default-information originate
·     To change the version of passing update packet from a particular interface:
Router(config)#interface fastEthernet 0/0
Router(config-if)#ip rip send version1/2
·     To debug rip packets:
Router#debug ip rip events
·     To instantly refresh rip routing table:
Router#clear ip route *
·     To disable rip routing protocol
Router(config)#no router rip


Comments

Popular posts from this blog

How To Upgrade Windows Server 2008 R2 To Windows Server 2012

In this post we will see how to upgrade Windows Server 2008 R2 to Windows Server 2012. It’s been an year that Microsoft has released Windows Server 2012, when Windows Sever 2012 was released the IT professionals were eager to know what’s new in Windows Server 2012 and i was one of them. Microsoft releases all of its operating systems in multiple editions, which provides consumers with varying price points and feature sets. While choosing the edition make sure you choose the edition that suits your requirements. Before we go ahead and deploy Server 2012, let’s take a look at editions of Windows Server 2012. 1)  Windows Server 2012 Datacenter Edition  – The Datacenter edition is designed for large and powerful servers with up to 64 processors and fault-tolerance features such as hot add processor support. This edition is available only through the Microsoft volume licensing program and from original equipment manufacturers bundled with a server. 2)  Windows Server 20...

Installing the Fuzzy Lookup Excel Add-In

    1.       Navigate to the Microsoft website and download the Fuzzy Lookup installation ZIP file.  Save the ZIP file in a new directory on your desktop called ‘FuzzyLookup’ and then extract the files to that same directory.   2.       Make sure all applications are closed on your computer. 3.       Run the ‘setup.exe’ file. Press ‘Run’.   4.       Next the setup process will ask you if you accept two separate License Agreements.  Press ‘Accept’ to both. 5.       Next you will see the application start downloading and installing files.  This will take several minutes. 6.       Next the Setup Wizard will appear.  Press ‘Next.’ 7.       Another License Agreement screen will appear.  Choose ‘I Agree’ and then ‘Next’....

How to Install Hyper-V Core: Step by step guide

Hyper-V is a very capable hypervisor for use today yet there are three ways to use it. I blogged about these three ways, but the key takeaway is that the three options are: Having the Hyper-V role on a Windows Server 2012 R2 system (full installation) Having the Hyper-V role on a Windows Server 2012 R2 system (core installation) Using the Free Hyper-V Server 2012 R2 In this post, let’s focus on the free Hyper-V Server 2012 R2 and its installation. Before you get too far along, be sure to check the Hyper-V system requirements to use the free hypervisor. The first step is to download Hyper-V Server 2012 R2, which you can do from the TechNet Evaluation Center. Once you have download the .ISO of Hyper-V Server 2012, let’s go through the installation process. Once the .ISO is burned to a DVD, you can boot the computer or server up on the new operating system. If you see this screen where you can select your language, keyboard and numerical formats you are start...