2

I made an ospf multi area topology, but it's inconsistent. At times, host from the A area could ping to hosts in other areas however, sometimes otherwise (failed to arrive). Whenever I tried to do a ping test, 50% of the packet was successfully delivered and the rest was failed (packet loss).

This is my topology enter image description here

This is my .pkt file

Packet Tracer file

Ron Maupin
  • 99,565
  • 26
  • 120
  • 195
Soramonz
  • 23
  • 2
  • You need to edit the question to include the router configurations. Most people do not use Packet Tracer because it is so limited. Simply copy the configurations and paste them into the question using the Preformatted-text option ({}), which will automatically create scroll boxes for each configuration. – Ron Maupin Dec 02 '18 at 17:02

1 Answers1

4

One big problem I see right off the bat is that you have duplicate networks in Area 2 and Area 4.

The networks 172.16.1.0/16 and 172.16.2.0/16 are really the same network: 172.16.0.0/16.

The networks 172.30.1.0/16 and 172.30.2.0/16 are really the same network: 172.30.0.0/16.

That will cause an anycast situation, where the routing protocol will have the same network advertised from two different places, but there will only be one entry in the routing table, which is the closest (by the routing protocol metrics), so different routers in Area 0 will have different paths.


You certainly need to fix the addressing, and that may solve all of your problems, but there may be others that we cannot see because you didn't include the router configurations, routing tables, etc.

It appears that you do not have a full grasp of IPv4 addressing, and I would suggest that you read and understand the answers to this question.

Ron Maupin
  • 99,565
  • 26
  • 120
  • 195