What are the sequence maintain rip v2

Asked By 210 points N/A Posted on -
qa-featured

Hello,

How Are you friends?

How to configure rip v2 step by step?

I want to configure my router, that's why latest rip version setup is necessary.

So i want to configure it. Help me configure information sequencely.

I will be very grateful to you. Its very important for networking service.

Thank you.

SHARE
Answered By 10 points N/A #129076

What are the sequence maintain rip v2

qa-featured

Dear Aprit

Routing Information Protocol is a routing protocol used to select the suitable route for packets with in a network.

Here is step by step configuration.

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.

Hope you will satisfy.

Kelin

Related Questions