COMPUTER TIPS

Home | Previous Page| About Us | Set As Home Page

 

Google

  Google Groups Beta Subscribe to Computer free Tips                                                  

Email:

Jan, 19 , 08                    Today's Tip                                        Add to Favorites   

                                                                              

   

Previous Tips e

18-01-08
17-01-08
16-01-08
15-01-08
14-01-08
13-01-08
12-01-08
11-01-08
10-01-08
09-01-08
08-01-08
07-01-08
06-01-08
05-01-08
04-01-08
03-01-08
02-01-08
01-01-08
30-12-07
29-12-07
28-12-07
27-12-07
26-12-07
25-12-07
24-12-07
23-12-07
22-12-07
21-12-07
20-12-07
19-12-07
18-12-07
17-12-07
16-12-07
15-12-07
14-12-07
13-12-07
12-12-07
11-12-07
10-12-07
09-12-07
08-12-07
07-12-07
06-12-07
05-12-07
04-12-07
03-12-07
02-12-07
01-12-07
30-11-07
29-11-07
28-11-07
27-11-07
26-11-07
25-11-07
24-11-07
23-11-07
22-11-07
21-11-07
20-11-07
19-11-07
18-11-07
17-11-07
16-11-07
15-11-07
14-11-07
13-11-07
12-11-07
11-11-07
10-11-07
09-11-07
08-11-07
07-11-07
06-11-07
05-11-07
04-11-07
03-11-07
02-11-07
01-11-07

October 07-Tips

September 07-Tips

August 07-Tips

July 07- Tips

June 07- Tips

May 07- Tips

April 07- Tips

March, 07- Tips

February, 07- Tips

January, 07- Tips

 

 

 

 

 

 

How to perform configuration and convergence between RIP and IGRP protocols?

 

 

 

In this case, we will try to configure two different types of routing protocol (RIP and IGRP) and then perform the convergence between them.

Follow the network topology of three different class network in given figure:

 

 

First check the router A status before RIP configuration and convergence.

RouterA#show ip route

C         20.0.0.0/8 is directly connected, serial0/0

C         210.100.10.0/24 is directly connected, loopback0

Configure RIP on Router A

RouterA#configure terminal

RouterA#(config)#router rip

RouterA#(config-router)#network 20.0.0.0

RouterA#(config-router)#network 210.100.10.0

RouterA#(config-router)#redistribute igrp 1 metric 1

RouterA#(config-router)#exit 

First check the router B status before IGRP configuration and convergence.

RouterB#show ip route

C         20.0.0.0/8 is directly connected, serial0/0

C        30.0.0.0/8 is directly connected, serial0/1

C        210.100.20.0/24 is directly connected, loopback0

Configuration to Enable IGRP on Router B

In global configuration Mode:

RouterB (config) # router igrp 1 

(Enable IGRP protocol and 1 is Autonomous number)

RouterB (config-router) # network 20.0.0.0 

(Advertised router B Serial Network 20.0.0.0)

vB (config-router) # network 30.0.0.0 

(Advertised router B Serial Network 30.0.0.0)

RouterB (config-router) # network 210.100.20.0

(Advertised router B Ethernet Network 210.100.20.0)

RouterB (config-router) # redistribute rip metric 1 1 1 1 1

RouterB#(config-router)#exit

First check the router C status before RIP configuration.

RouterC#show ip route

C         30.0.0.0/8 is directly connected, serial0/1

C         210.100.30.0/24 is directly connected, loopback0

Configure RIP on Router C

RouterC#configure terminal

RouterC#(config)#router rip

RouterC#(config-router)#network 30.0.0.0

RouterC#(config-router)#network 210.100.30.0

RouterC#(config-router)#exit

Now verify the result on all routers after convergence.

First check on router A

RouterA#show ip route

C    20.0.0.0/8 is directly connected, Serial0

I     30.0.0.0/8 [100/10476] via 20.1.1.2, 00:01:03, Serial0

C    210.100.10.0/24 is directly connected, Ethernet0

I    210.100.20.0/24 [100/8576] via 20.1.1.2, 00:01:03, Serial0

I    210.100.30.0/24 [100/10002001] via 20.1.1.2, 00:01:03, Serial0

 

RouterB#show ip route

C    20.0.0.0/8 is directly connected, Serial0

C   30.0.0.0/8 is directly connected, Serial1

C    210.100.20.0/24 is directly connected, Ethernet0

I    210.100.10.0/24 [100/3100] via 20.1.1.1, 00:01:03, Serial0

R   210.100.30.0/24 [120/1] via 30.1.1.2, 00:01:03, Serial0

RouterC#show ip route

 

R    20.0.0.0/8 [120/1] via 30.1.1.1, 00:00:08, Serial1

C    30.0.0.0/8 is directly connected, Serial1

R    210.100.10.0/24 [120/1] via 30.1.1.1, 00:00:08, Serial1

R    210.100.20.0/24 [120/1] via 30.1.1.1, 00:00:08, Serial1

C    210.100.30.0/24 is directly connected, Ethernet0

Yesterday Tip.

How to apply password and compressed feature in windows XP?