strongswan only has two options for NAT-T, force or auto.

This commit is contained in:
Chris Buechler 2014-11-04 19:02:38 -06:00
parent a43ddd1a5f
commit d3c414e335
1 changed files with 0 additions and 1 deletions

View File

@ -866,7 +866,6 @@ 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=\"selected\""; ?>><?=gettext("Disable"); ?></option>
<option value="on" <?php if ($pconfig['nat_traversal'] != 'on') echo "selected=\"selected\""; ?>><?=gettext("Auto"); ?></option>
<option value="force" <?php if ($pconfig['nat_traversal'] == 'force') echo "selected=\"selected\""; ?>><?=gettext("Force"); ?></option>
</select>