summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_openvpn_csc.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2013-12-26 16:41:24 -0500
committerjim-p <jimp@pfsense.org>2013-12-26 16:41:24 -0500
commit5c427ce7e83b1281f30787aac4d51452863637b6 (patch)
tree8a6add67304e0c9b07bec074d16c7fa57d288ac3 /usr/local/www/vpn_openvpn_csc.php
parent9bc68540436b3564e34459a42802f62c1030e7d8 (diff)
downloadpfsense-5c427ce7e83b1281f30787aac4d51452863637b6.zip
pfsense-5c427ce7e83b1281f30787aac4d51452863637b6.tar.gz
Add support for local (push route) and remote (iroute) network definitions in an OpenVPN client-specific override entry.
Diffstat (limited to 'usr/local/www/vpn_openvpn_csc.php')
-rw-r--r--usr/local/www/vpn_openvpn_csc.php68
1 files changed, 68 insertions, 0 deletions
diff --git a/usr/local/www/vpn_openvpn_csc.php b/usr/local/www/vpn_openvpn_csc.php
index f01b5db..28810a2 100644
--- a/usr/local/www/vpn_openvpn_csc.php
+++ b/usr/local/www/vpn_openvpn_csc.php
@@ -76,6 +76,10 @@ if($_GET['act']=="edit"){
$pconfig['description'] = $a_csc[$id]['description'];
$pconfig['tunnel_network'] = $a_csc[$id]['tunnel_network'];
+ $pconfig['local_network'] = $a_csc[$id]['local_network'];
+ $pconfig['local_networkv6'] = $a_csc[$id]['local_networkv6'];
+ $pconfig['remote_network'] = $a_csc[$id]['remote_network'];
+ $pconfig['remote_networkv6'] = $a_csc[$id]['remote_networkv6'];
$pconfig['gwredir'] = $a_csc[$id]['gwredir'];
$pconfig['push_reset'] = $a_csc[$id]['push_reset'];
@@ -125,6 +129,18 @@ if ($_POST) {
if ($result = openvpn_validate_cidr($pconfig['tunnel_network'], 'Tunnel network'))
$input_errors[] = $result;
+ if ($result = openvpn_validate_cidr($pconfig['local_network'], 'IPv4 Local Network', true, "ipv4"))
+ $input_errors[] = $result;
+
+ if ($result = openvpn_validate_cidr($pconfig['local_networkv6'], 'IPv6 Local Network', true, "ipv6"))
+ $input_errors[] = $result;
+
+ if ($result = openvpn_validate_cidr($pconfig['remote_network'], 'IPv4 Remote Network', true, "ipv4"))
+ $input_errors[] = $result;
+
+ if ($result = openvpn_validate_cidr($pconfig['remote_networkv6'], 'IPv6 Remote Network', true, "ipv6"))
+ $input_errors[] = $result;
+
if ($pconfig['dns_server_enable']) {
if (!empty($pconfig['dns_server1']) && !is_ipaddr(trim($pconfig['dns_server1'])))
$input_errors[] = gettext("The field 'DNS Server #1' must contain a valid IP address");
@@ -176,6 +192,10 @@ if ($_POST) {
$csc['description'] = $pconfig['description'];
$csc['tunnel_network'] = $pconfig['tunnel_network'];
+ $csc['local_network'] = $pconfig['local_network'];
+ $csc['local_networkv6'] = $pconfig['local_networkv6'];
+ $csc['remote_network'] = $pconfig['remote_network'];
+ $csc['remote_networkv6'] = $pconfig['remote_networkv6'];
$csc['gwredir'] = $pconfig['gwredir'];
$csc['push_reset'] = $pconfig['push_reset'];
@@ -389,6 +409,54 @@ function netbios_change() {
"interface"); ?>.
</td>
</tr>
+ <tr id="local_optsv4">
+ <td width="22%" valign="top" class="vncell"><?=gettext("IPv4 Local Network/s"); ?></td>
+ <td width="78%" class="vtable">
+ <input name="local_network" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['local_network']);?>">
+ <br>
+ <?=gettext("These are the IPv4 networks that will be accessible " .
+ "from this particular client. Expressed as a comma-separated list of one or more CIDR ranges."); ?>
+ </td>
+ </tr>
+ <tr id="local_optsv6">
+ <td width="22%" valign="top" class="vncell"><?=gettext("IPv6 Local Network/s"); ?></td>
+ <td width="78%" class="vtable">
+ <input name="local_networkv6" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['local_networkv6']);?>">
+ <br>
+ <?=gettext("These are the IPv6 networks that will be accessible " .
+ "from this particular client. Expressed as a comma-separated list of one or more IP/PREFIX networks."); ?>
+ </td>
+ </tr>
+ <tr id="remote_optsv4">
+ <td width="22%" valign="top" class="vncell"><?=gettext("IPv4 Remote Network/s"); ?></td>
+ <td width="78%" class="vtable">
+ <input name="remote_network" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['remote_network']);?>">
+ <br>
+ <?=gettext("These are the IPv4 networks that will be routed " .
+ "to this client specifically using iroute, so that a site-to-site " .
+ "VPN can be established. " .
+ "Expressed as a comma-separated list of one or more CIDR ranges. " .
+ "You may leave this blank if there are no client-side networks to" .
+ "be routed"); ?>.
+ <br/><?=gettext("NOTE: Remember to add these subnets to the " .
+ "IPv4 Remote Networks list on the correspding OpenVPN server settings.");?>
+ </td>
+ </tr>
+ <tr id="remote_optsv6">
+ <td width="22%" valign="top" class="vncell"><?=gettext("IPv6 Remote Network/s"); ?></td>
+ <td width="78%" class="vtable">
+ <input name="remote_networkv6" type="text" class="formfld unknown" size="40" value="<?=htmlspecialchars($pconfig['remote_networkv6']);?>">
+ <br>
+ <?=gettext("These are the IPv6 networks that will be routed " .
+ "to this client specifically using iroute, so that a site-to-site " .
+ "VPN can be established. " .
+ "Expressed as a comma-separated list of one or more IP/PREFIX networks. " .
+ "You may leave this blank if there are no client-side networks to" .
+ "be routed"); ?>.
+ <br/><?=gettext("NOTE: Remember to add these subnets to the " .
+ "IPv6 Remote Networks list on the correspding OpenVPN server settings.");?>
+ </td>
+ </tr>
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Redirect Gateway"); ?></td>
<td width="78%" class="vtable">
OpenPOWER on IntegriCloud