COMPUTER TIPS

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

 

Google

  Google Groups Beta Subscribe to Computer free Tips                                                  

Email:

Nov, 16 , 07                    Today's Tip                                        Add to Favorites   

                                                                              

   

Previous Tips e

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

June 07- Tips

May 07- Tips

April 07- Tips

March, 07- Tips

February, 07- Tips

January, 07- Tips

 

 

 

 

 

 

How to configure OSPF for multiple areas? 

OSPF is an open standard protocol and not relate to any particular vendor. OSPF propagate the changes to all networks more quickly as compare to RIP, IGRP protocols and only send the changed part of the routing table to the other routers with in their area. We can decrease the size of routing table by dividing a big network into logically small segment using its area feature. When you used OSPF for multiple areas, its configuration method is differs from the RIP and IGRP. 

There are some common OSPF configuration and Executable commands:

OSPF configuration on Router A 

In global configuration mode  

Router-A(config) # router ospf 10  (Here 10 indicate the process identification number)

Router-A(config-Router) # network 1.0.0.0 0.255.255.255 area 0 (Here 1.0.0.0 indicate the network ID and 0.225.255.255 wildcard mask with area 0)

Router-A(config-Router) # network 3.0.0.0 0.255.255.255 area 2 (Here 3.0.0.0 indicate the network ID and 0.225.255.255 wildcard mask with area 2)

Router-A(config-Router) # network 192.168.1.0 0.0.0.255 area 2 (Here 192.168.1.0 indicate the network ID and 0.0.0.255 wildcard mask with area 2)

OSPF configuration on Router B 

In global configuration mode  

Router-B(config) # router ospf  20  (Here 20 indicate the process identification number)

Router-B(config-Router) # network 1.0.0.0 0.255.255.255 area 0 (Here 1.0.0.0 indicate the network ID and 0.225.255.255 wildcard mask with area 0)

Router-B(config-Router) # network 2.0.0.0 0.255.255.255 area 0 (Here 2.0.0.0 indicate the network ID and 0.225.255.255 wildcard mask with area 0)

Router-B(config-Router) # network 192.168.2.0 0.0.0.255 area 0 (Here 192.168.2.0 indicate the network ID and 0.0.0.255 wildcard mask with area 0)

OSPF configuration on Router C 

In global configuration mode  

Router-C(config) # router ospf 30  (Here 30 indicate the process identification number)

Router-C(config-Router) # network 3.0.0.0 0.255.255.255 area 2 (Here 3.0.0.0 indicate the network ID and 0.225.255.255 wildcard mask with area 2)

Router-C(config-Router) # network 2.0.0.0 0.255.255.255 area 0 (Here 2.0.0.0 indicate the network ID and 0.225.255.255 wildcard mask with area 0)

Router-C(config-Router) # network 192.168.3.0 0.0.0.255 area 1 (Here 192.168.3.0 indicate the network ID and 0.0.0.255 wildcard mask with area 1) 

Now on all routers each Network route will be added automatically. You can verify this by using command Router#show ip router ospf on all routers.

Yesterday Tip.

How to access the sharing data offline?