diff options
author | Ermal Luçi <eri@pfsense.org> | 2009-02-15 21:34:00 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2009-02-15 21:34:00 +0000 |
commit | a56120f2793bf778b171784f7ebac4d624f8d494 (patch) | |
tree | 52daf5c640ceabff665d47fa3c1e9148c14194ac /usr | |
parent | eff29d62c50803fe5eaf3b3d9089ac428c8811ad (diff) | |
download | pfsense-a56120f2793bf778b171784f7ebac4d624f8d494.zip pfsense-a56120f2793bf778b171784f7ebac4d624f8d494.tar.gz |
Remove all global decalarations regarding pptp/pppoe/l2tp they are no more needed.
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/vpn_l2tp.php | 29 | ||||
-rwxr-xr-x | usr/local/www/vpn_pppoe.php | 6 | ||||
-rwxr-xr-x | usr/local/www/vpn_pptp.php | 6 |
3 files changed, 32 insertions, 9 deletions
diff --git a/usr/local/www/vpn_l2tp.php b/usr/local/www/vpn_l2tp.php index 231eef1..41da308 100644 --- a/usr/local/www/vpn_l2tp.php +++ b/usr/local/www/vpn_l2tp.php @@ -39,6 +39,7 @@ $l2tpcfg = &$config['l2tp']; $pconfig['remoteip'] = $l2tpcfg['remoteip']; $pconfig['localip'] = $l2tpcfg['localip']; +$pconfig['l2tp_subnet'] = $l2tpcfg['l2tp_subnet']; $pconfig['mode'] = $l2tpcfg['mode']; $pconfig['interface'] = $l2tpcfg['interface']; $pconfig['radiusenable'] = isset($l2tpcfg['radius']['enable']); @@ -70,7 +71,7 @@ if ($_POST) { if (($_POST['localip'] && !is_ipaddr($_POST['localip']))) { $input_errors[] = gettext("A valid server address must be specified."); } - if (($_POST['subnet'] && !is_ipaddr($_POST['remoteip']))) { + if (($_POST['l2tp_subnet'] && !is_ipaddr($_POST['remoteip']))) { $input_errors[] = gettext("A valid remote start address must be specified."); } if (($_POST['radiusserver'] && !is_ipaddr($_POST['radiusserver']))) { @@ -84,9 +85,9 @@ if ($_POST) { } if (!$input_errors) { - $_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $g['l2tp_subnet']); + $_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $_POST['l2tp_subnet']); $subnet_start = ip2long($_POST['remoteip']); - $subnet_end = ip2long($_POST['remoteip']) + $g['n_l2tp_units'] - 1; + $subnet_end = ip2long($_POST['remoteip']) + $_POST['n_l2tp_units'] - 1; if ((ip2long($_POST['localip']) >= $subnet_start) && (ip2long($_POST['localip']) <= $subnet_end)) { @@ -107,6 +108,7 @@ if ($_POST) { if (!$input_errors) { $l2tpcfg['remoteip'] = $_POST['remoteip']; $l2tpcfg['localip'] = $_POST['localip']; + $l2tpcfg['l2tp_subnet'] = $_POST['l2tp_subnet']; $l2tpcfg['mode'] = $_POST['mode']; $l2tpcfg['interface'] = $_POST['interface']; $l2tpcfg['n_l2tp_units'] = $_POST['n_l2tp_units']; @@ -168,6 +170,7 @@ function enable_change(enable_over) { if ((get_radio_value(document.iform.mode) == "server") || enable_over) { document.iform.remoteip.disabled = 0; document.iform.localip.disabled = 0; + document.iform.l2tp_subnet.disabled = 0; document.iform.radiusenable.disabled = 0; document.iform.radiusissueips.disabled = 0; document.iform.paporchap.disabled = 0; @@ -176,6 +179,7 @@ function enable_change(enable_over) { /* fix colors */ document.iform.remoteip.style.backgroundColor = '#FFFFFF'; document.iform.localip.style.backgroundColor = '#FFFFFF'; + document.iform.l2tp_subnet.style.backgroundColor = '#FFFFFF'; document.iform.radiusenable.style.backgroundColor = '#FFFFFF'; document.iform.radiusissueips.style.backgroundColor = '#FFFFFF'; document.iform.paporchap.style.backgroundColor = '#FFFFFF'; @@ -205,6 +209,7 @@ function enable_change(enable_over) { } else { document.iform.interface.disabled = 1; document.iform.n_l2tp_units.disabled = 1; + document.iform.l2tp_subnet.disabled = 1; document.iform.paporchap.disabled = 1; document.iform.remoteip.disabled = 1; document.iform.localip.disabled = 1; @@ -216,6 +221,7 @@ function enable_change(enable_over) { /* fix colors */ document.iform.interface.style.backgroundColor = '#D4D0C8'; document.iform.n_l2tp_units.style.backgroundColor = '#D4D0C8'; + document.iform.l2tp_subnet.style.backgroundColor = '#D4D0C8'; document.iform.paporchap.style.backgroundColor = '#D4D0C8'; document.iform.remoteip.style.backgroundColor = '#D4D0C8'; document.iform.localip.style.backgroundColor = '#D4D0C8'; @@ -296,6 +302,23 @@ function enable_change(enable_over) { </td> </tr> <tr> + <td width="22%" valign="top" class="vncellreq">Subnet netmask</td> + <td width="78%" class="vtable"> + <select id="l2tp_subnet" name="l2tp_subnet"> + <?php + for($x=0; $x<33; $x++) { + if($x == $pconfig['l2tp_subnet']) + $SELECTED = " SELECTED"; + else + $SELECTED = ""; + echo "<option value=\"{$x}\"{$SELECTED}>{$x}</option>\n"; + } + ?> + </select> + <br>Hint: 24 is 255.255.255.0 + </td> + </tr> + <tr> <td width="22%" valign="top" class="vncellreq">No. L2TP users</td> <td width="78%" class="vtable"> <select id="n_l2tp_units" name="n_l2tp_units"> diff --git a/usr/local/www/vpn_pppoe.php b/usr/local/www/vpn_pppoe.php index 2faa4f1..12c6cd8 100755 --- a/usr/local/www/vpn_pppoe.php +++ b/usr/local/www/vpn_pppoe.php @@ -89,7 +89,7 @@ if ($_POST) { if (($_POST['localip'] && !is_ipaddr($_POST['localip']))) { $input_errors[] = "A valid server address must be specified."; } - if (($_POST['subnet'] && !is_ipaddr($_POST['remoteip']))) { + if (($_POST['pppoe_subnet'] && !is_ipaddr($_POST['remoteip']))) { $input_errors[] = "A valid remote start address must be specified."; } if (($_POST['radiusserver'] && !is_ipaddr($_POST['radiusserver']))) { @@ -97,9 +97,9 @@ if ($_POST) { } if (!$input_errors) { - $_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $g['pppoe_subnet']); + $_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $_POST['pppoe_subnet']); $subnet_start = ip2long($_POST['remoteip']); - $subnet_end = ip2long($_POST['remoteip']) + $g['pppoe_subnet'] - 1; + $subnet_end = ip2long($_POST['remoteip']) + $_POST['pppoe_subnet'] - 1; if ((ip2long($_POST['localip']) >= $subnet_start) && (ip2long($_POST['localip']) <= $subnet_end)) { diff --git a/usr/local/www/vpn_pptp.php b/usr/local/www/vpn_pptp.php index 0bd1070..0ffff02 100755 --- a/usr/local/www/vpn_pptp.php +++ b/usr/local/www/vpn_pptp.php @@ -89,7 +89,7 @@ if ($_POST) { if (($_POST['localip'] && !is_ipaddr($_POST['localip']))) { $input_errors[] = "A valid server address must be specified."; } - if (($_POST['subnet'] && !is_ipaddr($_POST['remoteip']))) { + if (($_POST['pptp_subnet'] && !is_ipaddr($_POST['remoteip']))) { $input_errors[] = "A valid remote start address must be specified."; } if (($_POST['radiusserver'] && !is_ipaddr($_POST['radiusserver']))) { @@ -97,9 +97,9 @@ if ($_POST) { } if (!$input_errors) { - $_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $g['pptp_subnet']); + $_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $_POST['pptp_subnet']); $subnet_start = ip2long($_POST['remoteip']); - $subnet_end = ip2long($_POST['remoteip']) + $g['n_pptp_units'] - 1; + $subnet_end = ip2long($_POST['remoteip']) + $_POST['n_pptp_units'] - 1; if ((ip2long($_POST['localip']) >= $subnet_start) && (ip2long($_POST['localip']) <= $subnet_end)) { |