diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-08-28 22:43:16 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-08-28 22:43:16 +0000 |
commit | ed2fba4db651806f49d0c5bb7c42955ff8d014bb (patch) | |
tree | 32eac69d5cd980b0c32f871740082912c8222524 /etc/inc | |
parent | 0bd7dfeb3ff697336891e8528a0577af304c14df (diff) | |
download | pfsense-ed2fba4db651806f49d0c5bb7c42955ff8d014bb.zip pfsense-ed2fba4db651806f49d0c5bb7c42955ff8d014bb.tar.gz |
Do not rdr tftp to tftp-proxy for local vpns for both tcp and udp. This
fixes the long standing bug of my voip phones being broken.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/filter.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 8e627de..bd30943 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -874,7 +874,7 @@ function filter_nat_rules_generate() they are most likely on a bridged interface */ if($int_ip and $vpns_list) { $natrules .= "no rdr on $realif proto tcp from any to <vpns> port 21\n"; - $natrules .= "no rdr on $realif proto udp from any to <vpns> port tftp\n"; + $natrules .= "no rdr on $realif proto {tcp,udp} from any to <vpns> port tftp\n"; if($onetoone_list) { $natrules .= "no rdr on $realif proto tcp from <onetoonelist> to any port 21\n"; $natrules .= "no rdr on $realif proto udp from <onetoonelist> to any port tftp\n"; |