diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-04-28 02:01:04 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-04-28 02:01:04 +0000 |
commit | 9559099b9c5dd9f7a209f574c1e341b38a3d699c (patch) | |
tree | 97aa31eb690d0bdb929955cb40495a76ba9777e5 /usr/local | |
parent | 8e362784d8399c80f1b227b0c262ac438e99239e (diff) | |
download | pfsense-9559099b9c5dd9f7a209f574c1e341b38a3d699c.zip pfsense-9559099b9c5dd9f7a209f574c1e341b38a3d699c.tar.gz |
Add any option and blurb about when to use it
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/firewall_nat_edit.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/local/www/firewall_nat_edit.php b/usr/local/www/firewall_nat_edit.php index 25486df..b9dc725 100755 --- a/usr/local/www/firewall_nat_edit.php +++ b/usr/local/www/firewall_nat_edit.php @@ -246,11 +246,12 @@ function ext_rep_change() { foreach ($config['nat']['servernat'] as $sn): ?> <option value="<?=$sn['ipaddr'];?>" <?php if ($sn['ipaddr'] == $pconfig['extaddr']) echo "selected"; ?>><?=htmlspecialchars("{$sn['ipaddr']} ({$sn['descr']})");?></option> <?php endforeach; endif; ?> + <option value="any"<?php if($pconfig['extaddr'] == "any" echo " selected"; ?>></option> </select><br> <span class="vexpl"> If you want this rule to apply to another IP address than the IP address of the interface chosen above, select it here (you need to define IP addresses on the - <a href="firewall_nat_server.php">Server NAT</a> page first).</span></td> + <a href="firewall_nat_server.php">Server NAT</a> page first). Also note that if you are trying to redirect connections on the LAN select the "any" option.</span></td> </tr> <tr> <td width="22%" valign="top" class="vncellreq">Protocol</td> |