08-24-2015 11:12 AM - edited 03-08-2019 01:29 AM
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
08-24-2015 11:43 AM
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.
08-24-2015 12:13 PM
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
08-24-2015 01:39 PM
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
08-25-2015 06:22 AM
Thank you gentlemen. I wanted to be sure before I pulled the trigger.
08-24-2015 05:03 PM
Yep.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide