• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/

Lines Matching refs:routes

208   "                  is established.  Multiple routes can be specified.\n"
214 " is established. Multiple routes can be specified.\n"
216 "--max-routes n : Specify the maximum number of routes that may be defined\n"
221 " adding routes (may be 0). If not specified, routes will\n"
224 "--route-up cmd : Run command cmd after routes are added.\n"
225 "--route-pre-down cmd : Run command cmd before routes are removed.\n"
226 "--route-noexec : Don't add routes automatically. Instead pass routes to\n"
229 " by server EXCEPT for routes and dhcp options.\n"
442 " Sets up internal routes only.\n"
478 "--max-routes-per-client n : Allow a maximum of n internal routes per client.\n"
479 "--stale-routes-check n [t] : Remove routes with a last activity timestamp\n"
682 "--route-method : Which method to use for adding routes on Windows?\n"
714 " after TAP adapter is up and routes have been added.\n"
1303 o->routes = NULL;
1315 if (!options->routes)
1316 options->routes = new_route_option_list (options->max_routes, &options->gc);
1527 if (o->routes)
1528 print_route_options (o->routes, D_SHOW_PARMS);
2055 if (options->routes && (options->routes->flags & RG_ENABLE))
2133 msg (M_USAGE, "--stale-routes-check requires --mode server");
2790 if (o->routes)
2792 o->pre_pull->routes = clone_route_option_list(o->routes, &o->gc);
2823 copy_route_option_list (o->routes, pp->routes);
2826 o->routes = NULL;
5134 add_route_to_option_list (options->routes, p[1], p[2], p[3], p[4]);
5156 else if (streq (p[0], "max-routes") && p[1])
5164 msg (msglevel, "--max-routes parameter is out of range");
5167 if (options->routes || options->routes_ipv6)
5169 msg (msglevel, "--max-routes must to be specifed before any route/route-ipv6/redirect-gateway option");
5253 options->routes->flags |= RG_REROUTE_GW;
5257 options->routes->flags |= RG_LOCAL;
5259 options->routes->flags |= RG_AUTO_LOCAL;
5261 options->routes->flags |= RG_DEF1;
5263 options->routes->flags |= RG_BYPASS_DHCP;
5265 options->routes->flags |= RG_BYPASS_DNS;
5267 options->routes->flags |= RG_BLOCK_LOCAL;
5274 options->routes->flags |= RG_ENABLE;
5550 else if (streq (p[0], "max-routes-per-client") && p[1])
5792 else if (streq (p[0], "stale-routes-check") && p[1])
5805 msg (msglevel, "--stale-routes-check aging time and check interval must be >= 1");