summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_ipsec_phase1.php
diff options
context:
space:
mode:
authorN0YB <Al_Stu@Frontier.com>2014-03-06 19:03:32 -0800
committerN0YB <Al_Stu@Frontier.com>2014-03-06 19:03:32 -0800
commitc58a9ec3f1035bdb543aadf3ccff50812e24921f (patch)
treeaf62064f1af4988eeabbf202566180ca28fd60a7 /usr/local/www/vpn_ipsec_phase1.php
parentf3e65ef46e879c695713c6e78378adf5fbace173 (diff)
downloadpfsense-c58a9ec3f1035bdb543aadf3ccff50812e24921f.zip
pfsense-c58a9ec3f1035bdb543aadf3ccff50812e24921f.tar.gz
XHTML Compliance
VPN - IPsec - Tunnels
Diffstat (limited to 'usr/local/www/vpn_ipsec_phase1.php')
-rw-r--r--usr/local/www/vpn_ipsec_phase1.php135
1 files changed, 68 insertions, 67 deletions
diff --git a/usr/local/www/vpn_ipsec_phase1.php b/usr/local/www/vpn_ipsec_phase1.php
index a72b908..9d850df 100644
--- a/usr/local/www/vpn_ipsec_phase1.php
+++ b/usr/local/www/vpn_ipsec_phase1.php
@@ -393,7 +393,7 @@ include("head.inc");
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php include("fbegin.inc"); ?>
-<script language="JavaScript">
+<script type="text/JavaScript">
<!--
function myidsel_change() {
@@ -541,8 +541,8 @@ function dpdchkbox_change() {
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Disabled"); ?></td>
<td width="78%" class="vtable">
- <input name="disabled" type="checkbox" id="disabled" value="yes" <?php if ($pconfig['disabled']) echo "checked"; ?>>
- <strong><?=gettext("Disable this phase1 entry"); ?></strong><br>
+ <input name="disabled" type="checkbox" id="disabled" value="yes" <?php if ($pconfig['disabled']) echo "checked=\"checked\""; ?>/>
+ <strong><?=gettext("Disable this phase1 entry"); ?></strong><br />
<span class="vexpl">
<?=gettext("Set this option to disable this phase1 without " .
"removing it from the list"); ?>.
@@ -557,11 +557,11 @@ function dpdchkbox_change() {
$protocols = array("inet" => "IPv4", "inet6" => "IPv6");
foreach ($protocols as $protocol => $name):
?>
- <option value="<?=$protocol;?>" <?php if ($protocol == $pconfig['protocol']) echo "selected"; ?>>
+ <option value="<?=$protocol;?>" <?php if ($protocol == $pconfig['protocol']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($name);?>
</option>
<?php endforeach; ?>
- </select> <br> <span class="vexpl"><?=gettext("Select the Internet Protocol family from this dropdown"); ?>.</span>
+ </select> <br /> <span class="vexpl"><?=gettext("Select the Internet Protocol family from this dropdown"); ?>.</span>
</td>
</tr>
<tr>
@@ -591,12 +591,12 @@ function dpdchkbox_change() {
foreach ($interfaces as $iface => $ifacename):
?>
- <option value="<?=$iface;?>" <?php if ($iface == $pconfig['interface']) echo "selected"; ?>>
+ <option value="<?=$iface;?>" <?php if ($iface == $pconfig['interface']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($ifacename);?>
</option>
<?php endforeach; ?>
</select>
- <br>
+ <br />
<span class="vexpl"><?=gettext("Select the interface for the local endpoint of this phase1 entry"); ?>.</span>
</td>
</tr>
@@ -606,8 +606,8 @@ function dpdchkbox_change() {
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Remote gateway"); ?></td>
<td width="78%" class="vtable">
- <?=$mandfldhtml;?><input name="remotegw" type="text" class="formfld unknown" id="remotegw" size="28" value="<?=htmlspecialchars($pconfig['remotegw']);?>">
- <br>
+ <?=$mandfldhtml;?><input name="remotegw" type="text" class="formfld unknown" id="remotegw" size="28" value="<?=htmlspecialchars($pconfig['remotegw']);?>"/>
+ <br />
<?=gettext("Enter the public IP address or host name of the remote gateway"); ?>
</td>
</tr>
@@ -617,8 +617,8 @@ function dpdchkbox_change() {
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Description"); ?></td>
<td width="78%" class="vtable">
- <input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>">
- <br>
+ <input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>"/>
+ <br />
<span class="vexpl">
<?=gettext("You may enter a description here " .
"for your reference (not parsed)"); ?>.
@@ -636,18 +636,18 @@ function dpdchkbox_change() {
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Authentication method"); ?></td>
<td width="78%" class="vtable">
- <select name="authentication_method" class="formselect" onChange="methodsel_change()">
+ <select name="authentication_method" class="formselect" onchange="methodsel_change()">
<?php
foreach ($p1_authentication_methods as $method_type => $method_params):
if (!$pconfig['mobile'] && $method_params['mobile'])
continue;
?>
- <option value="<?=$method_type;?>" <?php if ($method_type == $pconfig['authentication_method']) echo "selected"; ?>>
+ <option value="<?=$method_type;?>" <?php if ($method_type == $pconfig['authentication_method']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($method_params['name']);?>
</option>
<?php endforeach; ?>
</select>
- <br>
+ <br />
<span class="vexpl">
<?=gettext("Must match the setting chosen on the remote side"); ?>.
</span>
@@ -661,41 +661,41 @@ function dpdchkbox_change() {
$modes = array("main","aggressive","base");
foreach ($modes as $mode):
?>
- <option value="<?=$mode;?>" <?php if ($mode == $pconfig['mode']) echo "selected"; ?>>
+ <option value="<?=$mode;?>" <?php if ($mode == $pconfig['mode']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($mode);?>
</option>
<?php endforeach; ?>
- </select> <br> <span class="vexpl"><?=gettext("Aggressive is more flexible, but less secure"); ?>.</span>
+ </select> <br /> <span class="vexpl"><?=gettext("Aggressive is more flexible, but less secure"); ?>.</span>
</td>
</tr>
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("My identifier"); ?></td>
<td width="78%" class="vtable">
- <select name="myid_type" class="formselect" onChange="myidsel_change()">
+ <select name="myid_type" class="formselect" onchange="myidsel_change()">
<?php foreach ($my_identifier_list as $id_type => $id_params): ?>
- <option value="<?=$id_type;?>" <?php if ($id_type == $pconfig['myid_type']) echo "selected"; ?>>
+ <option value="<?=$id_type;?>" <?php if ($id_type == $pconfig['myid_type']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($id_params['desc']);?>
</option>
<?php endforeach; ?>
</select>
- <input name="myid_data" type="text" class="formfld unknown" id="myid_data" size="30" value="<?=htmlspecialchars($pconfig['myid_data']);?>">
+ <input name="myid_data" type="text" class="formfld unknown" id="myid_data" size="30" value="<?=htmlspecialchars($pconfig['myid_data']);?>"/>
</td>
</tr>
<tr id="opt_peerid">
<td width="22%" valign="top" class="vncellreq"><?=gettext("Peer identifier"); ?></td>
<td width="78%" class="vtable">
- <select name="peerid_type" class="formselect" onChange="peeridsel_change()">
+ <select name="peerid_type" class="formselect" onchange="peeridsel_change()">
<?php
foreach ($peer_identifier_list as $id_type => $id_params):
if ($pconfig['mobile'] && !$id_params['mobile'])
continue;
?>
- <option value="<?=$id_type;?>" <?php if ($id_type == $pconfig['peerid_type']) echo "selected"; ?>>
+ <option value="<?=$id_type;?>" <?php if ($id_type == $pconfig['peerid_type']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($id_params['desc']);?>
</option>
<?php endforeach; ?>
</select>
- <input name="peerid_data" type="text" class="formfld unknown" id="peerid_data" size="30" value="<?=htmlspecialchars($pconfig['peerid_data']);?>">
+ <input name="peerid_data" type="text" class="formfld unknown" id="peerid_data" size="30" value="<?=htmlspecialchars($pconfig['peerid_data']);?>"/>
<span id="opt_verify_identifier">
<input id="verify_identifier" name="verify_identifier" type="checkbox" value="yes" <?php if ($pconfig['verify_identifier']) echo "checked=\"checked\""; ?> />
<span class="vexpl"><?=gettext("Verify peer's identifier"); ?>.</span>
@@ -709,9 +709,9 @@ function dpdchkbox_change() {
<td width="22%" valign="top" class="vncellreq"><?=gettext("Pre-Shared Key"); ?></td>
<td width="78%" class="vtable">
<?=$mandfldhtml;?>
- <input name="pskey" type="text" class="formfld unknown" id="pskey" size="40" value="<?=htmlspecialchars($pconfig['pskey']);?>">
+ <input name="pskey" type="text" class="formfld unknown" id="pskey" size="40" value="<?=htmlspecialchars($pconfig['pskey']);?>"/>
<span class="vexpl">
- <br>
+ <br />
<?=gettext("Input your Pre-Shared Key string"); ?>.
</span>
</td>
@@ -720,13 +720,13 @@ function dpdchkbox_change() {
<td width="22%" valign="top" class="vncellreq"><?=gettext("Policy Generation"); ?></td>
<td width="78%" class="vtable">
<select name="generate_policy" class="formselect">
- <option value="" <?php if (empty($pconfig['generate_policy'])) echo "selected"; ?>>Default</option>
- <option value="on" <?php if ($pconfig['generate_policy'] == "on") echo "selected"; ?>>On</option>
- <option value="off" <?php if ($pconfig['generate_policy'] == "off") echo "selected"; ?>>Off</option>
- <option value="require" <?php if ($pconfig['generate_policy'] == "require") echo "selected"; ?>>Require</option>
- <option value="unique" <?php if ($pconfig['generate_policy'] == "unique") echo "selected"; ?>>Unique</option>
+ <option value="" <?php if (empty($pconfig['generate_policy'])) echo "selected=\"selected\""; ?>>Default</option>
+ <option value="on" <?php if ($pconfig['generate_policy'] == "on") echo "selected=\"selected\""; ?>>On</option>
+ <option value="off" <?php if ($pconfig['generate_policy'] == "off") echo "selected=\"selected\""; ?>>Off</option>
+ <option value="require" <?php if ($pconfig['generate_policy'] == "require") echo "selected=\"selected\""; ?>>Require</option>
+ <option value="unique" <?php if ($pconfig['generate_policy'] == "unique") echo "selected=\"selected\""; ?>>Unique</option>
</select>
- <br>
+ <br />
<span class="vexpl">
<?=gettext("When working as a responder (as with mobile clients), this controls how policies are generated based on SA proposals."); ?>
</span>
@@ -736,13 +736,13 @@ function dpdchkbox_change() {
<td width="22%" valign="top" class="vncellreq"><?=gettext("Proposal Checking"); ?></td>
<td width="78%" class="vtable">
<select name="proposal_check" class="formselect">
- <option value="" <?php if (empty($pconfig['proposal_check'])) echo "selected"; ?>>Default</option>
- <option value="obey" <?php if ($pconfig['proposal_check'] == "obey") echo "selected"; ?>>Obey</option>
- <option value="strict" <?php if ($pconfig['proposal_check'] == "strict") echo "selected"; ?>>Strict</option>
- <option value="claim" <?php if ($pconfig['proposal_check'] == "claim") echo "selected"; ?>>Claim</option>
- <option value="exact" <?php if ($pconfig['proposal_check'] == "exact") echo "selected"; ?>>Exact</option>
+ <option value="" <?php if (empty($pconfig['proposal_check'])) echo "selected=\"selected\""; ?>>Default</option>
+ <option value="obey" <?php if ($pconfig['proposal_check'] == "obey") echo "selected=\"selected\""; ?>>Obey</option>
+ <option value="strict" <?php if ($pconfig['proposal_check'] == "strict") echo "selected=\"selected\""; ?>>Strict</option>
+ <option value="claim" <?php if ($pconfig['proposal_check'] == "claim") echo "selected=\"selected\""; ?>>Claim</option>
+ <option value="exact" <?php if ($pconfig['proposal_check'] == "exact") echo "selected=\"selected\""; ?>>Exact</option>
</select>
- <br>
+ <br />
<span class="vexpl">
<?=gettext("Specifies the action of lifetime length, key length, and PFS of the phase 2 selection on the responder side, and the action of lifetime check in phase 1."); ?>
</span>
@@ -751,19 +751,20 @@ function dpdchkbox_change() {
<tr>
<td width="22%" valign="top" class="vncellreq"><?=gettext("Encryption algorithm"); ?></td>
<td width="78%" class="vtable">
- <select name="ealgo" class="formselect" onChange="ealgosel_change()">
+ <select name="ealgo" class="formselect" onchange="ealgosel_change()">
<?php
foreach ($p1_ealgos as $algo => $algodata):
$selected = '';
if ($algo == $pconfig['ealgo']['name'])
- $selected = ' selected';
+ $selected = 'selected="selected"';
?>
- <option value="<?=$algo;?>"<?=$selected?>>
+ <option value="<?=$algo;?>" <?=$selected?>>
<?=htmlspecialchars($algodata['name']);?>
</option>
<?php endforeach; ?>
</select>
- <select name="ealgo_keylen" width="30" class="formselect">
+ <select name="ealgo_keylen" style="width:30" class="formselect">
+ <option></option>
</select>
</td>
</tr>
@@ -772,12 +773,12 @@ function dpdchkbox_change() {
<td width="78%" class="vtable">
<select name="halgo" class="formselect">
<?php foreach ($p1_halgos as $algo => $algoname): ?>
- <option value="<?=$algo;?>" <?php if ($algo == $pconfig['halgo']) echo "selected"; ?>>
+ <option value="<?=$algo;?>" <?php if ($algo == $pconfig['halgo']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($algoname);?>
</option>
<?php endforeach; ?>
</select>
- <br>
+ <br />
<span class="vexpl">
<?=gettext("Must match the setting chosen on the remote side"); ?>.
</span>
@@ -788,12 +789,12 @@ function dpdchkbox_change() {
<td width="78%" class="vtable">
<select name="dhgroup" class="formselect">
<?php foreach ($p1_dhgroups as $keygroup => $keygroupname): ?>
- <option value="<?=$keygroup;?>" <?php if ($keygroup == $pconfig['dhgroup']) echo "selected"; ?>>
+ <option value="<?=$keygroup;?>" <?php if ($keygroup == $pconfig['dhgroup']) echo "selected=\"selected\""; ?>>
<?=htmlspecialchars($keygroupname);?>
</option>
<?php endforeach; ?>
</select>
- <br>
+ <br />
<span class="vexpl">
<?=gettext("Must match the setting chosen on the remote side"); ?>.
</span>
@@ -802,7 +803,7 @@ function dpdchkbox_change() {
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Lifetime"); ?></td>
<td width="78%" class="vtable">
- <input name="lifetime" type="text" class="formfld unknown" id="lifetime" size="20" value="<?=htmlspecialchars($pconfig['lifetime']);?>">
+ <input name="lifetime" type="text" class="formfld unknown" id="lifetime" size="20" value="<?=htmlspecialchars($pconfig['lifetime']);?>"/>
<?=gettext("seconds"); ?>
</td>
</tr>
@@ -814,12 +815,12 @@ function dpdchkbox_change() {
foreach ($config['cert'] as $cert):
$selected = "";
if ($pconfig['certref'] == $cert['refid'])
- $selected = "selected";
+ $selected = "selected=\"selected\"";
?>
<option value="<?=$cert['refid'];?>" <?=$selected;?>><?=$cert['descr'];?></option>
<?php endforeach; ?>
</select>
- <br>
+ <br />
<span class="vexpl">
<?=gettext("Select a certificate previously configured in the Certificate Manager"); ?>.
</span>
@@ -833,12 +834,12 @@ function dpdchkbox_change() {
foreach ($config['ca'] as $ca):
$selected = "";
if ($pconfig['caref'] == $ca['refid'])
- $selected = "selected";
+ $selected = "selected=\"selected\"";
?>
<option value="<?=$ca['refid'];?>" <?=$selected;?>><?=$ca['descr'];?></option>
<?php endforeach; ?>
</select>
- <br>
+ <br />
<span class="vexpl">
<?=gettext("Select a certificate authority previously configured in the Certificate Manager"); ?>.
</span>
@@ -854,9 +855,9 @@ function dpdchkbox_change() {
<td width="22%" valign="top" class="vncell"><?=gettext("NAT Traversal"); ?></td>
<td width="78%" class="vtable">
<select name="nat_traversal" class="formselect">
- <option value="off" <?php if ($pconfig['nat_traversal'] == "off") echo "selected"; ?>><?=gettext("Disable"); ?></option>
- <option value="on" <?php if ($pconfig['nat_traversal'] == "on") echo "selected"; ?>><?=gettext("Enable"); ?></option>
- <option value="force" <?php if ($pconfig['nat_traversal'] == "force") echo "selected"; ?>><?=gettext("Force"); ?></option>
+ <option value="off" <?php if ($pconfig['nat_traversal'] == "off") echo "selected=\"selected\""; ?>><?=gettext("Disable"); ?></option>
+ <option value="on" <?php if ($pconfig['nat_traversal'] == "on") echo "selected=\"selected\""; ?>><?=gettext("Enable"); ?></option>
+ <option value="force" <?php if ($pconfig['nat_traversal'] == "force") echo "selected=\"selected\""; ?>><?=gettext("Force"); ?></option>
</select>
<br/>
<span class="vexpl">
@@ -868,22 +869,22 @@ function dpdchkbox_change() {
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Dead Peer Detection"); ?></td>
<td width="78%" class="vtable">
- <input name="dpd_enable" type="checkbox" id="dpd_enable" value="yes" <?php if (isset($pconfig['dpd_enable'])) echo "checked"; ?> onClick="dpdchkbox_change()">
- <?=gettext("Enable DPD"); ?><br>
+ <input name="dpd_enable" type="checkbox" id="dpd_enable" value="yes" <?php if (isset($pconfig['dpd_enable'])) echo "checked=\"checked\""; ?> onclick="dpdchkbox_change()"/>
+ <?=gettext("Enable DPD"); ?><br />
<div id="opt_dpd">
- <br>
- <input name="dpd_delay" type="text" class="formfld unknown" id="dpd_delay" size="5" value="<?=htmlspecialchars($pconfig['dpd_delay']);?>">
- <?=gettext("seconds"); ?><br>
+ <br />
+ <input name="dpd_delay" type="text" class="formfld unknown" id="dpd_delay" size="5" value="<?=htmlspecialchars($pconfig['dpd_delay']);?>"/>
+ <?=gettext("seconds"); ?><br />
<span class="vexpl">
<?=gettext("Delay between requesting peer acknowledgement"); ?>.
- </span><br>
- <br>
- <input name="dpd_maxfail" type="text" class="formfld unknown" id="dpd_maxfail" size="5" value="<?=htmlspecialchars($pconfig['dpd_maxfail']);?>">
- <?=gettext("retries"); ?><br>
+ </span><br />
+ <br />
+ <input name="dpd_maxfail" type="text" class="formfld unknown" id="dpd_maxfail" size="5" value="<?=htmlspecialchars($pconfig['dpd_maxfail']);?>"/>
+ <?=gettext("retries"); ?><br />
<span class="vexpl">
<?=gettext("Number of consecutive failures allowed before disconnect"); ?>.
</span>
- <br>
+ <br />
</div>
</td>
</tr>
@@ -891,13 +892,13 @@ function dpdchkbox_change() {
<td width="22%" valign="top">&nbsp;</td>
<td width="78%">
<?php if (isset($p1index) && $a_phase1[$p1index]): ?>
- <input name="p1index" type="hidden" value="<?=$p1index;?>">
+ <input name="p1index" type="hidden" value="<?=$p1index;?>"/>
<?php endif; ?>
<?php if ($pconfig['mobile']): ?>
- <input name="mobile" type="hidden" value="true">
+ <input name="mobile" type="hidden" value="true"/>
<?php endif; ?>
- <input name="ikeid" type="hidden" value="<?=htmlspecialchars($pconfig['ikeid']);?>">
- <input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save"); ?>">
+ <input name="ikeid" type="hidden" value="<?=htmlspecialchars($pconfig['ikeid']);?>"/>
+ <input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save"); ?>"/>
</td>
</tr>
</table>
@@ -907,7 +908,7 @@ function dpdchkbox_change() {
</table>
</form>
-<script lannguage="JavaScript">
+<script type="text/JavaScript">
<!--
<?php
/* determine if we should init the key length */
OpenPOWER on IntegriCloud