diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2009-09-01 13:51:20 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2009-09-01 13:51:20 +0000 |
commit | 5778be3f60b7c50632ddaf5937ebb1822af23a27 (patch) | |
tree | 0337bc223cdc807b39921438d2a886e5fd28fd8e | |
parent | 97a009f0845e9714085d93131354aa564bbe8ab0 (diff) |
todd reminded me we need to adjust this too
-rw-r--r-- | etc/pf.conf | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/etc/pf.conf b/etc/pf.conf index ac7df348c5d..d158b236745 100644 --- a/etc/pf.conf +++ b/etc/pf.conf @@ -1,4 +1,4 @@ -# $OpenBSD: pf.conf,v 1.44 2009/06/10 15:29:34 sobrado Exp $ +# $OpenBSD: pf.conf,v 1.45 2009/09/01 13:51:19 henning Exp $ # # See pf.conf(5) for syntax and examples; this sample ruleset uses # require-order to permit mixing of NAT/RDR and filter rules. @@ -7,24 +7,13 @@ set skip on lo -# NAT/filter rules and anchors for ftp-proxy(8) -#nat-anchor "ftp-proxy/*" -#rdr-anchor "ftp-proxy/*" -#rdr pass on ! egress proto tcp to port ftp -> 127.0.0.1 port 8021 +# filter rules and anchor for ftp-proxy(8) #anchor "ftp-proxy/*" -#pass out proto tcp from $proxy to any port ftp +#pass in quick proto tcp to port ftp rdr-to 127.0.0.1 port 8021 -# NAT/filter rules and anchors for relayd(8) -#rdr-anchor "relayd/*" +# anchor for relayd(8) #anchor "relayd/*" -# NAT rules and anchors for spamd(8) -#table <spamd-white> persist -#table <nospamd> persist file "/etc/mail/nospamd" -#no rdr on egress proto tcp from <nospamd> to any port smtp -#no rdr on egress proto tcp from <spamd-white> to any port smtp -#rdr pass on egress proto tcp from any to any port smtp -> 127.0.0.1 port spamd - pass # to establish keep-state #block in quick from urpf-failed to any # use with care |