diff --git a/src/wizard/openvpn.xml b/src/wizard/openvpn.xml
index 0399bf864..5e0cff892 100644
--- a/src/wizard/openvpn.xml
+++ b/src/wizard/openvpn.xml
@@ -719,7 +719,7 @@
input20ovpnserver->step10->tunnelnet
- This is the virtual network used for private communications between this server and client hosts expressed using CIDR notation (eg. 10.0.8.0/24). 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)
+ This is the IPv4 virtual network used for private communications between this server and client hosts expressed using CIDR notation (eg. 10.0.8.0/24). 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)Redirect Gateway
diff --git a/src/www/vpn_openvpn_client.php b/src/www/vpn_openvpn_client.php
index d4d57bed3..4e9ac9187 100644
--- a/src/www/vpn_openvpn_client.php
+++ b/src/www/vpn_openvpn_client.php
@@ -884,7 +884,7 @@ $( document ).ready(function() {
- =gettext("This is the virtual network used for private " .
+ =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 " .
diff --git a/src/www/vpn_openvpn_csc.php b/src/www/vpn_openvpn_csc.php
index d3ddbef55..a96ed903a 100644
--- a/src/www/vpn_openvpn_csc.php
+++ b/src/www/vpn_openvpn_csc.php
@@ -128,7 +128,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
exit;
} else {
/* perform validations */
- if ($result = openvpn_validate_cidr($pconfig['tunnel_network'], 'Tunnel network')) {
+ if ($result = openvpn_validate_cidr($pconfig['tunnel_network'], 'IPv4 Tunnel Network')) {
$input_errors[] = $result;
}
if ($result = openvpn_validate_cidr($pconfig['local_network'], 'IPv4 Local Network', true, "ipv4")) {
@@ -452,11 +452,11 @@ if ($act!="new" && $act!="edit") {
=gettext("Tunnel Settings"); ?>
-
=gettext("Tunnel Network"); ?>
+
=gettext("IPv4 Tunnel Network"); ?>
- =gettext("This is the virtual network used for private " .
+ =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 " .
@@ -467,7 +467,7 @@ if ($act!="new" && $act!="edit") {
-
=gettext("IPv4 Local Network/s"); ?>
+
=gettext("IPv4 Local Network"); ?>
@@ -479,7 +479,7 @@ if ($act!="new" && $act!="edit") {