Adding/importing a list of routes
-
Is there a way to add/import a list of routes? I need to add a list of about 50 routes, and looking to not have to do them one by one. Thanks.
-
@along5664
What are we talking about here? Dynamic routing routes or static routes? Static routes there’s no import feature as far as I know. Dynamic routing you accomplish this through prefix-lists -
@michmoor staic routes is what I am looking for.
-
@along5664 no import list in the GUI unless you feel comfortable modifying the config.xml file? You can investigate that file and see how static routes are configured there and programmatically build your static routes there.
Another option is to aggregate routes. This is dependent on what networks you are trying to reach and how well you understand subnetting. So let’s say all your remote subnets are in the 192.168.X.X range you can create a static route 192.168.0.0/16. -
@michmoor I have a pile of /32 routes I may try the xml file. Thnx.