mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fix whitespaces and indent
This commit is contained in:
parent
858211ddde
commit
bb0469f2be
@ -44,13 +44,12 @@ require_once("functions.inc");
|
||||
require_once("filter.inc");
|
||||
require_once("shaper.inc");
|
||||
|
||||
if (!is_array($config['nat']['onetoone'])) {
|
||||
if (!is_array($config['nat']['onetoone']))
|
||||
$config['nat']['onetoone'] = array();
|
||||
}
|
||||
|
||||
$a_1to1 = &$config['nat']['onetoone'];
|
||||
|
||||
if ($_POST) {
|
||||
|
||||
$pconfig = $_POST;
|
||||
|
||||
if ($_POST['apply']) {
|
||||
@ -86,106 +85,133 @@ include("head.inc");
|
||||
<?php if (is_subsystem_dirty('natconf')): ?>
|
||||
<?php print_info_box_np(gettext("The NAT configuration has been changed") . ".<br/>" . gettext("You must apply the changes in order for them to take effect."));?><br/>
|
||||
<?php endif; ?>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="fireall nat 1to1"> <tr><td>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="fireall nat 1to1">
|
||||
<tr><td>
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[] = array(gettext("Port Forward"), false, "firewall_nat.php");
|
||||
$tab_array[] = array(gettext("1:1"), true, "firewall_nat_1to1.php");
|
||||
$tab_array[] = array(gettext("Outbound"), false, "firewall_nat_out.php");
|
||||
$tab_array[] = array(gettext("NPt"), false, "firewall_nat_npt.php");
|
||||
display_top_tabs($tab_array);
|
||||
$tab_array = array();
|
||||
$tab_array[] = array(gettext("Port Forward"), false, "firewall_nat.php");
|
||||
$tab_array[] = array(gettext("1:1"), true, "firewall_nat_1to1.php");
|
||||
$tab_array[] = array(gettext("Outbound"), false, "firewall_nat_out.php");
|
||||
$tab_array[] = array(gettext("NPt"), false, "firewall_nat_npt.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
</td></tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div id="mainarea">
|
||||
<table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0" summary="main area">
|
||||
<tr>
|
||||
<td width="10%" class="listhdrr"><?=gettext("Interface"); ?></td>
|
||||
<td width="20%" class="listhdrr"><?=gettext("External IP"); ?></td>
|
||||
<td width="15%" class="listhdrr"><?=gettext("Internal IP"); ?></td>
|
||||
<td width="15%" class="listhdrr"><?=gettext("Destination IP"); ?></td>
|
||||
<td width="30%" class="listhdr"><?=gettext("Description"); ?></td>
|
||||
<td width="10%" class="list">
|
||||
<table border="0" cellspacing="0" cellpadding="1" summary="edit">
|
||||
<tr>
|
||||
<td width="17"></td>
|
||||
<td valign="middle"><a href="firewall_nat_1to1_edit.php"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" title="<?=gettext("add rule"); ?>" alt="add" /></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
$textse = "</span>";
|
||||
|
||||
$i = 0; foreach ($a_1to1 as $natent):
|
||||
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<div id="mainarea">
|
||||
<table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0" summary="main area">
|
||||
<tr>
|
||||
<td width="10%" class="listhdrr"><?=gettext("Interface"); ?></td>
|
||||
<td width="20%" class="listhdrr"><?=gettext("External IP"); ?></td>
|
||||
<td width="15%" class="listhdrr"><?=gettext("Internal IP"); ?></td>
|
||||
<td width="15%" class="listhdrr"><?=gettext("Destination IP"); ?></td>
|
||||
<td width="30%" class="listhdr"><?=gettext("Description"); ?></td>
|
||||
<td width="10%" class="list">
|
||||
<table border="0" cellspacing="0" cellpadding="1" summary="edit">
|
||||
<tr>
|
||||
<td width="17"></td>
|
||||
<td valign="middle">
|
||||
<a href="firewall_nat_1to1_edit.php">
|
||||
<img src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" title="<?=gettext("add rule"); ?>" alt="add" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
$textse = "</span>";
|
||||
$i = 0;
|
||||
foreach ($a_1to1 as $natent):
|
||||
if (isset($natent['disabled']))
|
||||
$textss = "<span class=\"gray\">";
|
||||
else
|
||||
$textss = "<span>"; ?>
|
||||
<tr>
|
||||
<td class="listlr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php
|
||||
echo $textss;
|
||||
$textss = "<span>";
|
||||
?>
|
||||
<tr>
|
||||
<td class="listlr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php
|
||||
echo $textss;
|
||||
if (!$natent['interface'])
|
||||
echo htmlspecialchars(convert_friendly_interface_to_friendly_descr("wan"));
|
||||
else
|
||||
echo htmlspecialchars(convert_friendly_interface_to_friendly_descr($natent['interface']));
|
||||
echo $textse;
|
||||
?>
|
||||
</td>
|
||||
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php
|
||||
$source_net = pprint_address($natent['source']);
|
||||
$source_cidr = strstr($source_net, '/');
|
||||
echo $textss . $natent['external'] . $source_cidr . $textse;
|
||||
?>
|
||||
</td>
|
||||
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php echo $textss . $source_net . $textse; ?>
|
||||
</td>
|
||||
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php echo $textss . pprint_address($natent['destination']) . $textse; ?>
|
||||
</td>
|
||||
<td class="listbg" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?=$textss;?>
|
||||
<?=htmlspecialchars($natent['descr']);?>
|
||||
<?=$textse;?>
|
||||
</td>
|
||||
<td class="list nowrap">
|
||||
<table border="0" cellspacing="0" cellpadding="1" summary="edit">
|
||||
<tr>
|
||||
<td valign="middle"><a href="firewall_nat_1to1_edit.php?id=<?=$i;?>"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0" title="<?=gettext("edit rule"); ?>" alt="edit" /></a></td>
|
||||
<td valign="middle"><a href="firewall_nat_1to1.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this mapping?");?>')"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" title="<?=gettext("delete rule"); ?>" alt="delete" /></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<?php $i++; endforeach; ?>
|
||||
<tr>
|
||||
<td class="list" colspan="5"></td>
|
||||
<td class="list">
|
||||
<table border="0" cellspacing="0" cellpadding="1" summary="add">
|
||||
<tr>
|
||||
<td width="17"></td>
|
||||
<td valign="middle"><a href="firewall_nat_1to1_edit.php"><img src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" title="<?=gettext("add rule"); ?>" alt="add" /></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<p><span class="vexpl"><span class="red"><strong><?=gettext("Note:"); ?><br/>
|
||||
</strong></span><?=gettext("Depending on the way your WAN connection is setup, you may also need a"); ?> <a href="firewall_virtual_ip.php"><?=gettext("Virtual IP."); ?></a><br/>
|
||||
<?=gettext("If you add a 1:1 NAT entry for any of the interface IPs on this system, it will make this system inaccessible on that IP address. i.e. if " .
|
||||
"you use your WAN IP address, any services on this system (IPsec, OpenVPN server, etc.) using the WAN IP address will no longer function."); ?></span></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
echo $textse;
|
||||
?>
|
||||
</td>
|
||||
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php
|
||||
$source_net = pprint_address($natent['source']);
|
||||
$source_cidr = strstr($source_net, '/');
|
||||
echo $textss . $natent['external'] . $source_cidr . $textse;
|
||||
?>
|
||||
</td>
|
||||
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php
|
||||
echo $textss . $source_net . $textse;
|
||||
?>
|
||||
</td>
|
||||
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php
|
||||
echo $textss . pprint_address($natent['destination']) . $textse;
|
||||
?>
|
||||
</td>
|
||||
<td class="listbg" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
|
||||
<?php
|
||||
echo $textss . htmlspecialchars($natent['descr']) . ' ' . $textse;
|
||||
?>
|
||||
</td>
|
||||
<td class="list nowrap">
|
||||
<table border="0" cellspacing="0" cellpadding="1" summary="edit">
|
||||
<tr>
|
||||
<td valign="middle">
|
||||
<a href="firewall_nat_1to1_edit.php?id=<?=$i;?>">
|
||||
<img src="/themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0" title="<?=gettext("edit rule"); ?>" alt="edit" />
|
||||
</a>
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<a href="firewall_nat_1to1.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this mapping?");?>')">
|
||||
<img src="/themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0" title="<?=gettext("delete rule"); ?>" alt="delete" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
$i++;
|
||||
endforeach;
|
||||
?>
|
||||
<tr>
|
||||
<td class="list" colspan="5"></td>
|
||||
<td class="list">
|
||||
<table border="0" cellspacing="0" cellpadding="1" summary="add">
|
||||
<tr>
|
||||
<td width="17"></td>
|
||||
<td valign="middle">
|
||||
<a href="firewall_nat_1to1_edit.php">
|
||||
<img src="/themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0" title="<?=gettext("add rule"); ?>" alt="add" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="5">
|
||||
<p><span class="vexpl">
|
||||
<span class="red"><strong><?=gettext("Note:"); ?><br/></strong></span>
|
||||
<?=gettext("Depending on the way your WAN connection is setup, you may also need a"); ?>
|
||||
<a href="firewall_virtual_ip.php"><?=gettext("Virtual IP."); ?></a><br/>
|
||||
<?=gettext("If you add a 1:1 NAT entry for any of the interface IPs on this system, " .
|
||||
"it will make this system inaccessible on that IP address. i.e. if " .
|
||||
"you use your WAN IP address, any services on this system (IPsec, OpenVPN server, etc.) " .
|
||||
"using the WAN IP address will no longer function."); ?>
|
||||
</span></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td></tr>
|
||||
</table>
|
||||
</form>
|
||||
<?php include("fend.inc"); ?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user