• 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 defs:netmask

206   "--route network [netmask] [gateway] [metric] :\n"
209 " netmask default: 255.255.255.255\n"
243 "--client-nat snat|dnat network netmask alias : on client add 1-to-1 NAT rule.\n"
417 "--server network netmask : Helper option to easily configure server mode.\n"
419 "--server-bridge [IP netmask pool-start-IP pool-end-IP] : Helper option to\n"
425 "--ifconfig-pool start-IP end-IP [netmask] : Set aside a pool of subnets\n"
434 "--ifconfig-push local remote-netmask : Push an ifconfig option to remote,\n"
440 "--iroute network [netmask] : Route subnet to client.\n"
1246 const in_addr_t netmask = getaddr (GETADDR_HOST_ORDER, netmask_str, 0, NULL, NULL);
1247 if (!netmask_to_netbits (ir->network, netmask, &ir->netbits))
1912 msg (M_USAGE, "local and remote/netmask --ifconfig addresses must be different");
2050 msg (M_USAGE, "The third parameter to --ifconfig-pool (netmask) is only valid in --dev tap mode");
5125 msg (msglevel, "route parameter netmask '%s' must be an IP address", p[2]);
5349 in_addr_t network, netmask;
5353 netmask = get_ip_addr (p[2], lev, &error);
5354 if (error || !network || !netmask)
5361 options->server_netmask = netmask;
5405 in_addr_t ip, netmask, pool_start, pool_end;
5409 netmask = get_ip_addr (p[2], lev, &error);
5412 if (error || !ip || !netmask || !pool_start || !pool_end)
5419 options->server_bridge_netmask = netmask;
5448 in_addr_t start, end, netmask=0;
5455 netmask = get_ip_addr (p[3], lev, &error);
5468 if (netmask)
5469 options->ifconfig_pool_netmask = netmask;
5689 const char *netmask = NULL;
5694 netmask = p[2];
5696 option_iroute (options, p[1], netmask, msglevel);
5728 in_addr_t network, netmask;
5732 netmask = getaddr (GETADDR_HOST_ORDER, p[2], 0, NULL, NULL);
5733 if (network && netmask)
5737 options->push_ifconfig_constraint_netmask = netmask;