summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Fonnesbeck <efonnes@gmail.com>2010-05-05 19:34:47 -0600
committerErik Fonnesbeck <efonnes@gmail.com>2010-05-05 19:34:47 -0600
commit129bc05216b55cd0c502f40f47cf7de001eef5ba (patch)
treeeb96c88eed8ae73231640b9db1569c5f13c357c5
parent9ff30853aed55c54e780139cb59b50e1f45dea5d (diff)
parente57d08971659ee0ed6d884409838394e33a2a395 (diff)
downloadpfsense-129bc05216b55cd0c502f40f47cf7de001eef5ba.zip
pfsense-129bc05216b55cd0c502f40f47cf7de001eef5ba.tar.gz
Merge remote branch 'mainline/master' into patches
Resolved conflicts: usr/local/www/system_advanced_firewall.php
-rw-r--r--etc/inc/filter.inc300
-rw-r--r--etc/services2000
-rw-r--r--usr/local/www/system_advanced_firewall.php25
3 files changed, 130 insertions, 2195 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index 2da8548..df82da7 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -791,145 +791,41 @@ function filter_get_reflection_interfaces($natif = "") {
return $nat_if_list;
}
-function filter_generate_reflection($rule, $nordr, $rdr_ifs, $srcaddr, $dstaddr_port, $dstport, &$starting_localhost_port, &$reflection_txt) {
- global $FilterIflist, $config;
-
+function filter_generate_reflection_nat($rule, $nat_ifs, $protocol, $target, $target_ip, $target_subnet = "") {
// Initialize natrules holder string
$natrules = "";
- $reflection_txt = array();
-
- if(!empty($rdr_ifs)) {
- if($config['system']['reflectiontimeout'])
- $reflectiontimeout = $config['system']['reflectiontimeout'];
- else
- $reflectiontimeout = "2000";
-
- update_filter_reload_status("Creating reflection rule for {$rule['descr']}...");
-
- $rdr_if_list = implode(" ", $rdr_ifs);
- if(count($rdr_ifs) > 1)
- $rdr_if_list = "{ {$rdr_if_list} }";
-
- $natrules .= "\n# Reflection redirects\n";
-
- if($dstport[1])
- $range_end = ($dstport[1]);
- else
- $range_end = ($dstport[0]);
-
- $dstaddr = explode(" ", $dstaddr_port);
- if($dstaddr[2])
- $rflctintrange = $dstaddr[2];
- else
- $rflctintrange = "";
- $dstaddr = $dstaddr[0];
-
- if(isset($rule['destination']['any'])) {
- if(!$rule['interface'])
- $natif = "wan";
- else
- $natif = $rule['interface'];
- if(!isset($FilterIflist[$natif]))
- return "";
- if(is_ipaddr($FilterIflist[$natif]['ip']))
- $dstaddr = $FilterIflist[$natif]['ip'];
- else
- return "";
+ update_filter_reload_status("Creating reflection NAT rule for {$rule['descr']}...");
- if(!empty($FilterIflist[$natif]['sn']))
- $dstaddr = gen_subnet($dstaddr, $FilterIflist[$natif]['sn']) . '/' . $FilterIflist[$natif]['sn'];
- }
-
- switch($rule['protocol']) {
- case "tcp/udp":
- $protocol = "{ tcp udp }";
- $reflect_protos = array('tcp', 'udp');
- break;
- case "tcp":
- case "udp":
- $protocol = $rule['protocol'];
- $reflect_protos = array($rule['protocol']);
- break;
- default:
- return "";
- break;
- }
+ /* TODO: Add this option to port forwards page. */
+ if(isset($rule['staticnatport'])) {
+ $static_port = " static-port";
+ } else {
+ $static_port = " port 1024:65535";
+ }
- if(!empty($nordr)) {
- $natrules .= "no rdr on {$rdr_if_list} proto {$protocol} from {$srcaddr} to {$dstaddr} port {$rflctintrange}\n";
- return $natrules;
- }
+ if(!empty($protocol)) {
+ $protocol_text = " proto {$protocol}";
+ } else {
+ $protocol_text = "";
+ }
- if (is_alias($rule['target']))
- $target = filter_expand_alias($rule['target']);
- else if(is_ipaddr($rule['target']))
- $target = $rule['target'];
- else if (is_ipaddr($FilterIflist[$rule['target']]['ip']))
- $target = $FilterIflist[$rule['target']]['ip'];
- else
- return "";
-
- if($rule['local-port'])
- $lrange_start = $rule['local-port'];
- if(($range_end + 1) - $dstport[0] > 500) {
- log_error("Not installing nat reflection rules for a port range > 500");
- /* only install reflection rules for < 19991 items */
- } else if($starting_localhost_port < 19991) {
- $loc_pt = $lrange_start;
- $rflctnorange = true;
- if(is_alias($loc_pt)) {
- $loc_pt_translated = filter_expand_alias($loc_pt);
- if(!$loc_pt_translated) {
- log_error("Reflection processing: {$loc_pt} is not a vaild port alias.");
- continue;
- }
- $toadd_array = split(" ", $loc_pt_translated);
- $rflctnorange = false;
- }
+ $target_if_list = array();
+ if(empty($target_subnet) || !is_numeric($target_subnet) || $target_subnet == 32) {
+ $target_if_list[] = guess_interface_from_ip($target_ip);
+ } else {
+ $target_if_list[] = guess_interface_from_ip(gen_subnet_max($target_ip, $target_subnet));
+ }
- $inetdport = $starting_localhost_port;
- if($range_end > $dstport[0]) {
- $rflctrange = "{$starting_localhost_port}";
- $delta = $range_end - $dstport[0];
- if(($starting_localhost_port + $delta) > 19990) {
- log_error("Installing partial nat reflection rules. Maximum 1,000 reached.");
- $delta = 19990 - $starting_localhost_port;
- $range_end = $dstport[0] + $delta;
- $rflctintrange = "";
- }
- $starting_localhost_port = $starting_localhost_port + $delta;
- $rflctrange .= ":{$starting_localhost_port}";
- if(empty($rflctintrange))
- $rflctintrange = "{$dstport[0]}:{$range_end}";
- if($rflctnorange)
- $toadd_array = range($loc_pt, $loc_pt + $delta);
- $starting_localhost_port++;
- } else {
- $rflctrange = $starting_localhost_port;
- if(empty($rflctintrange))
- $rflctintrange = $dstport[0];
- if($rflctnorange)
- $toadd_array = array($loc_pt);
- $starting_localhost_port++;
- }
+ foreach ($target_if_list as $target_if) {
+ /* Only install additional NAT rules if the
+ * target is in the list of source networks */
+ if(in_array($target_if, $nat_ifs)) {
+ $target_networks = "{$target_if}:network";
- foreach($toadd_array as $tda){
- foreach($reflect_protos as $reflect_proto) {
- if($reflect_proto == "udp") {
- $socktype = "dgram";
- $dash_u = "-u ";
- } else {
- $socktype = "stream";
- $dash_u = "";
- }
- $reflection_txt[] = "{$inetdport}\t{$socktype}\t{$reflect_proto}\tnowait/0\tnobody\t/usr/bin/nc\tnc {$dash_u}-w {$reflectiontimeout} {$target} {$tda}\n";
- }
- $inetdport++;
- }
- $natrules .= "rdr on {$rdr_if_list} proto {$protocol} from {$srcaddr} to {$dstaddr} port {$rflctintrange} tag PFREFLECT -> 127.0.0.1 port {$rflctrange}\n";
+ $natrules .= "no nat on {$target_if}{$protocol_text} from {$target_if} to {$target}\n";
+ $natrules .= "nat on {$target_if}{$protocol_text} from {$target_networks} to {$target} -> {$target_if}{$static_port}\n";
}
- $reflection_txt = array_unique($reflection_txt);
}
return $natrules;
@@ -1016,8 +912,27 @@ function filter_nat_rules_generate() {
else
$natif = $natent['interface'];
$natif = $FilterIflist[$natif]['if'];
- if($natif)
- $natrules .= "binat on $natif from {$natent['internal']}/{$sn} to any -> {$natent['external']}/{$sn}\n";
+
+ if($natif) {
+ /* If reflection is enabled, turn on extra redirections
+ * for this rule by adding other interfaces to binat rule. */
+ if(isset($config['system']['enablebinatreflection'])) {
+ $nat_if_list = filter_get_reflection_interfaces($natif);
+ } else {
+ $nat_if_list = array();
+ }
+
+ $nat_if_list = array_merge(array($natif), $nat_if_list);
+ //$binat_if_list = implode(" ", $nat_if_list);
+ //if(count($nat_if_list) > 1)
+ // $binat_if_list = "{ {$binat_if_list} }";
+
+ /* binat seems to currently only work with the first interface specified on the line */
+ // $natrules .= "binat on {$binat_if_list} from {$natent['internal']}/{$sn} to any -> {$natent['external']}/{$sn}\n";
+ foreach ($nat_if_list as $natifname)
+ $natrules .= "binat on {$natifname} from {$natent['internal']}/{$sn} to any -> {$natent['external']}/{$sn}\n";
+ $natrules .= filter_generate_reflection_nat($rule, $nat_if_list, "", "{$natent['internal']}/{$sn}", $natent['internal'], $sn);
+ }
}
}
$natrules .= "\n# Outbound NAT rules\n";
@@ -1198,10 +1113,6 @@ function filter_nat_rules_generate() {
fwrite($inetd_fd, "tftp-proxy\tdgram\tudp\twait\t\troot\t/usr/libexec/tftp-proxy\ttftp-proxy -v\n");
if(isset($config['nat']['rule'])) {
- if(!isset($config['system']['disablenatreflection'])) {
- /* start redirects on port 19000 of localhost */
- $starting_localhost_port = 19000;
- }
$natrules .= "# NAT Inbound Redirects\n";
foreach ($config['nat']['rule'] as $rule) {
update_filter_reload_status("Creating NAT rule {$rule['descr']}");
@@ -1231,30 +1142,33 @@ function filter_nat_rules_generate() {
$localport = " port {$localport}";
}
- switch(strtolower($rule['protocol'])) {
- case "tcp/udp":
- $protocol = "{ tcp udp }";
- break;
- case "tcp":
- case "udp":
- $protocol = strtolower($rule['protocol']);
- break;
- default:
- $protocol = strtolower($rule['protocol']);
- $localport = "";
- break;
- }
-
$target = alias_expand($rule['target']);
if(!$target && !isset($rule['nordr'])) {
$natrules .= "# Unresolvable alias {$rule['target']}\n";
continue; /* unresolvable alias */
}
+ if(is_alias($rule['target']))
+ $target_ip = filter_expand_alias($rule['target']);
+ else if(is_ipaddr($rule['target']))
+ $target_ip = $rule['target'];
+ else if(is_ipaddr($FilterIflist[$rule['target']]['ip']))
+ $target_ip = $FilterIflist[$rule['target']]['ip'];
+ else
+ $target_ip = $rule['target'];
+ $target_ip = trim($target_ip);
+
if($rule['associated-rule-id'] == "pass")
$rdrpass = "pass ";
else
$rdrpass = "";
+
+ if (isset($rule['nordr'])) {
+ $nordr = "no ";
+ $rdrpass = "";
+ } else
+ $nordr = "";
+
if(!$rule['interface'])
$natif = "wan";
else
@@ -1265,44 +1179,71 @@ function filter_nat_rules_generate() {
$srcaddr = filter_generate_address($rule, 'source', true);
$dstaddr = filter_generate_address($rule, 'destination', true);
+ $srcaddr = trim($srcaddr);
+ $dstaddr = trim($dstaddr);
if(!$dstaddr)
$dstaddr = $FilterIflist[$natif]['ip'];
- $natif = $FilterIflist[$natif]['if'];
+ $dstaddr_port = explode(" ", $dstaddr);
+ $dstaddr_reflect = $dstaddr;
+ if(isset($rule['destination']['any'])) {
+ /* With reflection enabled, destination of 'any' has side effects
+ * that most people would not expect, so change it on reflection rules. */
+ $dstaddr_reflect = $FilterIflist[$natif]['ip'];
+ if(!empty($FilterIflist[$natif]['sn']))
+ $dstaddr_reflect = gen_subnet($dstaddr_reflect, $FilterIflist[$natif]['sn']) . '/' . $FilterIflist[$natif]['sn'];
+
+ if($dstaddr_port[2])
+ $dstaddr_reflect .= " port " . $dstaddr_port[2];
+ }
- if (isset($rule['nordr'])) {
- $nordr = "no ";
- $rdrpass = "";
- } else
- $nordr = "";
+ $natif = $FilterIflist[$natif]['if'];
- if(!isset($config['system']['disablenatreflection'])) {
- $nat_if_list = filter_get_reflection_interfaces($natif);
- } else {
- $nat_if_list = array();
+ switch(strtolower($rule['protocol'])) {
+ case "tcp/udp":
+ $protocol = "{ tcp udp }";
+ break;
+ case "tcp":
+ case "udp":
+ $protocol = strtolower($rule['protocol']);
+ break;
+ default:
+ $protocol = strtolower($rule['protocol']);
+ $localport = "";
+ break;
}
+ $localport_nat = $localport;
+ if(empty($localport_nat) && $dstaddr_port[2])
+ $localport_nat = " port " . $dstaddr_port[2];
+
if($srcaddr <> "" && $dstaddr <> "" && $natif) {
- $srcaddr = trim($srcaddr);
- $dstaddr = trim($dstaddr);
+ /* If reflection is enabled, turn on extra redirections for
+ * this rule by adding other interfaces to a similar rdr rule. */
+ if(!isset($config['system']['disablenatreflection'])) {
+ $nat_if_list = filter_get_reflection_interfaces($natif);
+ } else {
+ $nat_if_list = array();
+ }
- $natrules .= "{$nordr}rdr {$rdrpass}on {$natif} proto {$protocol} from {$srcaddr} to {$dstaddr}" . ($nordr == "" ? " -> {$target}{$localport}" : "");
+ $natrules .= "{$nordr}rdr {$rdrpass}on {$natif} proto {$protocol} from {$srcaddr} to {$dstaddr}" . ($nordr == "" ? " -> {$target}{$localport}\n" : "\n");
- /* Does this rule redirect back to a internal host? */
- if(isset($rule['destination']['any']) && !interface_has_gateway($rule['interface']) && !isset($rule['nordr'])) {
- $rule_interface_ip = find_interface_ip($natif);
- $rule_interface_subnet = find_interface_subnet($natif);
- $rule_subnet = gen_subnet($rule_interface_ip, $rule_interface_subnet);
- $natrules .= "\n";
- $natrules .= "no nat on {$natif} proto tcp from ({$natif}) to {$rule_subnet}/{$rule_interface_subnet}\n";
- $natrules .= "nat on {$natif} proto tcp from {$rule_subnet}/{$rule_interface_subnet} to {$target} port {$dstport[0]} -> ({$natif})\n";
+ if(!empty($nat_if_list)) {
+ $rdr_if_list = implode(" ", $nat_if_list);
+ if(count($nat_if_list) > 1)
+ $rdr_if_list = "{ {$rdr_if_list} }";
+
+ /* TODO: When using reflection, should all of the redirects be passed
+ * if the port forward is set to pass through the firewall, or should
+ * the port forward's configured interface be the only one to
+ * automatically pass, or should the reflection redirects always pass? */
+ $natrules .= "{$nordr}rdr on {$rdr_if_list} proto {$protocol} from {$srcaddr} to {$dstaddr_reflect}" . ($nordr == "" ? " -> {$target}{$localport}\n" : "\n");
}
- $natrules .= filter_generate_reflection($rule, $nordr, $nat_if_list, $srcaddr, $dstaddr, $dstport, $starting_localhost_port, $reflection_rules);
- $natrules .= "\n";
- foreach ($reflection_rules as $txtline)
- fwrite($inetd_fd, $txtline);
+ $nat_if_list = array_merge(array($natif), $nat_if_list);
+ if(!isset($rule['nordr']))
+ $natrules .= filter_generate_reflection_nat($rule, $nat_if_list, $protocol, "{$target}{$localport_nat}", $target_ip);
}
}
}
@@ -2038,15 +1979,6 @@ EOD;
}
}
- $ipfrules .= "# NAT Reflection rules\n";
- if(isset($config['nat']['rule']) &&
- (!isset($config['system']['disablenatreflection']))) {
- $ipfrules .= <<<EOD
-pass in inet tagged PFREFLECT keep state label "NAT REFLECT: Allow traffic to localhost"
-
-EOD;
- }
-
if(isset($config['filter']['rule'])) {
/* Pre-cache all our rules so we only have to generate them once */
$rule_arr1 = array();
diff --git a/etc/services b/etc/services
index 1f85da0..d79254d 100644
--- a/etc/services
+++ b/etc/services
@@ -2098,2006 +2098,6 @@ isode-dua 17007/tcp
isode-dua 17007/udp
biimenu 18000/tcp #Beckman Instruments, Inc.
biimenu 18000/udp #Beckman Instruments, Inc.
-19000 19000/tcp # pfSense nat bouncing
-19000 19000/udp # pfSense nat bouncing
-19001 19001/tcp # pfSense nat bouncing
-19001 19001/udp # pfSense nat bouncing
-19002 19002/tcp # pfSense nat bouncing
-19002 19002/udp # pfSense nat bouncing
-19003 19003/tcp # pfSense nat bouncing
-19003 19003/udp # pfSense nat bouncing
-19004 19004/tcp # pfSense nat bouncing
-19004 19004/udp # pfSense nat bouncing
-19005 19005/tcp # pfSense nat bouncing
-19005 19005/udp # pfSense nat bouncing
-19006 19006/tcp # pfSense nat bouncing
-19006 19006/udp # pfSense nat bouncing
-19007 19007/tcp # pfSense nat bouncing
-19007 19007/udp # pfSense nat bouncing
-19008 19008/tcp # pfSense nat bouncing
-19008 19008/udp # pfSense nat bouncing
-19009 19009/tcp # pfSense nat bouncing
-19009 19009/udp # pfSense nat bouncing
-19010 19010/tcp # pfSense nat bouncing
-19010 19010/udp # pfSense nat bouncing
-19011 19011/tcp # pfSense nat bouncing
-19011 19011/udp # pfSense nat bouncing
-19012 19012/tcp # pfSense nat bouncing
-19012 19012/udp # pfSense nat bouncing
-19013 19013/tcp # pfSense nat bouncing
-19013 19013/udp # pfSense nat bouncing
-19014 19014/tcp # pfSense nat bouncing
-19014 19014/udp # pfSense nat bouncing
-19015 19015/tcp # pfSense nat bouncing
-19015 19015/udp # pfSense nat bouncing
-19016 19016/tcp # pfSense nat bouncing
-19016 19016/udp # pfSense nat bouncing
-19017 19017/tcp # pfSense nat bouncing
-19017 19017/udp # pfSense nat bouncing
-19018 19018/tcp # pfSense nat bouncing
-19018 19018/udp # pfSense nat bouncing
-19019 19019/tcp # pfSense nat bouncing
-19019 19019/udp # pfSense nat bouncing
-19020 19020/tcp # pfSense nat bouncing
-19020 19020/udp # pfSense nat bouncing
-19021 19021/tcp # pfSense nat bouncing
-19021 19021/udp # pfSense nat bouncing
-19022 19022/tcp # pfSense nat bouncing
-19022 19022/udp # pfSense nat bouncing
-19023 19023/tcp # pfSense nat bouncing
-19023 19023/udp # pfSense nat bouncing
-19024 19024/tcp # pfSense nat bouncing
-19024 19024/udp # pfSense nat bouncing
-19025 19025/tcp # pfSense nat bouncing
-19025 19025/udp # pfSense nat bouncing
-19026 19026/tcp # pfSense nat bouncing
-19026 19026/udp # pfSense nat bouncing
-19027 19027/tcp # pfSense nat bouncing
-19027 19027/udp # pfSense nat bouncing
-19028 19028/tcp # pfSense nat bouncing
-19028 19028/udp # pfSense nat bouncing
-19029 19029/tcp # pfSense nat bouncing
-19029 19029/udp # pfSense nat bouncing
-19030 19030/tcp # pfSense nat bouncing
-19030 19030/udp # pfSense nat bouncing
-19031 19031/tcp # pfSense nat bouncing
-19031 19031/udp # pfSense nat bouncing
-19032 19032/tcp # pfSense nat bouncing
-19032 19032/udp # pfSense nat bouncing
-19033 19033/tcp # pfSense nat bouncing
-19033 19033/udp # pfSense nat bouncing
-19034 19034/tcp # pfSense nat bouncing
-19034 19034/udp # pfSense nat bouncing
-19035 19035/tcp # pfSense nat bouncing
-19035 19035/udp # pfSense nat bouncing
-19036 19036/tcp # pfSense nat bouncing
-19036 19036/udp # pfSense nat bouncing
-19037 19037/tcp # pfSense nat bouncing
-19037 19037/udp # pfSense nat bouncing
-19038 19038/tcp # pfSense nat bouncing
-19038 19038/udp # pfSense nat bouncing
-19039 19039/tcp # pfSense nat bouncing
-19039 19039/udp # pfSense nat bouncing
-19040 19040/tcp # pfSense nat bouncing
-19040 19040/udp # pfSense nat bouncing
-19041 19041/tcp # pfSense nat bouncing
-19041 19041/udp # pfSense nat bouncing
-19042 19042/tcp # pfSense nat bouncing
-19042 19042/udp # pfSense nat bouncing
-19043 19043/tcp # pfSense nat bouncing
-19043 19043/udp # pfSense nat bouncing
-19044 19044/tcp # pfSense nat bouncing
-19044 19044/udp # pfSense nat bouncing
-19045 19045/tcp # pfSense nat bouncing
-19045 19045/udp # pfSense nat bouncing
-19046 19046/tcp # pfSense nat bouncing
-19046 19046/udp # pfSense nat bouncing
-19047 19047/tcp # pfSense nat bouncing
-19047 19047/udp # pfSense nat bouncing
-19048 19048/tcp # pfSense nat bouncing
-19048 19048/udp # pfSense nat bouncing
-19049 19049/tcp # pfSense nat bouncing
-19049 19049/udp # pfSense nat bouncing
-19050 19050/tcp # pfSense nat bouncing
-19050 19050/udp # pfSense nat bouncing
-19051 19051/tcp # pfSense nat bouncing
-19051 19051/udp # pfSense nat bouncing
-19052 19052/tcp # pfSense nat bouncing
-19052 19052/udp # pfSense nat bouncing
-19053 19053/tcp # pfSense nat bouncing
-19053 19053/udp # pfSense nat bouncing
-19054 19054/tcp # pfSense nat bouncing
-19054 19054/udp # pfSense nat bouncing
-19055 19055/tcp # pfSense nat bouncing
-19055 19055/udp # pfSense nat bouncing
-19056 19056/tcp # pfSense nat bouncing
-19056 19056/udp # pfSense nat bouncing
-19057 19057/tcp # pfSense nat bouncing
-19057 19057/udp # pfSense nat bouncing
-19058 19058/tcp # pfSense nat bouncing
-19058 19058/udp # pfSense nat bouncing
-19059 19059/tcp # pfSense nat bouncing
-19059 19059/udp # pfSense nat bouncing
-19060 19060/tcp # pfSense nat bouncing
-19060 19060/udp # pfSense nat bouncing
-19061 19061/tcp # pfSense nat bouncing
-19061 19061/udp # pfSense nat bouncing
-19062 19062/tcp # pfSense nat bouncing
-19062 19062/udp # pfSense nat bouncing
-19063 19063/tcp # pfSense nat bouncing
-19063 19063/udp # pfSense nat bouncing
-19064 19064/tcp # pfSense nat bouncing
-19064 19064/udp # pfSense nat bouncing
-19065 19065/tcp # pfSense nat bouncing
-19065 19065/udp # pfSense nat bouncing
-19066 19066/tcp # pfSense nat bouncing
-19066 19066/udp # pfSense nat bouncing
-19067 19067/tcp # pfSense nat bouncing
-19067 19067/udp # pfSense nat bouncing
-19068 19068/tcp # pfSense nat bouncing
-19068 19068/udp # pfSense nat bouncing
-19069 19069/tcp # pfSense nat bouncing
-19069 19069/udp # pfSense nat bouncing
-19070 19070/tcp # pfSense nat bouncing
-19070 19070/udp # pfSense nat bouncing
-19071 19071/tcp # pfSense nat bouncing
-19071 19071/udp # pfSense nat bouncing
-19072 19072/tcp # pfSense nat bouncing
-19072 19072/udp # pfSense nat bouncing
-19073 19073/tcp # pfSense nat bouncing
-19073 19073/udp # pfSense nat bouncing
-19074 19074/tcp # pfSense nat bouncing
-19074 19074/udp # pfSense nat bouncing
-19075 19075/tcp # pfSense nat bouncing
-19075 19075/udp # pfSense nat bouncing
-19076 19076/tcp # pfSense nat bouncing
-19076 19076/udp # pfSense nat bouncing
-19077 19077/tcp # pfSense nat bouncing
-19077 19077/udp # pfSense nat bouncing
-19078 19078/tcp # pfSense nat bouncing
-19078 19078/udp # pfSense nat bouncing
-19079 19079/tcp # pfSense nat bouncing
-19079 19079/udp # pfSense nat bouncing
-19080 19080/tcp # pfSense nat bouncing
-19080 19080/udp # pfSense nat bouncing
-19081 19081/tcp # pfSense nat bouncing
-19081 19081/udp # pfSense nat bouncing
-19082 19082/tcp # pfSense nat bouncing
-19082 19082/udp # pfSense nat bouncing
-19083 19083/tcp # pfSense nat bouncing
-19083 19083/udp # pfSense nat bouncing
-19084 19084/tcp # pfSense nat bouncing
-19084 19084/udp # pfSense nat bouncing
-19085 19085/tcp # pfSense nat bouncing
-19085 19085/udp # pfSense nat bouncing
-19086 19086/tcp # pfSense nat bouncing
-19086 19086/udp # pfSense nat bouncing
-19087 19087/tcp # pfSense nat bouncing
-19087 19087/udp # pfSense nat bouncing
-19088 19088/tcp # pfSense nat bouncing
-19088 19088/udp # pfSense nat bouncing
-19089 19089/tcp # pfSense nat bouncing
-19089 19089/udp # pfSense nat bouncing
-19090 19090/tcp # pfSense nat bouncing
-19090 19090/udp # pfSense nat bouncing
-19091 19091/tcp # pfSense nat bouncing
-19091 19091/udp # pfSense nat bouncing
-19092 19092/tcp # pfSense nat bouncing
-19092 19092/udp # pfSense nat bouncing
-19093 19093/tcp # pfSense nat bouncing
-19093 19093/udp # pfSense nat bouncing
-19094 19094/tcp # pfSense nat bouncing
-19094 19094/udp # pfSense nat bouncing
-19095 19095/tcp # pfSense nat bouncing
-19095 19095/udp # pfSense nat bouncing
-19096 19096/tcp # pfSense nat bouncing
-19096 19096/udp # pfSense nat bouncing
-19097 19097/tcp # pfSense nat bouncing
-19097 19097/udp # pfSense nat bouncing
-19098 19098/tcp # pfSense nat bouncing
-19098 19098/udp # pfSense nat bouncing
-19099 19099/tcp # pfSense nat bouncing
-19099 19099/udp # pfSense nat bouncing
-19100 19100/tcp # pfSense nat bouncing
-19100 19100/udp # pfSense nat bouncing
-19101 19101/tcp # pfSense nat bouncing
-19101 19101/udp # pfSense nat bouncing
-19102 19102/tcp # pfSense nat bouncing
-19102 19102/udp # pfSense nat bouncing
-19103 19103/tcp # pfSense nat bouncing
-19103 19103/udp # pfSense nat bouncing
-19104 19104/tcp # pfSense nat bouncing
-19104 19104/udp # pfSense nat bouncing
-19105 19105/tcp # pfSense nat bouncing
-19105 19105/udp # pfSense nat bouncing
-19106 19106/tcp # pfSense nat bouncing
-19106 19106/udp # pfSense nat bouncing
-19107 19107/tcp # pfSense nat bouncing
-19107 19107/udp # pfSense nat bouncing
-19108 19108/tcp # pfSense nat bouncing
-19108 19108/udp # pfSense nat bouncing
-19109 19109/tcp # pfSense nat bouncing
-19109 19109/udp # pfSense nat bouncing
-19110 19110/tcp # pfSense nat bouncing
-19110 19110/udp # pfSense nat bouncing
-19111 19111/tcp # pfSense nat bouncing
-19111 19111/udp # pfSense nat bouncing
-19112 19112/tcp # pfSense nat bouncing
-19112 19112/udp # pfSense nat bouncing
-19113 19113/tcp # pfSense nat bouncing
-19113 19113/udp # pfSense nat bouncing
-19114 19114/tcp # pfSense nat bouncing
-19114 19114/udp # pfSense nat bouncing
-19115 19115/tcp # pfSense nat bouncing
-19115 19115/udp # pfSense nat bouncing
-19116 19116/tcp # pfSense nat bouncing
-19116 19116/udp # pfSense nat bouncing
-19117 19117/tcp # pfSense nat bouncing
-19117 19117/udp # pfSense nat bouncing
-19118 19118/tcp # pfSense nat bouncing
-19118 19118/udp # pfSense nat bouncing
-19119 19119/tcp # pfSense nat bouncing
-19119 19119/udp # pfSense nat bouncing
-19120 19120/tcp # pfSense nat bouncing
-19120 19120/udp # pfSense nat bouncing
-19121 19121/tcp # pfSense nat bouncing
-19121 19121/udp # pfSense nat bouncing
-19122 19122/tcp # pfSense nat bouncing
-19122 19122/udp # pfSense nat bouncing
-19123 19123/tcp # pfSense nat bouncing
-19123 19123/udp # pfSense nat bouncing
-19124 19124/tcp # pfSense nat bouncing
-19124 19124/udp # pfSense nat bouncing
-19125 19125/tcp # pfSense nat bouncing
-19125 19125/udp # pfSense nat bouncing
-19126 19126/tcp # pfSense nat bouncing
-19126 19126/udp # pfSense nat bouncing
-19127 19127/tcp # pfSense nat bouncing
-19127 19127/udp # pfSense nat bouncing
-19128 19128/tcp # pfSense nat bouncing
-19128 19128/udp # pfSense nat bouncing
-19129 19129/tcp # pfSense nat bouncing
-19129 19129/udp # pfSense nat bouncing
-19130 19130/tcp # pfSense nat bouncing
-19130 19130/udp # pfSense nat bouncing
-19131 19131/tcp # pfSense nat bouncing
-19131 19131/udp # pfSense nat bouncing
-19132 19132/tcp # pfSense nat bouncing
-19132 19132/udp # pfSense nat bouncing
-19133 19133/tcp # pfSense nat bouncing
-19133 19133/udp # pfSense nat bouncing
-19134 19134/tcp # pfSense nat bouncing
-19134 19134/udp # pfSense nat bouncing
-19135 19135/tcp # pfSense nat bouncing
-19135 19135/udp # pfSense nat bouncing
-19136 19136/tcp # pfSense nat bouncing
-19136 19136/udp # pfSense nat bouncing
-19137 19137/tcp # pfSense nat bouncing
-19137 19137/udp # pfSense nat bouncing
-19138 19138/tcp # pfSense nat bouncing
-19138 19138/udp # pfSense nat bouncing
-19139 19139/tcp # pfSense nat bouncing
-19139 19139/udp # pfSense nat bouncing
-19140 19140/tcp # pfSense nat bouncing
-19140 19140/udp # pfSense nat bouncing
-19141 19141/tcp # pfSense nat bouncing
-19141 19141/udp # pfSense nat bouncing
-19142 19142/tcp # pfSense nat bouncing
-19142 19142/udp # pfSense nat bouncing
-19143 19143/tcp # pfSense nat bouncing
-19143 19143/udp # pfSense nat bouncing
-19144 19144/tcp # pfSense nat bouncing
-19144 19144/udp # pfSense nat bouncing
-19145 19145/tcp # pfSense nat bouncing
-19145 19145/udp # pfSense nat bouncing
-19146 19146/tcp # pfSense nat bouncing
-19146 19146/udp # pfSense nat bouncing
-19147 19147/tcp # pfSense nat bouncing
-19147 19147/udp # pfSense nat bouncing
-19148 19148/tcp # pfSense nat bouncing
-19148 19148/udp # pfSense nat bouncing
-19149 19149/tcp # pfSense nat bouncing
-19149 19149/udp # pfSense nat bouncing
-19150 19150/tcp # pfSense nat bouncing
-19150 19150/udp # pfSense nat bouncing
-19151 19151/tcp # pfSense nat bouncing
-19151 19151/udp # pfSense nat bouncing
-19152 19152/tcp # pfSense nat bouncing
-19152 19152/udp # pfSense nat bouncing
-19153 19153/tcp # pfSense nat bouncing
-19153 19153/udp # pfSense nat bouncing
-19154 19154/tcp # pfSense nat bouncing
-19154 19154/udp # pfSense nat bouncing
-19155 19155/tcp # pfSense nat bouncing
-19155 19155/udp # pfSense nat bouncing
-19156 19156/tcp # pfSense nat bouncing
-19156 19156/udp # pfSense nat bouncing
-19157 19157/tcp # pfSense nat bouncing
-19157 19157/udp # pfSense nat bouncing
-19158 19158/tcp # pfSense nat bouncing
-19158 19158/udp # pfSense nat bouncing
-19159 19159/tcp # pfSense nat bouncing
-19159 19159/udp # pfSense nat bouncing
-19160 19160/tcp # pfSense nat bouncing
-19160 19160/udp # pfSense nat bouncing
-19161 19161/tcp # pfSense nat bouncing
-19161 19161/udp # pfSense nat bouncing
-19162 19162/tcp # pfSense nat bouncing
-19162 19162/udp # pfSense nat bouncing
-19163 19163/tcp # pfSense nat bouncing
-19163 19163/udp # pfSense nat bouncing
-19164 19164/tcp # pfSense nat bouncing
-19164 19164/udp # pfSense nat bouncing
-19165 19165/tcp # pfSense nat bouncing
-19165 19165/udp # pfSense nat bouncing
-19166 19166/tcp # pfSense nat bouncing
-19166 19166/udp # pfSense nat bouncing
-19167 19167/tcp # pfSense nat bouncing
-19167 19167/udp # pfSense nat bouncing
-19168 19168/tcp # pfSense nat bouncing
-19168 19168/udp # pfSense nat bouncing
-19169 19169/tcp # pfSense nat bouncing
-19169 19169/udp # pfSense nat bouncing
-19170 19170/tcp # pfSense nat bouncing
-19170 19170/udp # pfSense nat bouncing
-19171 19171/tcp # pfSense nat bouncing
-19171 19171/udp # pfSense nat bouncing
-19172 19172/tcp # pfSense nat bouncing
-19172 19172/udp # pfSense nat bouncing
-19173 19173/tcp # pfSense nat bouncing
-19173 19173/udp # pfSense nat bouncing
-19174 19174/tcp # pfSense nat bouncing
-19174 19174/udp # pfSense nat bouncing
-19175 19175/tcp # pfSense nat bouncing
-19175 19175/udp # pfSense nat bouncing
-19176 19176/tcp # pfSense nat bouncing
-19176 19176/udp # pfSense nat bouncing
-19177 19177/tcp # pfSense nat bouncing
-19177 19177/udp # pfSense nat bouncing
-19178 19178/tcp # pfSense nat bouncing
-19178 19178/udp # pfSense nat bouncing
-19179 19179/tcp # pfSense nat bouncing
-19179 19179/udp # pfSense nat bouncing
-19180 19180/tcp # pfSense nat bouncing
-19180 19180/udp # pfSense nat bouncing
-19181 19181/tcp # pfSense nat bouncing
-19181 19181/udp # pfSense nat bouncing
-19182 19182/tcp # pfSense nat bouncing
-19182 19182/udp # pfSense nat bouncing
-19183 19183/tcp # pfSense nat bouncing
-19183 19183/udp # pfSense nat bouncing
-19184 19184/tcp # pfSense nat bouncing
-19184 19184/udp # pfSense nat bouncing
-19185 19185/tcp # pfSense nat bouncing
-19185 19185/udp # pfSense nat bouncing
-19186 19186/tcp # pfSense nat bouncing
-19186 19186/udp # pfSense nat bouncing
-19187 19187/tcp # pfSense nat bouncing
-19187 19187/udp # pfSense nat bouncing
-19188 19188/tcp # pfSense nat bouncing
-19188 19188/udp # pfSense nat bouncing
-19189 19189/tcp # pfSense nat bouncing
-19189 19189/udp # pfSense nat bouncing
-19190 19190/tcp # pfSense nat bouncing
-19190 19190/udp # pfSense nat bouncing
-19191 19191/tcp # pfSense nat bouncing
-19191 19191/udp # pfSense nat bouncing
-19192 19192/tcp # pfSense nat bouncing
-19192 19192/udp # pfSense nat bouncing
-19193 19193/tcp # pfSense nat bouncing
-19193 19193/udp # pfSense nat bouncing
-19194 19194/tcp # pfSense nat bouncing
-19194 19194/udp # pfSense nat bouncing
-19195 19195/tcp # pfSense nat bouncing
-19195 19195/udp # pfSense nat bouncing
-19196 19196/tcp # pfSense nat bouncing
-19196 19196/udp # pfSense nat bouncing
-19197 19197/tcp # pfSense nat bouncing
-19197 19197/udp # pfSense nat bouncing
-19198 19198/tcp # pfSense nat bouncing
-19198 19198/udp # pfSense nat bouncing
-19199 19199/tcp # pfSense nat bouncing
-19199 19199/udp # pfSense nat bouncing
-19200 19200/tcp # pfSense nat bouncing
-19200 19200/udp # pfSense nat bouncing
-19201 19201/tcp # pfSense nat bouncing
-19201 19201/udp # pfSense nat bouncing
-19202 19202/tcp # pfSense nat bouncing
-19202 19202/udp # pfSense nat bouncing
-19203 19203/tcp # pfSense nat bouncing
-19203 19203/udp # pfSense nat bouncing
-19204 19204/tcp # pfSense nat bouncing
-19204 19204/udp # pfSense nat bouncing
-19205 19205/tcp # pfSense nat bouncing
-19205 19205/udp # pfSense nat bouncing
-19206 19206/tcp # pfSense nat bouncing
-19206 19206/udp # pfSense nat bouncing
-19207 19207/tcp # pfSense nat bouncing
-19207 19207/udp # pfSense nat bouncing
-19208 19208/tcp # pfSense nat bouncing
-19208 19208/udp # pfSense nat bouncing
-19209 19209/tcp # pfSense nat bouncing
-19209 19209/udp # pfSense nat bouncing
-19210 19210/tcp # pfSense nat bouncing
-19210 19210/udp # pfSense nat bouncing
-19211 19211/tcp # pfSense nat bouncing
-19211 19211/udp # pfSense nat bouncing
-19212 19212/tcp # pfSense nat bouncing
-19212 19212/udp # pfSense nat bouncing
-19213 19213/tcp # pfSense nat bouncing
-19213 19213/udp # pfSense nat bouncing
-19214 19214/tcp # pfSense nat bouncing
-19214 19214/udp # pfSense nat bouncing
-19215 19215/tcp # pfSense nat bouncing
-19215 19215/udp # pfSense nat bouncing
-19216 19216/tcp # pfSense nat bouncing
-19216 19216/udp # pfSense nat bouncing
-19217 19217/tcp # pfSense nat bouncing
-19217 19217/udp # pfSense nat bouncing
-19218 19218/tcp # pfSense nat bouncing
-19218 19218/udp # pfSense nat bouncing
-19219 19219/tcp # pfSense nat bouncing
-19219 19219/udp # pfSense nat bouncing
-19220 19220/tcp # pfSense nat bouncing
-19220 19220/udp # pfSense nat bouncing
-19221 19221/tcp # pfSense nat bouncing
-19221 19221/udp # pfSense nat bouncing
-19222 19222/tcp # pfSense nat bouncing
-19222 19222/udp # pfSense nat bouncing
-19223 19223/tcp # pfSense nat bouncing
-19223 19223/udp # pfSense nat bouncing
-19224 19224/tcp # pfSense nat bouncing
-19224 19224/udp # pfSense nat bouncing
-19225 19225/tcp # pfSense nat bouncing
-19225 19225/udp # pfSense nat bouncing
-19226 19226/tcp # pfSense nat bouncing
-19226 19226/udp # pfSense nat bouncing
-19227 19227/tcp # pfSense nat bouncing
-19227 19227/udp # pfSense nat bouncing
-19228 19228/tcp # pfSense nat bouncing
-19228 19228/udp # pfSense nat bouncing
-19229 19229/tcp # pfSense nat bouncing
-19229 19229/udp # pfSense nat bouncing
-19230 19230/tcp # pfSense nat bouncing
-19230 19230/udp # pfSense nat bouncing
-19231 19231/tcp # pfSense nat bouncing
-19231 19231/udp # pfSense nat bouncing
-19232 19232/tcp # pfSense nat bouncing
-19232 19232/udp # pfSense nat bouncing
-19233 19233/tcp # pfSense nat bouncing
-19233 19233/udp # pfSense nat bouncing
-19234 19234/tcp # pfSense nat bouncing
-19234 19234/udp # pfSense nat bouncing
-19235 19235/tcp # pfSense nat bouncing
-19235 19235/udp # pfSense nat bouncing
-19236 19236/tcp # pfSense nat bouncing
-19236 19236/udp # pfSense nat bouncing
-19237 19237/tcp # pfSense nat bouncing
-19237 19237/udp # pfSense nat bouncing
-19238 19238/tcp # pfSense nat bouncing
-19238 19238/udp # pfSense nat bouncing
-19239 19239/tcp # pfSense nat bouncing
-19239 19239/udp # pfSense nat bouncing
-19240 19240/tcp # pfSense nat bouncing
-19240 19240/udp # pfSense nat bouncing
-19241 19241/tcp # pfSense nat bouncing
-19241 19241/udp # pfSense nat bouncing
-19242 19242/tcp # pfSense nat bouncing
-19242 19242/udp # pfSense nat bouncing
-19243 19243/tcp # pfSense nat bouncing
-19243 19243/udp # pfSense nat bouncing
-19244 19244/tcp # pfSense nat bouncing
-19244 19244/udp # pfSense nat bouncing
-19245 19245/tcp # pfSense nat bouncing
-19245 19245/udp # pfSense nat bouncing
-19246 19246/tcp # pfSense nat bouncing
-19246 19246/udp # pfSense nat bouncing
-19247 19247/tcp # pfSense nat bouncing
-19247 19247/udp # pfSense nat bouncing
-19248 19248/tcp # pfSense nat bouncing
-19248 19248/udp # pfSense nat bouncing
-19249 19249/tcp # pfSense nat bouncing
-19249 19249/udp # pfSense nat bouncing
-19250 19250/tcp # pfSense nat bouncing
-19250 19250/udp # pfSense nat bouncing
-19251 19251/tcp # pfSense nat bouncing
-19251 19251/udp # pfSense nat bouncing
-19252 19252/tcp # pfSense nat bouncing
-19252 19252/udp # pfSense nat bouncing
-19253 19253/tcp # pfSense nat bouncing
-19253 19253/udp # pfSense nat bouncing
-19254 19254/tcp # pfSense nat bouncing
-19254 19254/udp # pfSense nat bouncing
-19255 19255/tcp # pfSense nat bouncing
-19255 19255/udp # pfSense nat bouncing
-19256 19256/tcp # pfSense nat bouncing
-19256 19256/udp # pfSense nat bouncing
-19257 19257/tcp # pfSense nat bouncing
-19257 19257/udp # pfSense nat bouncing
-19258 19258/tcp # pfSense nat bouncing
-19258 19258/udp # pfSense nat bouncing
-19259 19259/tcp # pfSense nat bouncing
-19259 19259/udp # pfSense nat bouncing
-19260 19260/tcp # pfSense nat bouncing
-19260 19260/udp # pfSense nat bouncing
-19261 19261/tcp # pfSense nat bouncing
-19261 19261/udp # pfSense nat bouncing
-19262 19262/tcp # pfSense nat bouncing
-19262 19262/udp # pfSense nat bouncing
-19263 19263/tcp # pfSense nat bouncing
-19263 19263/udp # pfSense nat bouncing
-19264 19264/tcp # pfSense nat bouncing
-19264 19264/udp # pfSense nat bouncing
-19265 19265/tcp # pfSense nat bouncing
-19265 19265/udp # pfSense nat bouncing
-19266 19266/tcp # pfSense nat bouncing
-19266 19266/udp # pfSense nat bouncing
-19267 19267/tcp # pfSense nat bouncing
-19267 19267/udp # pfSense nat bouncing
-19268 19268/tcp # pfSense nat bouncing
-19268 19268/udp # pfSense nat bouncing
-19269 19269/tcp # pfSense nat bouncing
-19269 19269/udp # pfSense nat bouncing
-19270 19270/tcp # pfSense nat bouncing
-19270 19270/udp # pfSense nat bouncing
-19271 19271/tcp # pfSense nat bouncing
-19271 19271/udp # pfSense nat bouncing
-19272 19272/tcp # pfSense nat bouncing
-19272 19272/udp # pfSense nat bouncing
-19273 19273/tcp # pfSense nat bouncing
-19273 19273/udp # pfSense nat bouncing
-19274 19274/tcp # pfSense nat bouncing
-19274 19274/udp # pfSense nat bouncing
-19275 19275/tcp # pfSense nat bouncing
-19275 19275/udp # pfSense nat bouncing
-19276 19276/tcp # pfSense nat bouncing
-19276 19276/udp # pfSense nat bouncing
-19277 19277/tcp # pfSense nat bouncing
-19277 19277/udp # pfSense nat bouncing
-19278 19278/tcp # pfSense nat bouncing
-19278 19278/udp # pfSense nat bouncing
-19279 19279/tcp # pfSense nat bouncing
-19279 19279/udp # pfSense nat bouncing
-19280 19280/tcp # pfSense nat bouncing
-19280 19280/udp # pfSense nat bouncing
-19281 19281/tcp # pfSense nat bouncing
-19281 19281/udp # pfSense nat bouncing
-19282 19282/tcp # pfSense nat bouncing
-19282 19282/udp # pfSense nat bouncing
-19283 19283/tcp # pfSense nat bouncing
-19283 19283/udp # pfSense nat bouncing
-19284 19284/tcp # pfSense nat bouncing
-19284 19284/udp # pfSense nat bouncing
-19285 19285/tcp # pfSense nat bouncing
-19285 19285/udp # pfSense nat bouncing
-19286 19286/tcp # pfSense nat bouncing
-19286 19286/udp # pfSense nat bouncing
-19287 19287/tcp # pfSense nat bouncing
-19287 19287/udp # pfSense nat bouncing
-19288 19288/tcp # pfSense nat bouncing
-19288 19288/udp # pfSense nat bouncing
-19289 19289/tcp # pfSense nat bouncing
-19289 19289/udp # pfSense nat bouncing
-19290 19290/tcp # pfSense nat bouncing
-19290 19290/udp # pfSense nat bouncing
-19291 19291/tcp # pfSense nat bouncing
-19291 19291/udp # pfSense nat bouncing
-19292 19292/tcp # pfSense nat bouncing
-19292 19292/udp # pfSense nat bouncing
-19293 19293/tcp # pfSense nat bouncing
-19293 19293/udp # pfSense nat bouncing
-19294 19294/tcp # pfSense nat bouncing
-19294 19294/udp # pfSense nat bouncing
-19295 19295/tcp # pfSense nat bouncing
-19295 19295/udp # pfSense nat bouncing
-19296 19296/tcp # pfSense nat bouncing
-19296 19296/udp # pfSense nat bouncing
-19297 19297/tcp # pfSense nat bouncing
-19297 19297/udp # pfSense nat bouncing
-19298 19298/tcp # pfSense nat bouncing
-19298 19298/udp # pfSense nat bouncing
-19299 19299/tcp # pfSense nat bouncing
-19299 19299/udp # pfSense nat bouncing
-19300 19300/tcp # pfSense nat bouncing
-19300 19300/udp # pfSense nat bouncing
-19301 19301/tcp # pfSense nat bouncing
-19301 19301/udp # pfSense nat bouncing
-19302 19302/tcp # pfSense nat bouncing
-19302 19302/udp # pfSense nat bouncing
-19303 19303/tcp # pfSense nat bouncing
-19303 19303/udp # pfSense nat bouncing
-19304 19304/tcp # pfSense nat bouncing
-19304 19304/udp # pfSense nat bouncing
-19305 19305/tcp # pfSense nat bouncing
-19305 19305/udp # pfSense nat bouncing
-19306 19306/tcp # pfSense nat bouncing
-19306 19306/udp # pfSense nat bouncing
-19307 19307/tcp # pfSense nat bouncing
-19307 19307/udp # pfSense nat bouncing
-19308 19308/tcp # pfSense nat bouncing
-19308 19308/udp # pfSense nat bouncing
-19309 19309/tcp # pfSense nat bouncing
-19309 19309/udp # pfSense nat bouncing
-19310 19310/tcp # pfSense nat bouncing
-19310 19310/udp # pfSense nat bouncing
-19311 19311/tcp # pfSense nat bouncing
-19311 19311/udp # pfSense nat bouncing
-19312 19312/tcp # pfSense nat bouncing
-19312 19312/udp # pfSense nat bouncing
-19313 19313/tcp # pfSense nat bouncing
-19313 19313/udp # pfSense nat bouncing
-19314 19314/tcp # pfSense nat bouncing
-19314 19314/udp # pfSense nat bouncing
-19315 19315/tcp # pfSense nat bouncing
-19315 19315/udp # pfSense nat bouncing
-19316 19316/tcp # pfSense nat bouncing
-19316 19316/udp # pfSense nat bouncing
-19317 19317/tcp # pfSense nat bouncing
-19317 19317/udp # pfSense nat bouncing
-19318 19318/tcp # pfSense nat bouncing
-19318 19318/udp # pfSense nat bouncing
-19319 19319/tcp # pfSense nat bouncing
-19319 19319/udp # pfSense nat bouncing
-19320 19320/tcp # pfSense nat bouncing
-19320 19320/udp # pfSense nat bouncing
-19321 19321/tcp # pfSense nat bouncing
-19321 19321/udp # pfSense nat bouncing
-19322 19322/tcp # pfSense nat bouncing
-19322 19322/udp # pfSense nat bouncing
-19323 19323/tcp # pfSense nat bouncing
-19323 19323/udp # pfSense nat bouncing
-19324 19324/tcp # pfSense nat bouncing
-19324 19324/udp # pfSense nat bouncing
-19325 19325/tcp # pfSense nat bouncing
-19325 19325/udp # pfSense nat bouncing
-19326 19326/tcp # pfSense nat bouncing
-19326 19326/udp # pfSense nat bouncing
-19327 19327/tcp # pfSense nat bouncing
-19327 19327/udp # pfSense nat bouncing
-19328 19328/tcp # pfSense nat bouncing
-19328 19328/udp # pfSense nat bouncing
-19329 19329/tcp # pfSense nat bouncing
-19329 19329/udp # pfSense nat bouncing
-19330 19330/tcp # pfSense nat bouncing
-19330 19330/udp # pfSense nat bouncing
-19331 19331/tcp # pfSense nat bouncing
-19331 19331/udp # pfSense nat bouncing
-19332 19332/tcp # pfSense nat bouncing
-19332 19332/udp # pfSense nat bouncing
-19333 19333/tcp # pfSense nat bouncing
-19333 19333/udp # pfSense nat bouncing
-19334 19334/tcp # pfSense nat bouncing
-19334 19334/udp # pfSense nat bouncing
-19335 19335/tcp # pfSense nat bouncing
-19335 19335/udp # pfSense nat bouncing
-19336 19336/tcp # pfSense nat bouncing
-19336 19336/udp # pfSense nat bouncing
-19337 19337/tcp # pfSense nat bouncing
-19337 19337/udp # pfSense nat bouncing
-19338 19338/tcp # pfSense nat bouncing
-19338 19338/udp # pfSense nat bouncing
-19339 19339/tcp # pfSense nat bouncing
-19339 19339/udp # pfSense nat bouncing
-19340 19340/tcp # pfSense nat bouncing
-19340 19340/udp # pfSense nat bouncing
-19341 19341/tcp # pfSense nat bouncing
-19341 19341/udp # pfSense nat bouncing
-19342 19342/tcp # pfSense nat bouncing
-19342 19342/udp # pfSense nat bouncing
-19343 19343/tcp # pfSense nat bouncing
-19343 19343/udp # pfSense nat bouncing
-19344 19344/tcp # pfSense nat bouncing
-19344 19344/udp # pfSense nat bouncing
-19345 19345/tcp # pfSense nat bouncing
-19345 19345/udp # pfSense nat bouncing
-19346 19346/tcp # pfSense nat bouncing
-19346 19346/udp # pfSense nat bouncing
-19347 19347/tcp # pfSense nat bouncing
-19347 19347/udp # pfSense nat bouncing
-19348 19348/tcp # pfSense nat bouncing
-19348 19348/udp # pfSense nat bouncing
-19349 19349/tcp # pfSense nat bouncing
-19349 19349/udp # pfSense nat bouncing
-19350 19350/tcp # pfSense nat bouncing
-19350 19350/udp # pfSense nat bouncing
-19351 19351/tcp # pfSense nat bouncing
-19351 19351/udp # pfSense nat bouncing
-19352 19352/tcp # pfSense nat bouncing
-19352 19352/udp # pfSense nat bouncing
-19353 19353/tcp # pfSense nat bouncing
-19353 19353/udp # pfSense nat bouncing
-19354 19354/tcp # pfSense nat bouncing
-19354 19354/udp # pfSense nat bouncing
-19355 19355/tcp # pfSense nat bouncing
-19355 19355/udp # pfSense nat bouncing
-19356 19356/tcp # pfSense nat bouncing
-19356 19356/udp # pfSense nat bouncing
-19357 19357/tcp # pfSense nat bouncing
-19357 19357/udp # pfSense nat bouncing
-19358 19358/tcp # pfSense nat bouncing
-19358 19358/udp # pfSense nat bouncing
-19359 19359/tcp # pfSense nat bouncing
-19359 19359/udp # pfSense nat bouncing
-19360 19360/tcp # pfSense nat bouncing
-19360 19360/udp # pfSense nat bouncing
-19361 19361/tcp # pfSense nat bouncing
-19361 19361/udp # pfSense nat bouncing
-19362 19362/tcp # pfSense nat bouncing
-19362 19362/udp # pfSense nat bouncing
-19363 19363/tcp # pfSense nat bouncing
-19363 19363/udp # pfSense nat bouncing
-19364 19364/tcp # pfSense nat bouncing
-19364 19364/udp # pfSense nat bouncing
-19365 19365/tcp # pfSense nat bouncing
-19365 19365/udp # pfSense nat bouncing
-19366 19366/tcp # pfSense nat bouncing
-19366 19366/udp # pfSense nat bouncing
-19367 19367/tcp # pfSense nat bouncing
-19367 19367/udp # pfSense nat bouncing
-19368 19368/tcp # pfSense nat bouncing
-19368 19368/udp # pfSense nat bouncing
-19369 19369/tcp # pfSense nat bouncing
-19369 19369/udp # pfSense nat bouncing
-19370 19370/tcp # pfSense nat bouncing
-19370 19370/udp # pfSense nat bouncing
-19371 19371/tcp # pfSense nat bouncing
-19371 19371/udp # pfSense nat bouncing
-19372 19372/tcp # pfSense nat bouncing
-19372 19372/udp # pfSense nat bouncing
-19373 19373/tcp # pfSense nat bouncing
-19373 19373/udp # pfSense nat bouncing
-19374 19374/tcp # pfSense nat bouncing
-19374 19374/udp # pfSense nat bouncing
-19375 19375/tcp # pfSense nat bouncing
-19375 19375/udp # pfSense nat bouncing
-19376 19376/tcp # pfSense nat bouncing
-19376 19376/udp # pfSense nat bouncing
-19377 19377/tcp # pfSense nat bouncing
-19377 19377/udp # pfSense nat bouncing
-19378 19378/tcp # pfSense nat bouncing
-19378 19378/udp # pfSense nat bouncing
-19379 19379/tcp # pfSense nat bouncing
-19379 19379/udp # pfSense nat bouncing
-19380 19380/tcp # pfSense nat bouncing
-19380 19380/udp # pfSense nat bouncing
-19381 19381/tcp # pfSense nat bouncing
-19381 19381/udp # pfSense nat bouncing
-19382 19382/tcp # pfSense nat bouncing
-19382 19382/udp # pfSense nat bouncing
-19383 19383/tcp # pfSense nat bouncing
-19383 19383/udp # pfSense nat bouncing
-19384 19384/tcp # pfSense nat bouncing
-19384 19384/udp # pfSense nat bouncing
-19385 19385/tcp # pfSense nat bouncing
-19385 19385/udp # pfSense nat bouncing
-19386 19386/tcp # pfSense nat bouncing
-19386 19386/udp # pfSense nat bouncing
-19387 19387/tcp # pfSense nat bouncing
-19387 19387/udp # pfSense nat bouncing
-19388 19388/tcp # pfSense nat bouncing
-19388 19388/udp # pfSense nat bouncing
-19389 19389/tcp # pfSense nat bouncing
-19389 19389/udp # pfSense nat bouncing
-19390 19390/tcp # pfSense nat bouncing
-19390 19390/udp # pfSense nat bouncing
-19391 19391/tcp # pfSense nat bouncing
-19391 19391/udp # pfSense nat bouncing
-19392 19392/tcp # pfSense nat bouncing
-19392 19392/udp # pfSense nat bouncing
-19393 19393/tcp # pfSense nat bouncing
-19393 19393/udp # pfSense nat bouncing
-19394 19394/tcp # pfSense nat bouncing
-19394 19394/udp # pfSense nat bouncing
-19395 19395/tcp # pfSense nat bouncing
-19395 19395/udp # pfSense nat bouncing
-19396 19396/tcp # pfSense nat bouncing
-19396 19396/udp # pfSense nat bouncing
-19397 19397/tcp # pfSense nat bouncing
-19397 19397/udp # pfSense nat bouncing
-19398 19398/tcp # pfSense nat bouncing
-19398 19398/udp # pfSense nat bouncing
-19399 19399/tcp # pfSense nat bouncing
-19399 19399/udp # pfSense nat bouncing
-19400 19400/tcp # pfSense nat bouncing
-19400 19400/udp # pfSense nat bouncing
-19401 19401/tcp # pfSense nat bouncing
-19401 19401/udp # pfSense nat bouncing
-19402 19402/tcp # pfSense nat bouncing
-19402 19402/udp # pfSense nat bouncing
-19403 19403/tcp # pfSense nat bouncing
-19403 19403/udp # pfSense nat bouncing
-19404 19404/tcp # pfSense nat bouncing
-19404 19404/udp # pfSense nat bouncing
-19405 19405/tcp # pfSense nat bouncing
-19405 19405/udp # pfSense nat bouncing
-19406 19406/tcp # pfSense nat bouncing
-19406 19406/udp # pfSense nat bouncing
-19407 19407/tcp # pfSense nat bouncing
-19407 19407/udp # pfSense nat bouncing
-19408 19408/tcp # pfSense nat bouncing
-19408 19408/udp # pfSense nat bouncing
-19409 19409/tcp # pfSense nat bouncing
-19409 19409/udp # pfSense nat bouncing
-19410 19410/tcp # pfSense nat bouncing
-19410 19410/udp # pfSense nat bouncing
-19411 19411/tcp # pfSense nat bouncing
-19411 19411/udp # pfSense nat bouncing
-19412 19412/tcp # pfSense nat bouncing
-19412 19412/udp # pfSense nat bouncing
-19413 19413/tcp # pfSense nat bouncing
-19413 19413/udp # pfSense nat bouncing
-19414 19414/tcp # pfSense nat bouncing
-19414 19414/udp # pfSense nat bouncing
-19415 19415/tcp # pfSense nat bouncing
-19415 19415/udp # pfSense nat bouncing
-19416 19416/tcp # pfSense nat bouncing
-19416 19416/udp # pfSense nat bouncing
-19417 19417/tcp # pfSense nat bouncing
-19417 19417/udp # pfSense nat bouncing
-19418 19418/tcp # pfSense nat bouncing
-19418 19418/udp # pfSense nat bouncing
-19419 19419/tcp # pfSense nat bouncing
-19419 19419/udp # pfSense nat bouncing
-19420 19420/tcp # pfSense nat bouncing
-19420 19420/udp # pfSense nat bouncing
-19421 19421/tcp # pfSense nat bouncing
-19421 19421/udp # pfSense nat bouncing
-19422 19422/tcp # pfSense nat bouncing
-19422 19422/udp # pfSense nat bouncing
-19423 19423/tcp # pfSense nat bouncing
-19423 19423/udp # pfSense nat bouncing
-19424 19424/tcp # pfSense nat bouncing
-19424 19424/udp # pfSense nat bouncing
-19425 19425/tcp # pfSense nat bouncing
-19425 19425/udp # pfSense nat bouncing
-19426 19426/tcp # pfSense nat bouncing
-19426 19426/udp # pfSense nat bouncing
-19427 19427/tcp # pfSense nat bouncing
-19427 19427/udp # pfSense nat bouncing
-19428 19428/tcp # pfSense nat bouncing
-19428 19428/udp # pfSense nat bouncing
-19429 19429/tcp # pfSense nat bouncing
-19429 19429/udp # pfSense nat bouncing
-19430 19430/tcp # pfSense nat bouncing
-19430 19430/udp # pfSense nat bouncing
-19431 19431/tcp # pfSense nat bouncing
-19431 19431/udp # pfSense nat bouncing
-19432 19432/tcp # pfSense nat bouncing
-19432 19432/udp # pfSense nat bouncing
-19433 19433/tcp # pfSense nat bouncing
-19433 19433/udp # pfSense nat bouncing
-19434 19434/tcp # pfSense nat bouncing
-19434 19434/udp # pfSense nat bouncing
-19435 19435/tcp # pfSense nat bouncing
-19435 19435/udp # pfSense nat bouncing
-19436 19436/tcp # pfSense nat bouncing
-19436 19436/udp # pfSense nat bouncing
-19437 19437/tcp # pfSense nat bouncing
-19437 19437/udp # pfSense nat bouncing
-19438 19438/tcp # pfSense nat bouncing
-19438 19438/udp # pfSense nat bouncing
-19439 19439/tcp # pfSense nat bouncing
-19439 19439/udp # pfSense nat bouncing
-19440 19440/tcp # pfSense nat bouncing
-19440 19440/udp # pfSense nat bouncing
-19441 19441/tcp # pfSense nat bouncing
-19441 19441/udp # pfSense nat bouncing
-19442 19442/tcp # pfSense nat bouncing
-19442 19442/udp # pfSense nat bouncing
-19443 19443/tcp # pfSense nat bouncing
-19443 19443/udp # pfSense nat bouncing
-19444 19444/tcp # pfSense nat bouncing
-19444 19444/udp # pfSense nat bouncing
-19445 19445/tcp # pfSense nat bouncing
-19445 19445/udp # pfSense nat bouncing
-19446 19446/tcp # pfSense nat bouncing
-19446 19446/udp # pfSense nat bouncing
-19447 19447/tcp # pfSense nat bouncing
-19447 19447/udp # pfSense nat bouncing
-19448 19448/tcp # pfSense nat bouncing
-19448 19448/udp # pfSense nat bouncing
-19449 19449/tcp # pfSense nat bouncing
-19449 19449/udp # pfSense nat bouncing
-19450 19450/tcp # pfSense nat bouncing
-19450 19450/udp # pfSense nat bouncing
-19451 19451/tcp # pfSense nat bouncing
-19451 19451/udp # pfSense nat bouncing
-19452 19452/tcp # pfSense nat bouncing
-19452 19452/udp # pfSense nat bouncing
-19453 19453/tcp # pfSense nat bouncing
-19453 19453/udp # pfSense nat bouncing
-19454 19454/tcp # pfSense nat bouncing
-19454 19454/udp # pfSense nat bouncing
-19455 19455/tcp # pfSense nat bouncing
-19455 19455/udp # pfSense nat bouncing
-19456 19456/tcp # pfSense nat bouncing
-19456 19456/udp # pfSense nat bouncing
-19457 19457/tcp # pfSense nat bouncing
-19457 19457/udp # pfSense nat bouncing
-19458 19458/tcp # pfSense nat bouncing
-19458 19458/udp # pfSense nat bouncing
-19459 19459/tcp # pfSense nat bouncing
-19459 19459/udp # pfSense nat bouncing
-19460 19460/tcp # pfSense nat bouncing
-19460 19460/udp # pfSense nat bouncing
-19461 19461/tcp # pfSense nat bouncing
-19461 19461/udp # pfSense nat bouncing
-19462 19462/tcp # pfSense nat bouncing
-19462 19462/udp # pfSense nat bouncing
-19463 19463/tcp # pfSense nat bouncing
-19463 19463/udp # pfSense nat bouncing
-19464 19464/tcp # pfSense nat bouncing
-19464 19464/udp # pfSense nat bouncing
-19465 19465/tcp # pfSense nat bouncing
-19465 19465/udp # pfSense nat bouncing
-19466 19466/tcp # pfSense nat bouncing
-19466 19466/udp # pfSense nat bouncing
-19467 19467/tcp # pfSense nat bouncing
-19467 19467/udp # pfSense nat bouncing
-19468 19468/tcp # pfSense nat bouncing
-19468 19468/udp # pfSense nat bouncing
-19469 19469/tcp # pfSense nat bouncing
-19469 19469/udp # pfSense nat bouncing
-19470 19470/tcp # pfSense nat bouncing
-19470 19470/udp # pfSense nat bouncing
-19471 19471/tcp # pfSense nat bouncing
-19471 19471/udp # pfSense nat bouncing
-19472 19472/tcp # pfSense nat bouncing
-19472 19472/udp # pfSense nat bouncing
-19473 19473/tcp # pfSense nat bouncing
-19473 19473/udp # pfSense nat bouncing
-19474 19474/tcp # pfSense nat bouncing
-19474 19474/udp # pfSense nat bouncing
-19475 19475/tcp # pfSense nat bouncing
-19475 19475/udp # pfSense nat bouncing
-19476 19476/tcp # pfSense nat bouncing
-19476 19476/udp # pfSense nat bouncing
-19477 19477/tcp # pfSense nat bouncing
-19477 19477/udp # pfSense nat bouncing
-19478 19478/tcp # pfSense nat bouncing
-19478 19478/udp # pfSense nat bouncing
-19479 19479/tcp # pfSense nat bouncing
-19479 19479/udp # pfSense nat bouncing
-19480 19480/tcp # pfSense nat bouncing
-19480 19480/udp # pfSense nat bouncing
-19481 19481/tcp # pfSense nat bouncing
-19481 19481/udp # pfSense nat bouncing
-19482 19482/tcp # pfSense nat bouncing
-19482 19482/udp # pfSense nat bouncing
-19483 19483/tcp # pfSense nat bouncing
-19483 19483/udp # pfSense nat bouncing
-19484 19484/tcp # pfSense nat bouncing
-19484 19484/udp # pfSense nat bouncing
-19485 19485/tcp # pfSense nat bouncing
-19485 19485/udp # pfSense nat bouncing
-19486 19486/tcp # pfSense nat bouncing
-19486 19486/udp # pfSense nat bouncing
-19487 19487/tcp # pfSense nat bouncing
-19487 19487/udp # pfSense nat bouncing
-19488 19488/tcp # pfSense nat bouncing
-19488 19488/udp # pfSense nat bouncing
-19489 19489/tcp # pfSense nat bouncing
-19489 19489/udp # pfSense nat bouncing
-19490 19490/tcp # pfSense nat bouncing
-19490 19490/udp # pfSense nat bouncing
-19491 19491/tcp # pfSense nat bouncing
-19491 19491/udp # pfSense nat bouncing
-19492 19492/tcp # pfSense nat bouncing
-19492 19492/udp # pfSense nat bouncing
-19493 19493/tcp # pfSense nat bouncing
-19493 19493/udp # pfSense nat bouncing
-19494 19494/tcp # pfSense nat bouncing
-19494 19494/udp # pfSense nat bouncing
-19495 19495/tcp # pfSense nat bouncing
-19495 19495/udp # pfSense nat bouncing
-19496 19496/tcp # pfSense nat bouncing
-19496 19496/udp # pfSense nat bouncing
-19497 19497/tcp # pfSense nat bouncing
-19497 19497/udp # pfSense nat bouncing
-19498 19498/tcp # pfSense nat bouncing
-19498 19498/udp # pfSense nat bouncing
-19499 19499/tcp # pfSense nat bouncing
-19499 19499/udp # pfSense nat bouncing
-19500 19500/tcp # pfSense nat bouncing
-19500 19500/udp # pfSense nat bouncing
-19501 19501/tcp # pfSense nat bouncing
-19501 19501/udp # pfSense nat bouncing
-19502 19502/tcp # pfSense nat bouncing
-19502 19502/udp # pfSense nat bouncing
-19503 19503/tcp # pfSense nat bouncing
-19503 19503/udp # pfSense nat bouncing
-19504 19504/tcp # pfSense nat bouncing
-19504 19504/udp # pfSense nat bouncing
-19505 19505/tcp # pfSense nat bouncing
-19505 19505/udp # pfSense nat bouncing
-19506 19506/tcp # pfSense nat bouncing
-19506 19506/udp # pfSense nat bouncing
-19507 19507/tcp # pfSense nat bouncing
-19507 19507/udp # pfSense nat bouncing
-19508 19508/tcp # pfSense nat bouncing
-19508 19508/udp # pfSense nat bouncing
-19509 19509/tcp # pfSense nat bouncing
-19509 19509/udp # pfSense nat bouncing
-19510 19510/tcp # pfSense nat bouncing
-19510 19510/udp # pfSense nat bouncing
-19511 19511/tcp # pfSense nat bouncing
-19511 19511/udp # pfSense nat bouncing
-19512 19512/tcp # pfSense nat bouncing
-19512 19512/udp # pfSense nat bouncing
-19513 19513/tcp # pfSense nat bouncing
-19513 19513/udp # pfSense nat bouncing
-19514 19514/tcp # pfSense nat bouncing
-19514 19514/udp # pfSense nat bouncing
-19515 19515/tcp # pfSense nat bouncing
-19515 19515/udp # pfSense nat bouncing
-19516 19516/tcp # pfSense nat bouncing
-19516 19516/udp # pfSense nat bouncing
-19517 19517/tcp # pfSense nat bouncing
-19517 19517/udp # pfSense nat bouncing
-19518 19518/tcp # pfSense nat bouncing
-19518 19518/udp # pfSense nat bouncing
-19519 19519/tcp # pfSense nat bouncing
-19519 19519/udp # pfSense nat bouncing
-19520 19520/tcp # pfSense nat bouncing
-19520 19520/udp # pfSense nat bouncing
-19521 19521/tcp # pfSense nat bouncing
-19521 19521/udp # pfSense nat bouncing
-19522 19522/tcp # pfSense nat bouncing
-19522 19522/udp # pfSense nat bouncing
-19523 19523/tcp # pfSense nat bouncing
-19523 19523/udp # pfSense nat bouncing
-19524 19524/tcp # pfSense nat bouncing
-19524 19524/udp # pfSense nat bouncing
-19525 19525/tcp # pfSense nat bouncing
-19525 19525/udp # pfSense nat bouncing
-19526 19526/tcp # pfSense nat bouncing
-19526 19526/udp # pfSense nat bouncing
-19527 19527/tcp # pfSense nat bouncing
-19527 19527/udp # pfSense nat bouncing
-19528 19528/tcp # pfSense nat bouncing
-19528 19528/udp # pfSense nat bouncing
-19529 19529/tcp # pfSense nat bouncing
-19529 19529/udp # pfSense nat bouncing
-19530 19530/tcp # pfSense nat bouncing
-19530 19530/udp # pfSense nat bouncing
-19531 19531/tcp # pfSense nat bouncing
-19531 19531/udp # pfSense nat bouncing
-19532 19532/tcp # pfSense nat bouncing
-19532 19532/udp # pfSense nat bouncing
-19533 19533/tcp # pfSense nat bouncing
-19533 19533/udp # pfSense nat bouncing
-19534 19534/tcp # pfSense nat bouncing
-19534 19534/udp # pfSense nat bouncing
-19535 19535/tcp # pfSense nat bouncing
-19535 19535/udp # pfSense nat bouncing
-19536 19536/tcp # pfSense nat bouncing
-19536 19536/udp # pfSense nat bouncing
-19537 19537/tcp # pfSense nat bouncing
-19537 19537/udp # pfSense nat bouncing
-19538 19538/tcp # pfSense nat bouncing
-19538 19538/udp # pfSense nat bouncing
-19539 19539/tcp # pfSense nat bouncing
-19539 19539/udp # pfSense nat bouncing
-19540 19540/tcp # pfSense nat bouncing
-19540 19540/udp # pfSense nat bouncing
-19541 19541/tcp # pfSense nat bouncing
-19541 19541/udp # pfSense nat bouncing
-19542 19542/tcp # pfSense nat bouncing
-19542 19542/udp # pfSense nat bouncing
-19543 19543/tcp # pfSense nat bouncing
-19543 19543/udp # pfSense nat bouncing
-19544 19544/tcp # pfSense nat bouncing
-19544 19544/udp # pfSense nat bouncing
-19545 19545/tcp # pfSense nat bouncing
-19545 19545/udp # pfSense nat bouncing
-19546 19546/tcp # pfSense nat bouncing
-19546 19546/udp # pfSense nat bouncing
-19547 19547/tcp # pfSense nat bouncing
-19547 19547/udp # pfSense nat bouncing
-19548 19548/tcp # pfSense nat bouncing
-19548 19548/udp # pfSense nat bouncing
-19549 19549/tcp # pfSense nat bouncing
-19549 19549/udp # pfSense nat bouncing
-19550 19550/tcp # pfSense nat bouncing
-19550 19550/udp # pfSense nat bouncing
-19551 19551/tcp # pfSense nat bouncing
-19551 19551/udp # pfSense nat bouncing
-19552 19552/tcp # pfSense nat bouncing
-19552 19552/udp # pfSense nat bouncing
-19553 19553/tcp # pfSense nat bouncing
-19553 19553/udp # pfSense nat bouncing
-19554 19554/tcp # pfSense nat bouncing
-19554 19554/udp # pfSense nat bouncing
-19555 19555/tcp # pfSense nat bouncing
-19555 19555/udp # pfSense nat bouncing
-19556 19556/tcp # pfSense nat bouncing
-19556 19556/udp # pfSense nat bouncing
-19557 19557/tcp # pfSense nat bouncing
-19557 19557/udp # pfSense nat bouncing
-19558 19558/tcp # pfSense nat bouncing
-19558 19558/udp # pfSense nat bouncing
-19559 19559/tcp # pfSense nat bouncing
-19559 19559/udp # pfSense nat bouncing
-19560 19560/tcp # pfSense nat bouncing
-19560 19560/udp # pfSense nat bouncing
-19561 19561/tcp # pfSense nat bouncing
-19561 19561/udp # pfSense nat bouncing
-19562 19562/tcp # pfSense nat bouncing
-19562 19562/udp # pfSense nat bouncing
-19563 19563/tcp # pfSense nat bouncing
-19563 19563/udp # pfSense nat bouncing
-19564 19564/tcp # pfSense nat bouncing
-19564 19564/udp # pfSense nat bouncing
-19565 19565/tcp # pfSense nat bouncing
-19565 19565/udp # pfSense nat bouncing
-19566 19566/tcp # pfSense nat bouncing
-19566 19566/udp # pfSense nat bouncing
-19567 19567/tcp # pfSense nat bouncing
-19567 19567/udp # pfSense nat bouncing
-19568 19568/tcp # pfSense nat bouncing
-19568 19568/udp # pfSense nat bouncing
-19569 19569/tcp # pfSense nat bouncing
-19569 19569/udp # pfSense nat bouncing
-19570 19570/tcp # pfSense nat bouncing
-19570 19570/udp # pfSense nat bouncing
-19571 19571/tcp # pfSense nat bouncing
-19571 19571/udp # pfSense nat bouncing
-19572 19572/tcp # pfSense nat bouncing
-19572 19572/udp # pfSense nat bouncing
-19573 19573/tcp # pfSense nat bouncing
-19573 19573/udp # pfSense nat bouncing
-19574 19574/tcp # pfSense nat bouncing
-19574 19574/udp # pfSense nat bouncing
-19575 19575/tcp # pfSense nat bouncing
-19575 19575/udp # pfSense nat bouncing
-19576 19576/tcp # pfSense nat bouncing
-19576 19576/udp # pfSense nat bouncing
-19577 19577/tcp # pfSense nat bouncing
-19577 19577/udp # pfSense nat bouncing
-19578 19578/tcp # pfSense nat bouncing
-19578 19578/udp # pfSense nat bouncing
-19579 19579/tcp # pfSense nat bouncing
-19579 19579/udp # pfSense nat bouncing
-19580 19580/tcp # pfSense nat bouncing
-19580 19580/udp # pfSense nat bouncing
-19581 19581/tcp # pfSense nat bouncing
-19581 19581/udp # pfSense nat bouncing
-19582 19582/tcp # pfSense nat bouncing
-19582 19582/udp # pfSense nat bouncing
-19583 19583/tcp # pfSense nat bouncing
-19583 19583/udp # pfSense nat bouncing
-19584 19584/tcp # pfSense nat bouncing
-19584 19584/udp # pfSense nat bouncing
-19585 19585/tcp # pfSense nat bouncing
-19585 19585/udp # pfSense nat bouncing
-19586 19586/tcp # pfSense nat bouncing
-19586 19586/udp # pfSense nat bouncing
-19587 19587/tcp # pfSense nat bouncing
-19587 19587/udp # pfSense nat bouncing
-19588 19588/tcp # pfSense nat bouncing
-19588 19588/udp # pfSense nat bouncing
-19589 19589/tcp # pfSense nat bouncing
-19589 19589/udp # pfSense nat bouncing
-19590 19590/tcp # pfSense nat bouncing
-19590 19590/udp # pfSense nat bouncing
-19591 19591/tcp # pfSense nat bouncing
-19591 19591/udp # pfSense nat bouncing
-19592 19592/tcp # pfSense nat bouncing
-19592 19592/udp # pfSense nat bouncing
-19593 19593/tcp # pfSense nat bouncing
-19593 19593/udp # pfSense nat bouncing
-19594 19594/tcp # pfSense nat bouncing
-19594 19594/udp # pfSense nat bouncing
-19595 19595/tcp # pfSense nat bouncing
-19595 19595/udp # pfSense nat bouncing
-19596 19596/tcp # pfSense nat bouncing
-19596 19596/udp # pfSense nat bouncing
-19597 19597/tcp # pfSense nat bouncing
-19597 19597/udp # pfSense nat bouncing
-19598 19598/tcp # pfSense nat bouncing
-19598 19598/udp # pfSense nat bouncing
-19599 19599/tcp # pfSense nat bouncing
-19599 19599/udp # pfSense nat bouncing
-19600 19600/tcp # pfSense nat bouncing
-19600 19600/udp # pfSense nat bouncing
-19601 19601/tcp # pfSense nat bouncing
-19601 19601/udp # pfSense nat bouncing
-19602 19602/tcp # pfSense nat bouncing
-19602 19602/udp # pfSense nat bouncing
-19603 19603/tcp # pfSense nat bouncing
-19603 19603/udp # pfSense nat bouncing
-19604 19604/tcp # pfSense nat bouncing
-19604 19604/udp # pfSense nat bouncing
-19605 19605/tcp # pfSense nat bouncing
-19605 19605/udp # pfSense nat bouncing
-19606 19606/tcp # pfSense nat bouncing
-19606 19606/udp # pfSense nat bouncing
-19607 19607/tcp # pfSense nat bouncing
-19607 19607/udp # pfSense nat bouncing
-19608 19608/tcp # pfSense nat bouncing
-19608 19608/udp # pfSense nat bouncing
-19609 19609/tcp # pfSense nat bouncing
-19609 19609/udp # pfSense nat bouncing
-19610 19610/tcp # pfSense nat bouncing
-19610 19610/udp # pfSense nat bouncing
-19611 19611/tcp # pfSense nat bouncing
-19611 19611/udp # pfSense nat bouncing
-19612 19612/tcp # pfSense nat bouncing
-19612 19612/udp # pfSense nat bouncing
-19613 19613/tcp # pfSense nat bouncing
-19613 19613/udp # pfSense nat bouncing
-19614 19614/tcp # pfSense nat bouncing
-19614 19614/udp # pfSense nat bouncing
-19615 19615/tcp # pfSense nat bouncing
-19615 19615/udp # pfSense nat bouncing
-19616 19616/tcp # pfSense nat bouncing
-19616 19616/udp # pfSense nat bouncing
-19617 19617/tcp # pfSense nat bouncing
-19617 19617/udp # pfSense nat bouncing
-19618 19618/tcp # pfSense nat bouncing
-19618 19618/udp # pfSense nat bouncing
-19619 19619/tcp # pfSense nat bouncing
-19619 19619/udp # pfSense nat bouncing
-19620 19620/tcp # pfSense nat bouncing
-19620 19620/udp # pfSense nat bouncing
-19621 19621/tcp # pfSense nat bouncing
-19621 19621/udp # pfSense nat bouncing
-19622 19622/tcp # pfSense nat bouncing
-19622 19622/udp # pfSense nat bouncing
-19623 19623/tcp # pfSense nat bouncing
-19623 19623/udp # pfSense nat bouncing
-19624 19624/tcp # pfSense nat bouncing
-19624 19624/udp # pfSense nat bouncing
-19625 19625/tcp # pfSense nat bouncing
-19625 19625/udp # pfSense nat bouncing
-19626 19626/tcp # pfSense nat bouncing
-19626 19626/udp # pfSense nat bouncing
-19627 19627/tcp # pfSense nat bouncing
-19627 19627/udp # pfSense nat bouncing
-19628 19628/tcp # pfSense nat bouncing
-19628 19628/udp # pfSense nat bouncing
-19629 19629/tcp # pfSense nat bouncing
-19629 19629/udp # pfSense nat bouncing
-19630 19630/tcp # pfSense nat bouncing
-19630 19630/udp # pfSense nat bouncing
-19631 19631/tcp # pfSense nat bouncing
-19631 19631/udp # pfSense nat bouncing
-19632 19632/tcp # pfSense nat bouncing
-19632 19632/udp # pfSense nat bouncing
-19633 19633/tcp # pfSense nat bouncing
-19633 19633/udp # pfSense nat bouncing
-19634 19634/tcp # pfSense nat bouncing
-19634 19634/udp # pfSense nat bouncing
-19635 19635/tcp # pfSense nat bouncing
-19635 19635/udp # pfSense nat bouncing
-19636 19636/tcp # pfSense nat bouncing
-19636 19636/udp # pfSense nat bouncing
-19637 19637/tcp # pfSense nat bouncing
-19637 19637/udp # pfSense nat bouncing
-19638 19638/tcp # pfSense nat bouncing
-19638 19638/udp # pfSense nat bouncing
-19639 19639/tcp # pfSense nat bouncing
-19639 19639/udp # pfSense nat bouncing
-19640 19640/tcp # pfSense nat bouncing
-19640 19640/udp # pfSense nat bouncing
-19641 19641/tcp # pfSense nat bouncing
-19641 19641/udp # pfSense nat bouncing
-19642 19642/tcp # pfSense nat bouncing
-19642 19642/udp # pfSense nat bouncing
-19643 19643/tcp # pfSense nat bouncing
-19643 19643/udp # pfSense nat bouncing
-19644 19644/tcp # pfSense nat bouncing
-19644 19644/udp # pfSense nat bouncing
-19645 19645/tcp # pfSense nat bouncing
-19645 19645/udp # pfSense nat bouncing
-19646 19646/tcp # pfSense nat bouncing
-19646 19646/udp # pfSense nat bouncing
-19647 19647/tcp # pfSense nat bouncing
-19647 19647/udp # pfSense nat bouncing
-19648 19648/tcp # pfSense nat bouncing
-19648 19648/udp # pfSense nat bouncing
-19649 19649/tcp # pfSense nat bouncing
-19649 19649/udp # pfSense nat bouncing
-19650 19650/tcp # pfSense nat bouncing
-19650 19650/udp # pfSense nat bouncing
-19651 19651/tcp # pfSense nat bouncing
-19651 19651/udp # pfSense nat bouncing
-19652 19652/tcp # pfSense nat bouncing
-19652 19652/udp # pfSense nat bouncing
-19653 19653/tcp # pfSense nat bouncing
-19653 19653/udp # pfSense nat bouncing
-19654 19654/tcp # pfSense nat bouncing
-19654 19654/udp # pfSense nat bouncing
-19655 19655/tcp # pfSense nat bouncing
-19655 19655/udp # pfSense nat bouncing
-19656 19656/tcp # pfSense nat bouncing
-19656 19656/udp # pfSense nat bouncing
-19657 19657/tcp # pfSense nat bouncing
-19657 19657/udp # pfSense nat bouncing
-19658 19658/tcp # pfSense nat bouncing
-19658 19658/udp # pfSense nat bouncing
-19659 19659/tcp # pfSense nat bouncing
-19659 19659/udp # pfSense nat bouncing
-19660 19660/tcp # pfSense nat bouncing
-19660 19660/udp # pfSense nat bouncing
-19661 19661/tcp # pfSense nat bouncing
-19661 19661/udp # pfSense nat bouncing
-19662 19662/tcp # pfSense nat bouncing
-19662 19662/udp # pfSense nat bouncing
-19663 19663/tcp # pfSense nat bouncing
-19663 19663/udp # pfSense nat bouncing
-19664 19664/tcp # pfSense nat bouncing
-19664 19664/udp # pfSense nat bouncing
-19665 19665/tcp # pfSense nat bouncing
-19665 19665/udp # pfSense nat bouncing
-19666 19666/tcp # pfSense nat bouncing
-19666 19666/udp # pfSense nat bouncing
-19667 19667/tcp # pfSense nat bouncing
-19667 19667/udp # pfSense nat bouncing
-19668 19668/tcp # pfSense nat bouncing
-19668 19668/udp # pfSense nat bouncing
-19669 19669/tcp # pfSense nat bouncing
-19669 19669/udp # pfSense nat bouncing
-19670 19670/tcp # pfSense nat bouncing
-19670 19670/udp # pfSense nat bouncing
-19671 19671/tcp # pfSense nat bouncing
-19671 19671/udp # pfSense nat bouncing
-19672 19672/tcp # pfSense nat bouncing
-19672 19672/udp # pfSense nat bouncing
-19673 19673/tcp # pfSense nat bouncing
-19673 19673/udp # pfSense nat bouncing
-19674 19674/tcp # pfSense nat bouncing
-19674 19674/udp # pfSense nat bouncing
-19675 19675/tcp # pfSense nat bouncing
-19675 19675/udp # pfSense nat bouncing
-19676 19676/tcp # pfSense nat bouncing
-19676 19676/udp # pfSense nat bouncing
-19677 19677/tcp # pfSense nat bouncing
-19677 19677/udp # pfSense nat bouncing
-19678 19678/tcp # pfSense nat bouncing
-19678 19678/udp # pfSense nat bouncing
-19679 19679/tcp # pfSense nat bouncing
-19679 19679/udp # pfSense nat bouncing
-19680 19680/tcp # pfSense nat bouncing
-19680 19680/udp # pfSense nat bouncing
-19681 19681/tcp # pfSense nat bouncing
-19681 19681/udp # pfSense nat bouncing
-19682 19682/tcp # pfSense nat bouncing
-19682 19682/udp # pfSense nat bouncing
-19683 19683/tcp # pfSense nat bouncing
-19683 19683/udp # pfSense nat bouncing
-19684 19684/tcp # pfSense nat bouncing
-19684 19684/udp # pfSense nat bouncing
-19685 19685/tcp # pfSense nat bouncing
-19685 19685/udp # pfSense nat bouncing
-19686 19686/tcp # pfSense nat bouncing
-19686 19686/udp # pfSense nat bouncing
-19687 19687/tcp # pfSense nat bouncing
-19687 19687/udp # pfSense nat bouncing
-19688 19688/tcp # pfSense nat bouncing
-19688 19688/udp # pfSense nat bouncing
-19689 19689/tcp # pfSense nat bouncing
-19689 19689/udp # pfSense nat bouncing
-19690 19690/tcp # pfSense nat bouncing
-19690 19690/udp # pfSense nat bouncing
-19691 19691/tcp # pfSense nat bouncing
-19691 19691/udp # pfSense nat bouncing
-19692 19692/tcp # pfSense nat bouncing
-19692 19692/udp # pfSense nat bouncing
-19693 19693/tcp # pfSense nat bouncing
-19693 19693/udp # pfSense nat bouncing
-19694 19694/tcp # pfSense nat bouncing
-19694 19694/udp # pfSense nat bouncing
-19695 19695/tcp # pfSense nat bouncing
-19695 19695/udp # pfSense nat bouncing
-19696 19696/tcp # pfSense nat bouncing
-19696 19696/udp # pfSense nat bouncing
-19697 19697/tcp # pfSense nat bouncing
-19697 19697/udp # pfSense nat bouncing
-19698 19698/tcp # pfSense nat bouncing
-19698 19698/udp # pfSense nat bouncing
-19699 19699/tcp # pfSense nat bouncing
-19699 19699/udp # pfSense nat bouncing
-19700 19700/tcp # pfSense nat bouncing
-19700 19700/udp # pfSense nat bouncing
-19701 19701/tcp # pfSense nat bouncing
-19701 19701/udp # pfSense nat bouncing
-19702 19702/tcp # pfSense nat bouncing
-19702 19702/udp # pfSense nat bouncing
-19703 19703/tcp # pfSense nat bouncing
-19703 19703/udp # pfSense nat bouncing
-19704 19704/tcp # pfSense nat bouncing
-19704 19704/udp # pfSense nat bouncing
-19705 19705/tcp # pfSense nat bouncing
-19705 19705/udp # pfSense nat bouncing
-19706 19706/tcp # pfSense nat bouncing
-19706 19706/udp # pfSense nat bouncing
-19707 19707/tcp # pfSense nat bouncing
-19707 19707/udp # pfSense nat bouncing
-19708 19708/tcp # pfSense nat bouncing
-19708 19708/udp # pfSense nat bouncing
-19709 19709/tcp # pfSense nat bouncing
-19709 19709/udp # pfSense nat bouncing
-19710 19710/tcp # pfSense nat bouncing
-19710 19710/udp # pfSense nat bouncing
-19711 19711/tcp # pfSense nat bouncing
-19711 19711/udp # pfSense nat bouncing
-19712 19712/tcp # pfSense nat bouncing
-19712 19712/udp # pfSense nat bouncing
-19713 19713/tcp # pfSense nat bouncing
-19713 19713/udp # pfSense nat bouncing
-19714 19714/tcp # pfSense nat bouncing
-19714 19714/udp # pfSense nat bouncing
-19715 19715/tcp # pfSense nat bouncing
-19715 19715/udp # pfSense nat bouncing
-19716 19716/tcp # pfSense nat bouncing
-19716 19716/udp # pfSense nat bouncing
-19717 19717/tcp # pfSense nat bouncing
-19717 19717/udp # pfSense nat bouncing
-19718 19718/tcp # pfSense nat bouncing
-19718 19718/udp # pfSense nat bouncing
-19719 19719/tcp # pfSense nat bouncing
-19719 19719/udp # pfSense nat bouncing
-19720 19720/tcp # pfSense nat bouncing
-19720 19720/udp # pfSense nat bouncing
-19721 19721/tcp # pfSense nat bouncing
-19721 19721/udp # pfSense nat bouncing
-19722 19722/tcp # pfSense nat bouncing
-19722 19722/udp # pfSense nat bouncing
-19723 19723/tcp # pfSense nat bouncing
-19723 19723/udp # pfSense nat bouncing
-19724 19724/tcp # pfSense nat bouncing
-19724 19724/udp # pfSense nat bouncing
-19725 19725/tcp # pfSense nat bouncing
-19725 19725/udp # pfSense nat bouncing
-19726 19726/tcp # pfSense nat bouncing
-19726 19726/udp # pfSense nat bouncing
-19727 19727/tcp # pfSense nat bouncing
-19727 19727/udp # pfSense nat bouncing
-19728 19728/tcp # pfSense nat bouncing
-19728 19728/udp # pfSense nat bouncing
-19729 19729/tcp # pfSense nat bouncing
-19729 19729/udp # pfSense nat bouncing
-19730 19730/tcp # pfSense nat bouncing
-19730 19730/udp # pfSense nat bouncing
-19731 19731/tcp # pfSense nat bouncing
-19731 19731/udp # pfSense nat bouncing
-19732 19732/tcp # pfSense nat bouncing
-19732 19732/udp # pfSense nat bouncing
-19733 19733/tcp # pfSense nat bouncing
-19733 19733/udp # pfSense nat bouncing
-19734 19734/tcp # pfSense nat bouncing
-19734 19734/udp # pfSense nat bouncing
-19735 19735/tcp # pfSense nat bouncing
-19735 19735/udp # pfSense nat bouncing
-19736 19736/tcp # pfSense nat bouncing
-19736 19736/udp # pfSense nat bouncing
-19737 19737/tcp # pfSense nat bouncing
-19737 19737/udp # pfSense nat bouncing
-19738 19738/tcp # pfSense nat bouncing
-19738 19738/udp # pfSense nat bouncing
-19739 19739/tcp # pfSense nat bouncing
-19739 19739/udp # pfSense nat bouncing
-19740 19740/tcp # pfSense nat bouncing
-19740 19740/udp # pfSense nat bouncing
-19741 19741/tcp # pfSense nat bouncing
-19741 19741/udp # pfSense nat bouncing
-19742 19742/tcp # pfSense nat bouncing
-19742 19742/udp # pfSense nat bouncing
-19743 19743/tcp # pfSense nat bouncing
-19743 19743/udp # pfSense nat bouncing
-19744 19744/tcp # pfSense nat bouncing
-19744 19744/udp # pfSense nat bouncing
-19745 19745/tcp # pfSense nat bouncing
-19745 19745/udp # pfSense nat bouncing
-19746 19746/tcp # pfSense nat bouncing
-19746 19746/udp # pfSense nat bouncing
-19747 19747/tcp # pfSense nat bouncing
-19747 19747/udp # pfSense nat bouncing
-19748 19748/tcp # pfSense nat bouncing
-19748 19748/udp # pfSense nat bouncing
-19749 19749/tcp # pfSense nat bouncing
-19749 19749/udp # pfSense nat bouncing
-19750 19750/tcp # pfSense nat bouncing
-19750 19750/udp # pfSense nat bouncing
-19751 19751/tcp # pfSense nat bouncing
-19751 19751/udp # pfSense nat bouncing
-19752 19752/tcp # pfSense nat bouncing
-19752 19752/udp # pfSense nat bouncing
-19753 19753/tcp # pfSense nat bouncing
-19753 19753/udp # pfSense nat bouncing
-19754 19754/tcp # pfSense nat bouncing
-19754 19754/udp # pfSense nat bouncing
-19755 19755/tcp # pfSense nat bouncing
-19755 19755/udp # pfSense nat bouncing
-19756 19756/tcp # pfSense nat bouncing
-19756 19756/udp # pfSense nat bouncing
-19757 19757/tcp # pfSense nat bouncing
-19757 19757/udp # pfSense nat bouncing
-19758 19758/tcp # pfSense nat bouncing
-19758 19758/udp # pfSense nat bouncing
-19759 19759/tcp # pfSense nat bouncing
-19759 19759/udp # pfSense nat bouncing
-19760 19760/tcp # pfSense nat bouncing
-19760 19760/udp # pfSense nat bouncing
-19761 19761/tcp # pfSense nat bouncing
-19761 19761/udp # pfSense nat bouncing
-19762 19762/tcp # pfSense nat bouncing
-19762 19762/udp # pfSense nat bouncing
-19763 19763/tcp # pfSense nat bouncing
-19763 19763/udp # pfSense nat bouncing
-19764 19764/tcp # pfSense nat bouncing
-19764 19764/udp # pfSense nat bouncing
-19765 19765/tcp # pfSense nat bouncing
-19765 19765/udp # pfSense nat bouncing
-19766 19766/tcp # pfSense nat bouncing
-19766 19766/udp # pfSense nat bouncing
-19767 19767/tcp # pfSense nat bouncing
-19767 19767/udp # pfSense nat bouncing
-19768 19768/tcp # pfSense nat bouncing
-19768 19768/udp # pfSense nat bouncing
-19769 19769/tcp # pfSense nat bouncing
-19769 19769/udp # pfSense nat bouncing
-19770 19770/tcp # pfSense nat bouncing
-19770 19770/udp # pfSense nat bouncing
-19771 19771/tcp # pfSense nat bouncing
-19771 19771/udp # pfSense nat bouncing
-19772 19772/tcp # pfSense nat bouncing
-19772 19772/udp # pfSense nat bouncing
-19773 19773/tcp # pfSense nat bouncing
-19773 19773/udp # pfSense nat bouncing
-19774 19774/tcp # pfSense nat bouncing
-19774 19774/udp # pfSense nat bouncing
-19775 19775/tcp # pfSense nat bouncing
-19775 19775/udp # pfSense nat bouncing
-19776 19776/tcp # pfSense nat bouncing
-19776 19776/udp # pfSense nat bouncing
-19777 19777/tcp # pfSense nat bouncing
-19777 19777/udp # pfSense nat bouncing
-19778 19778/tcp # pfSense nat bouncing
-19778 19778/udp # pfSense nat bouncing
-19779 19779/tcp # pfSense nat bouncing
-19779 19779/udp # pfSense nat bouncing
-19780 19780/tcp # pfSense nat bouncing
-19780 19780/udp # pfSense nat bouncing
-19781 19781/tcp # pfSense nat bouncing
-19781 19781/udp # pfSense nat bouncing
-19782 19782/tcp # pfSense nat bouncing
-19782 19782/udp # pfSense nat bouncing
-19783 19783/tcp # pfSense nat bouncing
-19783 19783/udp # pfSense nat bouncing
-19784 19784/tcp # pfSense nat bouncing
-19784 19784/udp # pfSense nat bouncing
-19785 19785/tcp # pfSense nat bouncing
-19785 19785/udp # pfSense nat bouncing
-19786 19786/tcp # pfSense nat bouncing
-19786 19786/udp # pfSense nat bouncing
-19787 19787/tcp # pfSense nat bouncing
-19787 19787/udp # pfSense nat bouncing
-19788 19788/tcp # pfSense nat bouncing
-19788 19788/udp # pfSense nat bouncing
-19789 19789/tcp # pfSense nat bouncing
-19789 19789/udp # pfSense nat bouncing
-19790 19790/tcp # pfSense nat bouncing
-19790 19790/udp # pfSense nat bouncing
-19791 19791/tcp # pfSense nat bouncing
-19791 19791/udp # pfSense nat bouncing
-19792 19792/tcp # pfSense nat bouncing
-19792 19792/udp # pfSense nat bouncing
-19793 19793/tcp # pfSense nat bouncing
-19793 19793/udp # pfSense nat bouncing
-19794 19794/tcp # pfSense nat bouncing
-19794 19794/udp # pfSense nat bouncing
-19795 19795/tcp # pfSense nat bouncing
-19795 19795/udp # pfSense nat bouncing
-19796 19796/tcp # pfSense nat bouncing
-19796 19796/udp # pfSense nat bouncing
-19797 19797/tcp # pfSense nat bouncing
-19797 19797/udp # pfSense nat bouncing
-19798 19798/tcp # pfSense nat bouncing
-19798 19798/udp # pfSense nat bouncing
-19799 19799/tcp # pfSense nat bouncing
-19799 19799/udp # pfSense nat bouncing
-19800 19800/tcp # pfSense nat bouncing
-19800 19800/udp # pfSense nat bouncing
-19801 19801/tcp # pfSense nat bouncing
-19801 19801/udp # pfSense nat bouncing
-19802 19802/tcp # pfSense nat bouncing
-19802 19802/udp # pfSense nat bouncing
-19803 19803/tcp # pfSense nat bouncing
-19803 19803/udp # pfSense nat bouncing
-19804 19804/tcp # pfSense nat bouncing
-19804 19804/udp # pfSense nat bouncing
-19805 19805/tcp # pfSense nat bouncing
-19805 19805/udp # pfSense nat bouncing
-19806 19806/tcp # pfSense nat bouncing
-19806 19806/udp # pfSense nat bouncing
-19807 19807/tcp # pfSense nat bouncing
-19807 19807/udp # pfSense nat bouncing
-19808 19808/tcp # pfSense nat bouncing
-19808 19808/udp # pfSense nat bouncing
-19809 19809/tcp # pfSense nat bouncing
-19809 19809/udp # pfSense nat bouncing
-19810 19810/tcp # pfSense nat bouncing
-19810 19810/udp # pfSense nat bouncing
-19811 19811/tcp # pfSense nat bouncing
-19811 19811/udp # pfSense nat bouncing
-19812 19812/tcp # pfSense nat bouncing
-19812 19812/udp # pfSense nat bouncing
-19813 19813/tcp # pfSense nat bouncing
-19813 19813/udp # pfSense nat bouncing
-19814 19814/tcp # pfSense nat bouncing
-19814 19814/udp # pfSense nat bouncing
-19815 19815/tcp # pfSense nat bouncing
-19815 19815/udp # pfSense nat bouncing
-19816 19816/tcp # pfSense nat bouncing
-19816 19816/udp # pfSense nat bouncing
-19817 19817/tcp # pfSense nat bouncing
-19817 19817/udp # pfSense nat bouncing
-19818 19818/tcp # pfSense nat bouncing
-19818 19818/udp # pfSense nat bouncing
-19819 19819/tcp # pfSense nat bouncing
-19819 19819/udp # pfSense nat bouncing
-19820 19820/tcp # pfSense nat bouncing
-19820 19820/udp # pfSense nat bouncing
-19821 19821/tcp # pfSense nat bouncing
-19821 19821/udp # pfSense nat bouncing
-19822 19822/tcp # pfSense nat bouncing
-19822 19822/udp # pfSense nat bouncing
-19823 19823/tcp # pfSense nat bouncing
-19823 19823/udp # pfSense nat bouncing
-19824 19824/tcp # pfSense nat bouncing
-19824 19824/udp # pfSense nat bouncing
-19825 19825/tcp # pfSense nat bouncing
-19825 19825/udp # pfSense nat bouncing
-19826 19826/tcp # pfSense nat bouncing
-19826 19826/udp # pfSense nat bouncing
-19827 19827/tcp # pfSense nat bouncing
-19827 19827/udp # pfSense nat bouncing
-19828 19828/tcp # pfSense nat bouncing
-19828 19828/udp # pfSense nat bouncing
-19829 19829/tcp # pfSense nat bouncing
-19829 19829/udp # pfSense nat bouncing
-19830 19830/tcp # pfSense nat bouncing
-19830 19830/udp # pfSense nat bouncing
-19831 19831/tcp # pfSense nat bouncing
-19831 19831/udp # pfSense nat bouncing
-19832 19832/tcp # pfSense nat bouncing
-19832 19832/udp # pfSense nat bouncing
-19833 19833/tcp # pfSense nat bouncing
-19833 19833/udp # pfSense nat bouncing
-19834 19834/tcp # pfSense nat bouncing
-19834 19834/udp # pfSense nat bouncing
-19835 19835/tcp # pfSense nat bouncing
-19835 19835/udp # pfSense nat bouncing
-19836 19836/tcp # pfSense nat bouncing
-19836 19836/udp # pfSense nat bouncing
-19837 19837/tcp # pfSense nat bouncing
-19837 19837/udp # pfSense nat bouncing
-19838 19838/tcp # pfSense nat bouncing
-19838 19838/udp # pfSense nat bouncing
-19839 19839/tcp # pfSense nat bouncing
-19839 19839/udp # pfSense nat bouncing
-19840 19840/tcp # pfSense nat bouncing
-19840 19840/udp # pfSense nat bouncing
-19841 19841/tcp # pfSense nat bouncing
-19841 19841/udp # pfSense nat bouncing
-19842 19842/tcp # pfSense nat bouncing
-19842 19842/udp # pfSense nat bouncing
-19843 19843/tcp # pfSense nat bouncing
-19843 19843/udp # pfSense nat bouncing
-19844 19844/tcp # pfSense nat bouncing
-19844 19844/udp # pfSense nat bouncing
-19845 19845/tcp # pfSense nat bouncing
-19845 19845/udp # pfSense nat bouncing
-19846 19846/tcp # pfSense nat bouncing
-19846 19846/udp # pfSense nat bouncing
-19847 19847/tcp # pfSense nat bouncing
-19847 19847/udp # pfSense nat bouncing
-19848 19848/tcp # pfSense nat bouncing
-19848 19848/udp # pfSense nat bouncing
-19849 19849/tcp # pfSense nat bouncing
-19849 19849/udp # pfSense nat bouncing
-19850 19850/tcp # pfSense nat bouncing
-19850 19850/udp # pfSense nat bouncing
-19851 19851/tcp # pfSense nat bouncing
-19851 19851/udp # pfSense nat bouncing
-19852 19852/tcp # pfSense nat bouncing
-19852 19852/udp # pfSense nat bouncing
-19853 19853/tcp # pfSense nat bouncing
-19853 19853/udp # pfSense nat bouncing
-19854 19854/tcp # pfSense nat bouncing
-19854 19854/udp # pfSense nat bouncing
-19855 19855/tcp # pfSense nat bouncing
-19855 19855/udp # pfSense nat bouncing
-19856 19856/tcp # pfSense nat bouncing
-19856 19856/udp # pfSense nat bouncing
-19857 19857/tcp # pfSense nat bouncing
-19857 19857/udp # pfSense nat bouncing
-19858 19858/tcp # pfSense nat bouncing
-19858 19858/udp # pfSense nat bouncing
-19859 19859/tcp # pfSense nat bouncing
-19859 19859/udp # pfSense nat bouncing
-19860 19860/tcp # pfSense nat bouncing
-19860 19860/udp # pfSense nat bouncing
-19861 19861/tcp # pfSense nat bouncing
-19861 19861/udp # pfSense nat bouncing
-19862 19862/tcp # pfSense nat bouncing
-19862 19862/udp # pfSense nat bouncing
-19863 19863/tcp # pfSense nat bouncing
-19863 19863/udp # pfSense nat bouncing
-19864 19864/tcp # pfSense nat bouncing
-19864 19864/udp # pfSense nat bouncing
-19865 19865/tcp # pfSense nat bouncing
-19865 19865/udp # pfSense nat bouncing
-19866 19866/tcp # pfSense nat bouncing
-19866 19866/udp # pfSense nat bouncing
-19867 19867/tcp # pfSense nat bouncing
-19867 19867/udp # pfSense nat bouncing
-19868 19868/tcp # pfSense nat bouncing
-19868 19868/udp # pfSense nat bouncing
-19869 19869/tcp # pfSense nat bouncing
-19869 19869/udp # pfSense nat bouncing
-19870 19870/tcp # pfSense nat bouncing
-19870 19870/udp # pfSense nat bouncing
-19871 19871/tcp # pfSense nat bouncing
-19871 19871/udp # pfSense nat bouncing
-19872 19872/tcp # pfSense nat bouncing
-19872 19872/udp # pfSense nat bouncing
-19873 19873/tcp # pfSense nat bouncing
-19873 19873/udp # pfSense nat bouncing
-19874 19874/tcp # pfSense nat bouncing
-19874 19874/udp # pfSense nat bouncing
-19875 19875/tcp # pfSense nat bouncing
-19875 19875/udp # pfSense nat bouncing
-19876 19876/tcp # pfSense nat bouncing
-19876 19876/udp # pfSense nat bouncing
-19877 19877/tcp # pfSense nat bouncing
-19877 19877/udp # pfSense nat bouncing
-19878 19878/tcp # pfSense nat bouncing
-19878 19878/udp # pfSense nat bouncing
-19879 19879/tcp # pfSense nat bouncing
-19879 19879/udp # pfSense nat bouncing
-19880 19880/tcp # pfSense nat bouncing
-19880 19880/udp # pfSense nat bouncing
-19881 19881/tcp # pfSense nat bouncing
-19881 19881/udp # pfSense nat bouncing
-19882 19882/tcp # pfSense nat bouncing
-19882 19882/udp # pfSense nat bouncing
-19883 19883/tcp # pfSense nat bouncing
-19883 19883/udp # pfSense nat bouncing
-19884 19884/tcp # pfSense nat bouncing
-19884 19884/udp # pfSense nat bouncing
-19885 19885/tcp # pfSense nat bouncing
-19885 19885/udp # pfSense nat bouncing
-19886 19886/tcp # pfSense nat bouncing
-19886 19886/udp # pfSense nat bouncing
-19887 19887/tcp # pfSense nat bouncing
-19887 19887/udp # pfSense nat bouncing
-19888 19888/tcp # pfSense nat bouncing
-19888 19888/udp # pfSense nat bouncing
-19889 19889/tcp # pfSense nat bouncing
-19889 19889/udp # pfSense nat bouncing
-19890 19890/tcp # pfSense nat bouncing
-19890 19890/udp # pfSense nat bouncing
-19891 19891/tcp # pfSense nat bouncing
-19891 19891/udp # pfSense nat bouncing
-19892 19892/tcp # pfSense nat bouncing
-19892 19892/udp # pfSense nat bouncing
-19893 19893/tcp # pfSense nat bouncing
-19893 19893/udp # pfSense nat bouncing
-19894 19894/tcp # pfSense nat bouncing
-19894 19894/udp # pfSense nat bouncing
-19895 19895/tcp # pfSense nat bouncing
-19895 19895/udp # pfSense nat bouncing
-19896 19896/tcp # pfSense nat bouncing
-19896 19896/udp # pfSense nat bouncing
-19897 19897/tcp # pfSense nat bouncing
-19897 19897/udp # pfSense nat bouncing
-19898 19898/tcp # pfSense nat bouncing
-19898 19898/udp # pfSense nat bouncing
-19899 19899/tcp # pfSense nat bouncing
-19899 19899/udp # pfSense nat bouncing
-19900 19900/tcp # pfSense nat bouncing
-19900 19900/udp # pfSense nat bouncing
-19901 19901/tcp # pfSense nat bouncing
-19901 19901/udp # pfSense nat bouncing
-19902 19902/tcp # pfSense nat bouncing
-19902 19902/udp # pfSense nat bouncing
-19903 19903/tcp # pfSense nat bouncing
-19903 19903/udp # pfSense nat bouncing
-19904 19904/tcp # pfSense nat bouncing
-19904 19904/udp # pfSense nat bouncing
-19905 19905/tcp # pfSense nat bouncing
-19905 19905/udp # pfSense nat bouncing
-19906 19906/tcp # pfSense nat bouncing
-19906 19906/udp # pfSense nat bouncing
-19907 19907/tcp # pfSense nat bouncing
-19907 19907/udp # pfSense nat bouncing
-19908 19908/tcp # pfSense nat bouncing
-19908 19908/udp # pfSense nat bouncing
-19909 19909/tcp # pfSense nat bouncing
-19909 19909/udp # pfSense nat bouncing
-19910 19910/tcp # pfSense nat bouncing
-19910 19910/udp # pfSense nat bouncing
-19911 19911/tcp # pfSense nat bouncing
-19911 19911/udp # pfSense nat bouncing
-19912 19912/tcp # pfSense nat bouncing
-19912 19912/udp # pfSense nat bouncing
-19913 19913/tcp # pfSense nat bouncing
-19913 19913/udp # pfSense nat bouncing
-19914 19914/tcp # pfSense nat bouncing
-19914 19914/udp # pfSense nat bouncing
-19915 19915/tcp # pfSense nat bouncing
-19915 19915/udp # pfSense nat bouncing
-19916 19916/tcp # pfSense nat bouncing
-19916 19916/udp # pfSense nat bouncing
-19917 19917/tcp # pfSense nat bouncing
-19917 19917/udp # pfSense nat bouncing
-19918 19918/tcp # pfSense nat bouncing
-19918 19918/udp # pfSense nat bouncing
-19919 19919/tcp # pfSense nat bouncing
-19919 19919/udp # pfSense nat bouncing
-19920 19920/tcp # pfSense nat bouncing
-19920 19920/udp # pfSense nat bouncing
-19921 19921/tcp # pfSense nat bouncing
-19921 19921/udp # pfSense nat bouncing
-19922 19922/tcp # pfSense nat bouncing
-19922 19922/udp # pfSense nat bouncing
-19923 19923/tcp # pfSense nat bouncing
-19923 19923/udp # pfSense nat bouncing
-19924 19924/tcp # pfSense nat bouncing
-19924 19924/udp # pfSense nat bouncing
-19925 19925/tcp # pfSense nat bouncing
-19925 19925/udp # pfSense nat bouncing
-19926 19926/tcp # pfSense nat bouncing
-19926 19926/udp # pfSense nat bouncing
-19927 19927/tcp # pfSense nat bouncing
-19927 19927/udp # pfSense nat bouncing
-19928 19928/tcp # pfSense nat bouncing
-19928 19928/udp # pfSense nat bouncing
-19929 19929/tcp # pfSense nat bouncing
-19929 19929/udp # pfSense nat bouncing
-19930 19930/tcp # pfSense nat bouncing
-19930 19930/udp # pfSense nat bouncing
-19931 19931/tcp # pfSense nat bouncing
-19931 19931/udp # pfSense nat bouncing
-19932 19932/tcp # pfSense nat bouncing
-19932 19932/udp # pfSense nat bouncing
-19933 19933/tcp # pfSense nat bouncing
-19933 19933/udp # pfSense nat bouncing
-19934 19934/tcp # pfSense nat bouncing
-19934 19934/udp # pfSense nat bouncing
-19935 19935/tcp # pfSense nat bouncing
-19935 19935/udp # pfSense nat bouncing
-19936 19936/tcp # pfSense nat bouncing
-19936 19936/udp # pfSense nat bouncing
-19937 19937/tcp # pfSense nat bouncing
-19937 19937/udp # pfSense nat bouncing
-19938 19938/tcp # pfSense nat bouncing
-19938 19938/udp # pfSense nat bouncing
-19939 19939/tcp # pfSense nat bouncing
-19939 19939/udp # pfSense nat bouncing
-19940 19940/tcp # pfSense nat bouncing
-19940 19940/udp # pfSense nat bouncing
-19941 19941/tcp # pfSense nat bouncing
-19941 19941/udp # pfSense nat bouncing
-19942 19942/tcp # pfSense nat bouncing
-19942 19942/udp # pfSense nat bouncing
-19943 19943/tcp # pfSense nat bouncing
-19943 19943/udp # pfSense nat bouncing
-19944 19944/tcp # pfSense nat bouncing
-19944 19944/udp # pfSense nat bouncing
-19945 19945/tcp # pfSense nat bouncing
-19945 19945/udp # pfSense nat bouncing
-19946 19946/tcp # pfSense nat bouncing
-19946 19946/udp # pfSense nat bouncing
-19947 19947/tcp # pfSense nat bouncing
-19947 19947/udp # pfSense nat bouncing
-19948 19948/tcp # pfSense nat bouncing
-19948 19948/udp # pfSense nat bouncing
-19949 19949/tcp # pfSense nat bouncing
-19949 19949/udp # pfSense nat bouncing
-19950 19950/tcp # pfSense nat bouncing
-19950 19950/udp # pfSense nat bouncing
-19951 19951/tcp # pfSense nat bouncing
-19951 19951/udp # pfSense nat bouncing
-19952 19952/tcp # pfSense nat bouncing
-19952 19952/udp # pfSense nat bouncing
-19953 19953/tcp # pfSense nat bouncing
-19953 19953/udp # pfSense nat bouncing
-19954 19954/tcp # pfSense nat bouncing
-19954 19954/udp # pfSense nat bouncing
-19955 19955/tcp # pfSense nat bouncing
-19955 19955/udp # pfSense nat bouncing
-19956 19956/tcp # pfSense nat bouncing
-19956 19956/udp # pfSense nat bouncing
-19957 19957/tcp # pfSense nat bouncing
-19957 19957/udp # pfSense nat bouncing
-19958 19958/tcp # pfSense nat bouncing
-19958 19958/udp # pfSense nat bouncing
-19959 19959/tcp # pfSense nat bouncing
-19959 19959/udp # pfSense nat bouncing
-19960 19960/tcp # pfSense nat bouncing
-19960 19960/udp # pfSense nat bouncing
-19961 19961/tcp # pfSense nat bouncing
-19961 19961/udp # pfSense nat bouncing
-19962 19962/tcp # pfSense nat bouncing
-19962 19962/udp # pfSense nat bouncing
-19963 19963/tcp # pfSense nat bouncing
-19963 19963/udp # pfSense nat bouncing
-19964 19964/tcp # pfSense nat bouncing
-19964 19964/udp # pfSense nat bouncing
-19965 19965/tcp # pfSense nat bouncing
-19965 19965/udp # pfSense nat bouncing
-19966 19966/tcp # pfSense nat bouncing
-19966 19966/udp # pfSense nat bouncing
-19967 19967/tcp # pfSense nat bouncing
-19967 19967/udp # pfSense nat bouncing
-19968 19968/tcp # pfSense nat bouncing
-19968 19968/udp # pfSense nat bouncing
-19969 19969/tcp # pfSense nat bouncing
-19969 19969/udp # pfSense nat bouncing
-19970 19970/tcp # pfSense nat bouncing
-19970 19970/udp # pfSense nat bouncing
-19971 19971/tcp # pfSense nat bouncing
-19971 19971/udp # pfSense nat bouncing
-19972 19972/tcp # pfSense nat bouncing
-19972 19972/udp # pfSense nat bouncing
-19973 19973/tcp # pfSense nat bouncing
-19973 19973/udp # pfSense nat bouncing
-19974 19974/tcp # pfSense nat bouncing
-19974 19974/udp # pfSense nat bouncing
-19975 19975/tcp # pfSense nat bouncing
-19975 19975/udp # pfSense nat bouncing
-19976 19976/tcp # pfSense nat bouncing
-19976 19976/udp # pfSense nat bouncing
-19977 19977/tcp # pfSense nat bouncing
-19977 19977/udp # pfSense nat bouncing
-19978 19978/tcp # pfSense nat bouncing
-19978 19978/udp # pfSense nat bouncing
-19979 19979/tcp # pfSense nat bouncing
-19979 19979/udp # pfSense nat bouncing
-19980 19980/tcp # pfSense nat bouncing
-19980 19980/udp # pfSense nat bouncing
-19981 19981/tcp # pfSense nat bouncing
-19981 19981/udp # pfSense nat bouncing
-19982 19982/tcp # pfSense nat bouncing
-19982 19982/udp # pfSense nat bouncing
-19983 19983/tcp # pfSense nat bouncing
-19983 19983/udp # pfSense nat bouncing
-19984 19984/tcp # pfSense nat bouncing
-19984 19984/udp # pfSense nat bouncing
-19985 19985/tcp # pfSense nat bouncing
-19985 19985/udp # pfSense nat bouncing
-19986 19986/tcp # pfSense nat bouncing
-19986 19986/udp # pfSense nat bouncing
-19987 19987/tcp # pfSense nat bouncing
-19987 19987/udp # pfSense nat bouncing
-19988 19988/tcp # pfSense nat bouncing
-19988 19988/udp # pfSense nat bouncing
-19989 19989/tcp # pfSense nat bouncing
-19989 19989/udp # pfSense nat bouncing
-19990 19990/tcp # pfSense nat bouncing
-19990 19990/udp # pfSense nat bouncing
-19991 19991/tcp # pfSense nat bouncing
-19991 19991/udp # pfSense nat bouncing
-19992 19992/tcp # pfSense nat bouncing
-19992 19992/udp # pfSense nat bouncing
-19993 19993/tcp # pfSense nat bouncing
-19993 19993/udp # pfSense nat bouncing
-19994 19994/tcp # pfSense nat bouncing
-19994 19994/udp # pfSense nat bouncing
-19995 19995/tcp # pfSense nat bouncing
-19995 19995/udp # pfSense nat bouncing
-19996 19996/tcp # pfSense nat bouncing
-19996 19996/udp # pfSense nat bouncing
-19997 19997/tcp # pfSense nat bouncing
-19997 19997/udp # pfSense nat bouncing
-19998 19998/tcp # pfSense nat bouncing
-19998 19998/udp # pfSense nat bouncing
-19999 19999/tcp # pfSense nat bouncing
-19999 19999/udp # pfSense nat bouncing
dbbrowse 47557/tcp #Databeam Corporation
dbbrowse 47557/udp #Databeam Corporation
wnn4 22273/tcp #Wnn4 (Japanese input)
diff --git a/usr/local/www/system_advanced_firewall.php b/usr/local/www/system_advanced_firewall.php
index 7ed4383..497205d 100644
--- a/usr/local/www/system_advanced_firewall.php
+++ b/usr/local/www/system_advanced_firewall.php
@@ -56,7 +56,10 @@ $pconfig['tcpidletimeout'] = $config['filter']['tcpidletimeout'];
$pconfig['optimization'] = $config['filter']['optimization'];
$pconfig['maximumstates'] = $config['system']['maximumstates'];
$pconfig['disablenatreflection'] = $config['system']['disablenatreflection'];
-$pconfig['reflectiontimeout'] = $config['system']['reflectiontimeout'];
+if (!isset($config['system']['enablebinatreflection']))
+ $pconfig['disablebinatreflection'] = "yes";
+else
+ $pconfig['disablebinatreflection'] = "";
$pconfig['bypassstaticroutes'] = isset($config['filter']['bypassstaticroutes']);
$pconfig['disablescrub'] = isset($config['system']['disablescrub']);
$pconfig['tftpinterface'] = $config['system']['tftpinterface'];
@@ -73,9 +76,6 @@ if ($_POST) {
if ($_POST['tcpidletimeout'] && !is_numericint($_POST['tcpidletimeout'])) {
$input_errors[] = gettext("The TCP idle timeout must be an integer.");
}
- if ($_POST['reflectiontimeout'] && !is_numericint($_POST['reflectiontimeout'])) {
- $input_errors[] = gettext("The Reflection timeout must be an integer.");
- }
ob_flush();
flush();
@@ -109,8 +109,11 @@ if ($_POST) {
$config['system']['disablenatreflection'] = $_POST['disablenatreflection'];
else
unset($config['system']['disablenatreflection']);
-
- $config['system']['reflectiontimeout'] = $_POST['reflectiontimeout'];
+
+ if($_POST['disablebinatreflection'] == "yes")
+ unset($config['system']['enablebinatreflection']);
+ else
+ $config['system']['enablebinatreflection'] = "yes";
if($_POST['bypassstaticroutes'] == "yes")
$config['filter']['bypassstaticroutes'] = $_POST['bypassstaticroutes'];
@@ -298,17 +301,17 @@ function update_description(itemnum) {
<td colspan="2" valign="top" class="listtopic"><?=gettext("Network Address Translation");?></td>
</tr>
<tr>
- <td width="22%" valign="top" class="vncell"><?=gettext("Disable NAT Reflection");?></td>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Disable NAT Reflection for port forwards");?></td>
<td width="78%" class="vtable">
<input name="disablenatreflection" type="checkbox" id="disablenatreflection" value="yes" <?php if (isset($config['system']['disablenatreflection'])) echo "checked"; ?> />
- <strong><?=gettext("Disables the automatic creation of NAT redirect rules for access to your public IP addresses from within your internal networks. Note: Reflection is only enabled for port forward entries and is skipped for ranges larger than 500 ports.");?></strong>
+ <strong><?=gettext("Disables the automatic creation of additional NAT redirect rules for access to port forwards on your external IP addresses from within your internal networks. Note: Reflection might not fully work in complex routing scenarios.");?></strong>
</td>
</tr>
<tr>
- <td width="22%" valign="top" class="vncell"><?=gettext("Reflection Timeout");?></td>
+ <td width="22%" valign="top" class="vncell"><?=gettext("Disable NAT Reflection for 1:1 NAT");?></td>
<td width="78%" class="vtable">
- <input name="reflectiontimeout" id="reflectiontimeout" value="<?php echo $config['system']['reflectiontimeout']; ?>" /><br/>
- <strong><?=gettext("Enter value for Reflection timeout in seconds.");?></strong>
+ <input name="disablebinatreflection" type="checkbox" id="disablebinatreflection" value="yes" <?php if (!isset($config['system']['enablebinatreflection'])) echo "checked"; ?> />
+ <strong><?=gettext("Disables the automatic creation of additional NAT 1:1 mappings for access to 1:1 mappings of your external IP addresses from within your internal networks. Note: Reflection might not fully work in complex routing scenarios.");?></strong>
</td>
</tr>
<tr>
OpenPOWER on IntegriCloud