diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-08-05 13:08:31 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-08-05 13:08:31 -0400 |
commit | 4a148dc1c4c9766b462bf245931419e7b41befc7 (patch) | |
tree | c6150385de2de410ac98c87d9696e474babfb5f2 /etc/inc | |
parent | 1151cfda5cd621a98eedf783e47510146028e50b (diff) | |
download | pfsense-4a148dc1c4c9766b462bf245931419e7b41befc7.zip pfsense-4a148dc1c4c9766b462bf245931419e7b41befc7.tar.gz |
Revert "Add self to the automatic nat rules generation so it easies balancing the host traffic itself"
This reverts commit 7b47b17c804aa67f27d3c7fb5a166449fe906f2e.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/filter.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 1edde8b..063efd6 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -1152,8 +1152,8 @@ function filter_nat_rules_generate() { } else { /* standard outbound rules (one for each interface) */ update_filter_reload_status("Creating outbound NAT rules"); - $tonathosts = "self "; - $numberofnathosts = 1; + $tonathosts = ""; + $numberofnathosts = 0; if(is_array($config['staticroutes']['route'])) { foreach ($config['staticroutes']['route'] as $route) { |