diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-12-26 02:51:18 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-12-26 02:51:18 +0000 |
commit | c25a575f1dba3140afc769eb9946e2e40895d86b (patch) | |
tree | 3d7f1249259804fa1ac559a5478e95bdc98f06df /usr | |
parent | 3fdb04a65df0448cf91037839ba5fe52af8f4cde (diff) | |
download | pfsense-c25a575f1dba3140afc769eb9946e2e40895d86b.zip pfsense-c25a575f1dba3140afc769eb9946e2e40895d86b.tar.gz |
Remove auto establish. It's never worked.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/vpn_ipsec_edit.php | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/usr/local/www/vpn_ipsec_edit.php b/usr/local/www/vpn_ipsec_edit.php index c213b4b..4e42109 100755 --- a/usr/local/www/vpn_ipsec_edit.php +++ b/usr/local/www/vpn_ipsec_edit.php @@ -187,7 +187,7 @@ if ($_POST) { if (!$input_errors) { $ipsecent['disabled'] = $_POST['disabled'] ? true : false; - $ipsecent['auto'] = $_POST['auto'] ? true : false; + //$ipsecent['auto'] = $_POST['auto'] ? true : false; $ipsecent['interface'] = $pconfig['interface']; pconfig_to_address($ipsecent['local-subnet'], $_POST['localnet'], $_POST['localnetmask']); $ipsecent['remote-subnet'] = $_POST['remotenet'] . "/" . $_POST['remotebits']; @@ -304,14 +304,7 @@ function methodsel_change() { <span class="vexpl">Set this option to disable this tunnel without removing it from the list.</span></td> </tr> - <tr> - <td width="22%" valign="top" class="vncellreq">Auto-establish</td> - <td width="78%" class="vtable"> - <input name="auto" type="checkbox" id="auto" value="yes" <?php if ($pconfig['auto']) echo "checked"; ?>> - <strong>Automatically establish this tunnel</strong><br> - <span class="vexpl">Set this option to automatically re-establish this tunnel after reboots/reconfigures. If this is not set, the tunnel is established on demand.</span></td> - </tr> - <tr> + <tr> <td width="22%" valign="top" class="vncellreq">Interface</td> <td width="78%" class="vtable"><select name="interface" class="formfld"> <?php $interfaces = array('wan' => 'WAN', 'lan' => 'LAN'); |