summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_1to1.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2010-09-03 17:45:12 +0000
committerErmal <eri@pfsense.org>2010-09-03 17:45:12 +0000
commitc12fb6cb5408cbcaa6090d4871bf500a705d7d7b (patch)
treeefd2af5bd668dc9e8f658f7c271a211eeca54af4 /usr/local/www/firewall_nat_1to1.php
parent8fc0b2dcb8a62e0dfcb153277ce1fcfad0b1143d (diff)
downloadpfsense-c12fb6cb5408cbcaa6090d4871bf500a705d7d7b.zip
pfsense-c12fb6cb5408cbcaa6090d4871bf500a705d7d7b.tar.gz
Allow 1:1 rules to specify source and destination. This is almost the same as on Port Forward tab rules without protocol and ports.
Diffstat (limited to 'usr/local/www/firewall_nat_1to1.php')
-rwxr-xr-xusr/local/www/firewall_nat_1to1.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/usr/local/www/firewall_nat_1to1.php b/usr/local/www/firewall_nat_1to1.php
index 494d34e..94132f2 100755
--- a/usr/local/www/firewall_nat_1to1.php
+++ b/usr/local/www/firewall_nat_1to1.php
@@ -102,8 +102,9 @@ include("head.inc");
<tr>
<td width="10%" class="listhdrr"><?=gettext("Interface"); ?></td>
<td width="20%" class="listhdrr"><?=gettext("External IP"); ?></td>
- <td width="20%" class="listhdrr"><?=gettext("Internal IP"); ?></td>
- <td width="40%" class="listhdr"><?=gettext("Description"); ?></td>
+ <td width="15%" class="listhdrr"><?=gettext("Source 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">
<tr>
@@ -124,12 +125,13 @@ include("head.inc");
?>
</td>
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
- <?php echo $natent['external'];
- if ($natent['subnet']) echo "/" . $natent['subnet']; ?>
+ <?php echo $natent['external']; ?>
</td>
<td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
- <?php echo $natent['internal'];
- if ($natent['subnet']) echo "/" . $natent['subnet']; ?>
+ <?php echo pprint_address($natent['source']); ?>
+ </td>
+ <td class="listr" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
+ <?php echo pprint_address($natent['destination']); ?>
</td>
<td class="listbg" ondblclick="document.location='firewall_nat_1to1_edit.php?id=<?=$i;?>';">
<?=htmlspecialchars($natent['descr']);?>&nbsp;
@@ -145,7 +147,7 @@ include("head.inc");
</tr>
<?php $i++; endforeach; ?>
<tr>
- <td class="list" colspan="4"></td>
+ <td class="list" colspan="5"></td>
<td class="list">
<table border="0" cellspacing="0" cellpadding="1">
<tr>
OpenPOWER on IntegriCloud