Google

 

 

 

How to configure RIP v2 step by step?

RIP short for "Routing Information Protocol" is a routing protocol used to select the suitable route for packets with in network. RIP basically an open standard dynamic routing protocol and not relate to any particular vendor.

The latest version of RIP is RIP version 2 with some new features, for example RIP v2 is class less protocol that sends subnet mask information with routing updates and support VLSM (variable length subnet masking also).

From the global configuration mode, configure the hostname then configure the console and enable passwords on each router.

 

 

 

 

To configure RIP v2, first enter global configuration mode to run the following commands. 

 

 

Configure the routing protocol on Router A. 

 

First run the command show ip route to view the IP routing table for router A before RIP v2. 

 

RouterA(config)#configure terminal                (enter in global configuration mode)

 

 

 

 

RouterA(config)#router rip                              (enable RIP)

 

RouterA(config-router)#version 2                                (enable RIP v2) 

 

RouterA(config-router)#network 10.0.0.0       (advertise the network 10.0.0.0)

 

RouterA(config-router)#network 20.0.0.0       (advertise the network 20.0.0.0)

 

RouterA(config-router)#network 193.168.1.0 (advertise the network 193.168.1.0)

 

RouterA(config-router)#exit

 

RouterA(config)#

  

Configure the routing protocol on Router B. 

 

First run the command show ip route to view the IP routing table for router B before RIP v2. 

 

RouterB(config)#configure terminal                (enter in global configuration mode) 

 

RouterB(config)#router rip                              (enable RIP)

 

RouterB(config-router)#version 2                                (enable RIP v2) 

 

RouterB(config-router)#network 10.0.0.0       (advertise the network 10.0.0.0)

 

RouterB(config-router)#network 15.0.0.0       (advertise the network 15.0.0.0)

 

RouterB(config-router)#network 193.168.2.0 (advertise the network 193.168.2.0)

 

RouterB(config-router)#exit

 

RouterB(config)#

 

  

 

Configure the routing protocol on Router C. 

 

First run the command show ip route to view the IP routing table for router C before RIP v2. 

 

RouterC(config)#configure terminal                (enter in global configuration mode) 

 

RouterC(config)#router rip                              (enable RIP)

 

RouterC(config-router)#version 2                                (enable RIP v2) 

 

RouterC(config-router)#network 20.0.0.0       (advertise the network 20.0.0.0)

 

RouterC(config-router)#network 15.0.0.0       (advertise the network 15.0.0.0)

 

RouterC(config-router)#network 193.168.3.0 (advertise the network 193.168.3.0)

 

RouterC(config-router)#exit

 

RouterC(config)#

 

From the enable mode, examine the routing table entries using the show ip route command on each router.

 

 

 

Related Articles

 

 

  •  

    How to configure RIP v2 step by step? RIP short for "Routing Information Protocol" is a routing protocol used to select the suitable route for packets with in network. Read More...

    How to configure static routes on Cisco routers? You can configure two types of routing on the router- static and dynamic to send the traffic to destination.  Read More...
     

    How to configure VLAN on a Cisco Switch?   VLAN stands for virtual LAN and technically we can say, a VLAN is a broadcast domain created by switch. When managing a switch, the management domain is always VLAN 1, the default VLAN. All ports of switch are assigned to VLAN 1 by default.  VLAN increase the performance of a network because it divide a network logically in different parts and limit the broadcasts Read More...


    How to configure VTP Client and Server?  VTP (VLAN Trunking Protocol) is the protocol that propagates the information about which VLANs exist from one switch to another switch. If VTP did not provide this information, VLANs would have to be created on all switches individually in the network.  Read More..


    How to configure Trunking between VLANs with 802.1q?  Trunk link is used to carry the different VLANs traffic on a single link. There are two different protocols are used for Ethernet trunking, 802. 1q and ISL. Trunking change the formatting of the packets.  Read More...

     

    How to configure Trunking between VLANs with ISL?  Trunking is a technique to carry different VLAN traffic using point to point link between two devices. ISL (InterSwitch Link) is a cisco proprietary protocol can work with Ethernet token ring and Fddi also. Trunking changes the formatting of the packets.  Read More...