cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
361
Views
0
Helpful
5
Replies

OSPF question

Balloonhead
Level 1
Level 1

I am curious what the best way would be to redistribute routes using ospf. The company I currently work for has 10 sites connnected via ipsec vpn tunnels. A vpn tunnel from each site to each site. I would like to redistribute the routes from all sites to all sites for redundancy aka routing issues with the isp so that the traffic will continue to flow from another direction. I am new to ospf meaning I have a basic understanding of how it works and how to set it up but I would like some input on the best way to redistribute the routes.

 

Thanks in advance

5 Replies 5

Joseph W. Doherty
Hall of Fame
Hall of Fame

Disclaimer

The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.

Liability Disclaimer

In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.

Posting

For just 10 sites, assuming there's not a huge number of routers, just having all your routers in the same OSPF area might be sufficient.

So a simple setup with a long bomb network statement on each router? 10 routers total, about 20 + subnets split up across the sites.

 

router ospf 1

network 0.0.0.0 255.255.255.255 area 0

As Joe noted one OSPF area (area 0) should be sufficient.

In each location, you can simply add the subnets for that location to OSPF.  For example, if you have 2 subnets for location 1 and 2 subnets for location 2, you can try this

location 1

192.168.1.0/24

192.168.2.0/24

router ospf 1

netwoork 192.168.1.0 0.0.0.255 area 0

netwoork 192.168.2.0 0.0.0.255 area 0

 

location 2

192.168.3.0/24

192.168.4.0/24

router ospf 1

netwoork 192.168.3.0 0.0.0.255 area 0

netwoork 192.168.4.0 0.0.0.255 area 0

and so on...

HTH

 

Thank you gentlemen. I wanted to be sure before I pulled the trigger.

Yep.

Review Cisco Networking for a $25 gift card