diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-03-28 21:54:08 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-03-28 21:54:08 +0000 |
commit | 768e8a5a3b411b3b551cb85b4a9e981faa91216e (patch) | |
tree | 26a1aac8a26fa54fa234d04d68b05abb465dc867 /etc | |
parent | 0b739f1b5d570f4fcb214b9b8e80d47cbe34d1e6 (diff) | |
download | pfsense-768e8a5a3b411b3b551cb85b4a9e981faa91216e.zip pfsense-768e8a5a3b411b3b551cb85b4a9e981faa91216e.tar.gz |
Temporarily stop redirecting pptp server to 127.0.0.1 until we can figure out the issue.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/filter.inc | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 0b5b746..6972744 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -912,8 +912,8 @@ function filter_nat_rules_generate() { $natrules .= <<<EOD # PPTP -rdr on $wanif proto gre from any to any -> $pptpdtarget -rdr on $wanif proto tcp from any to any port 1723 -> $pptpdtarget +#rdr on $wanif proto gre from any to any -> $pptpdtarget +#rdr on $wanif proto tcp from any to any port 1723 -> $pptpdtarget EOD; } @@ -1229,8 +1229,13 @@ EOD; # PPTPd rules anchor "pptp" -pass quick proto gre from any to $pptpdtarget keep state label "allow gre pptpd" -pass quick proto tcp from any to $pptpdtarget port = 1723 keep state label "allow pptpd $pptpdtarget" +#pass quick proto gre from any to $pptpdtarget keep state label "allow gre pptpd" +#pass quick proto tcp from any to $pptpdtarget port = 1723 keep state label "allow pptpd $pptpdtarget" +# XXX: fix me! +pass quick proto gre from any to any keep state label "allow gre pptpd" +pass quick proto tcp from any to any port = 1723 keep state label "allow pptpd $pptpdtarget" + + EOD; } |