diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-09-12 21:13:30 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-09-12 21:13:30 +0000 |
commit | 5963133d7db542125684c6e32249f0d09c0f348c (patch) | |
tree | 49fb4135a3f8041f3a3795a173ea3752dbf590cf /etc | |
parent | 2ef857b2bcca09e4ab5d13fb55e22e60643955a7 (diff) | |
download | pfsense-5963133d7db542125684c6e32249f0d09c0f348c.zip pfsense-5963133d7db542125684c6e32249f0d09c0f348c.tar.gz |
Woops, only change the first occurance of 19999
Diffstat (limited to 'etc')
-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 f03bff9..4935e71 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -745,7 +745,7 @@ function filter_nat_rules_generate() { if(!isset($config['system']['disablenatreflection'])) { $inetd_fd = fopen("/var/etc/inetd.conf","w"); /* start redirects on port 19000 of localhost */ - $starting_localhost_port = 18999; + $starting_localhost_port = 19000; } foreach ($config['nat']['rule'] as $rule) { @@ -1867,7 +1867,7 @@ EOD; if(!isset($config['system']['disablenatreflection'])) { //$fd = fopen("/var/etc/inetd.conf","w"); /* start redirects on port 19000 of localhost */ - $starting_localhost_port = 19000; + $starting_localhost_port = 18999; } foreach ($config['nat']['rule'] as $rule) { |