OSPF Multi-Area

written by: Ehsan Emad

In this article I want to talk about OSPF Multi-Area solution.

OSPF uses the concept of area, and the area is like a subdomain.

When a router interface is in a specific area, it maintains the topology information of that area.

An important note about OSPF is that an interface can only belong to "ONE" area. The issue with the rule is In some topologies; it can cause sub-optimal routing.

In my scenario, we are trying to demo this sub-optimal routing experience.

ospf-multiarea-base

If the network behind R2 (1.1.1.0/24) wants to reach the network behind R5(2.2.2.0/24), what is the best path?

OSPF Shortest

Clearly, the shortest path is the R2-R5 Direct link!

Challenge

In our scenario, if the "R2-R5" link belongs to area "0", which link is best and shortest from the "R2" point of view?

And how about if the "R2-R5" link belongs to area "10"?

Let's find out!

We configure loopbacks into two different areas.

Loopback "0" in "R2" belongs to the area "0"; loopback "0" in "R5" belongs to the area "10", and the "R2-R5" link belongs to the area "0."

ospf-area-loopback

Now we are going to configure OSPF and check the result!

In this picture, we can see the topology and IP addresses of this scenario

ospf-multiare-base-ip

R2-R5 link belongs to area 0

R2-Configuration

ospf-r2-interafce

R5-Configuration

ospf-r5-interface

Now check out the traces:

1- from R5 (2.2.2.2) to R2(1.1.1.1):

ospf-trace-r5tor2

2- now from R2(1.1.1.1) to R5(2.2.2.2)

ospf-trace-r2tor5

This suboptimal routing is due to intra-area route preference over the inter area routes.

Solution

With multi-area adjacency, a single physical link (router interface) can belong to multiple OSPF areas.

Now we have multiple intra-area paths sharing the same physical link.

Important notes about multi-area solution:

  • You must configure OSPF on the primary interface.

  • Link type must be point-to-point

Now is configuration time.

Step 1:

change ospf network type into "point-to-point."

Step 2:

we have to go under interface and issue this command

# ip ospf 1 multiarea x ---> in our example x=10

ospf-multi-area-r5-config

After issuing the command on both sides (R2 and R5), we have a new adjacency:

ospf-multiarea-neighbor

I want to try traceroute again but this time after ospf multi-area configuration:

trace1-after-multiarea

trace2-after-multiarea

Conclusion

Now in both directions, we are choosing the shortest path, and we don't experience any suboptimal routing.

I hope this article is useful for you and you enjoyed it.

3883
0
3
Leave your comment