- =gettext("This is the IPv4 virtual network used for private " .
- "communications between this client and the " .
- "server expressed using CIDR (eg. 10.0.8.0/24). " .
- "The first network address is assumed to be the " .
- "server address and the second network address " .
- "will be assigned to the client virtual " .
- "interface"); ?>.
+ =sprintf(
+ gettext(
+ "This defines the %s network used for this client in CIDR format, the addressing depends on ".
+ "the device mode (tun, tap) and the choice for topology.
".
+ "When topology is unset for a server in tun mode, the first network address is ".
+ "assumed to be the server address and the second network address will be assigned to the client virtual ".
+ "interface. ".
+ "Otherwise the configured address is used for this clients virtual interface using the configured netmask."
+ ),
+ gettext("IPv4"));?>
@@ -478,13 +481,16 @@ include("fbegin.inc");
- =gettext("This is the IPv6 virtual network used for private " .
- "communications between this server and client " .
- "hosts expressed using CIDR (eg. fe80::/64). " .
- "The first network address will be assigned to " .
- "the server virtual interface. The remaining " .
- "network addresses can optionally be assigned " .
- "to connecting clients. (see Address Pool)"); ?>
+ =sprintf(
+ gettext(
+ "This defines the %s network used for this client in CIDR format, the addressing depends on ".
+ "the device mode (tun, tap) and the choice for topology.
".
+ "When topology is unset for a server in tun mode, the first network address is ".
+ "assumed to be the server address and the second network address will be assigned to the client virtual ".
+ "interface. ".
+ "Otherwise the configured address is used for this clients virtual interface using the configured netmask."
+ ),
+ gettext("IPv6"));?>