summaryrefslogtreecommitdiffstats
path: root/usr/local/www
diff options
context:
space:
mode:
authormgrooms <mgrooms@shrew.net>2009-03-15 03:47:18 +0000
committermgrooms <mgrooms@shrew.net>2009-03-15 03:47:18 +0000
commit87e07f5242b8018a9c45afee448377d05fbe00c4 (patch)
tree9d49712e09c5eafd81d59c4e7f0ae0da4f43fb58 /usr/local/www
parent07ea77d066fafcf8121dddf83cec8f38e051e986 (diff)
downloadpfsense-87e07f5242b8018a9c45afee448377d05fbe00c4.zip
pfsense-87e07f5242b8018a9c45afee448377d05fbe00c4.tar.gz
Move the IPsec pinghost option from phase1 to phase2. Correct some
bugs that were preventing the local address from being selected.
Diffstat (limited to 'usr/local/www')
-rwxr-xr-xusr/local/www/vpn_ipsec.php2
-rw-r--r--usr/local/www/vpn_ipsec_phase1.php11
-rw-r--r--usr/local/www/vpn_ipsec_phase2.php28
3 files changed, 27 insertions, 14 deletions
diff --git a/usr/local/www/vpn_ipsec.php b/usr/local/www/vpn_ipsec.php
index 44efa5a..c309986 100755
--- a/usr/local/www/vpn_ipsec.php
+++ b/usr/local/www/vpn_ipsec.php
@@ -440,7 +440,7 @@ function show_ipsec_header() {
<td class="listhdrr">Mode</td>
<td class="listhdrr">P1 Protocol</td>
<td class="listhdrr">P1 Transforms</td>
- <td class="listhdrr">P2 DEscription</td>
+ <td class="listhdrr">P1 Description</td>
<td class ="list">
<a href="vpn_ipsec_phase2.php?ikeid={$ph1ent['ikeid']}{$mobile}">
<img src="./themes/{$g['theme']}/images/icons/icon_plus.gif" title="add phase2 entry" width="17" height="17" border="0">
diff --git a/usr/local/www/vpn_ipsec_phase1.php b/usr/local/www/vpn_ipsec_phase1.php
index 174f884..36e1924 100644
--- a/usr/local/www/vpn_ipsec_phase1.php
+++ b/usr/local/www/vpn_ipsec_phase1.php
@@ -106,8 +106,6 @@ if (isset($p1index) && $a_phase1[$p1index])
$pconfig['dpd_delay'] = $a_phase1[$p1index]['dpd_delay'];
$pconfig['dpd_maxfail'] = $a_phase1[$p1index]['dpd_maxfail'];
}
-
- $pconfig['pinghost'] = $a_phase1[$p1index]['pinghost'];
}
else
{
@@ -302,8 +300,6 @@ if ($_POST) {
$ph1ent['dpd_maxfail'] = $pconfig['dpd_maxfail'];
}
- $ph1ent['pinghost'] = $pconfig['pinghost'];
-
/* generate unique phase1 ikeid */
if ($ph1ent['ikeid'] == 0)
$ph1ent['ikeid'] = ipsec_ikeid_next();
@@ -725,13 +721,6 @@ function dpdchkbox_change() {
</td>
</tr>
<tr>
- <td width="22%" valign="top" class="vncell">Automatically ping host</td>
- <td width="78%" class="vtable">
- <input name="pinghost" type="text" class="formfld unknown" id="pinghost" size="20" value="<?=$pconfig['pinghost'];?>">
- IP address
- </td>
- </tr>
- <tr>
<td width="22%" valign="top">&nbsp;</td>
<td width="78%">
<?php if (isset($p1index) && $a_phase1[$p1index]): ?>
diff --git a/usr/local/www/vpn_ipsec_phase2.php b/usr/local/www/vpn_ipsec_phase2.php
index a18a1de..bd922b4 100644
--- a/usr/local/www/vpn_ipsec_phase2.php
+++ b/usr/local/www/vpn_ipsec_phase2.php
@@ -74,6 +74,7 @@ if (isset($p2index) && $a_phase2[$p2index])
$pconfig['halgos'] = $a_phase2[$p2index]['hash-algorithm-option'];
$pconfig['pfsgroup'] = $a_phase2[$p2index]['pfsgroup'];
$pconfig['lifetime'] = $a_phase2[$p2index]['lifetime'];
+ $pconfig['pinghost'] = $a_phase2[$p2index]['pinghost'];
if (isset($a_phase2[$p2index]['mobile']))
$pconfig['mobile'] = true;
@@ -161,6 +162,7 @@ if ($_POST) {
$ph2ent['hash-algorithm-option'] = $pconfig['halgos'];
$ph2ent['pfsgroup'] = $pconfig['pfsgroup'];
$ph2ent['lifetime'] = $pconfig['lifetime'];
+ $ph2ent['pinghost'] = $pconfig['pinghost'];
$ph2ent['descr'] = $pconfig['descr'];
if (isset($pconfig['mobile']))
@@ -262,6 +264,15 @@ function typesel_change_remote(bits) {
<?php endif; ?>
+function protocol_change() {
+ index = document.iform.proto.selectedIndex;
+ value = document.iform.proto.options[index].value;
+ if (value == 'esp')
+ document.getElementById('opt_enc').style.display = '';
+ else
+ document.getElementById('opt_enc').style.display = 'none';
+}
+
//-->
</script>
@@ -395,7 +406,7 @@ function typesel_change_remote(bits) {
<tr>
<td width="22%" valign="top" class="vncellreq">Protocol</td>
<td width="78%" class="vtable">
- <select name="proto" class="formselect">
+ <select name="proto" class="formselect" onChange="protocol_change()">
<?php foreach ($p2_protos as $proto => $protoname): ?>
<option value="<?=$proto;?>" <?php if ($proto == $pconfig['proto']) echo "selected"; ?>>
<?=htmlspecialchars($protoname);?>
@@ -408,7 +419,7 @@ function typesel_change_remote(bits) {
</span>
</td>
</tr>
- <tr>
+ <tr id="opt_enc">
<td width="22%" valign="top" class="vncellreq">Encryption algorithms</td>
<td width="78%" class="vtable">
<table border="0" cellspacing="0" cellpadding="0">
@@ -503,6 +514,19 @@ function typesel_change_remote(bits) {
</td>
</tr>
<tr>
+ <td colspan="2" class="list" height="12"></td>
+ </tr>
+ <tr>
+ <td colspan="2" valign="top" class="listtopic">Advanced Options</td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Automatically ping host</td>
+ <td width="78%" class="vtable">
+ <input name="pinghost" type="text" class="formfld unknown" id="pinghost" size="20" value="<?=$pconfig['pinghost'];?>">
+ IP address
+ </td>
+ </tr>
+ <tr>
<td width="22%" valign="top">&nbsp;</td>
<td width="78%">
<?php if (isset($p2index) && $a_phase2[$p2index]): ?>
OpenPOWER on IntegriCloud