summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorPhilipp Buehler <pb@cvs.openbsd.org>2002-07-30 11:55:32 +0000
committerPhilipp Buehler <pb@cvs.openbsd.org>2002-07-30 11:55:32 +0000
commit34991720682ea783b2e4d1e0798695118b46be4f (patch)
tree5fcf44a508cf5b437f3cc1f09f995d3bc138ed7b /share
parente61932656cc4b87507518b79c2e1dee643381531 (diff)
BNF catchup to reality:
- set loginterface none - add "self" to hosts ok henning@
Diffstat (limited to 'share')
-rw-r--r--share/man/man5/pf.conf.513
1 files changed, 7 insertions, 6 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5
index b05124d8fc0..dcb9a9c66e9 100644
--- a/share/man/man5/pf.conf.5
+++ b/share/man/man5/pf.conf.5
@@ -1,4 +1,4 @@
-.\" $OpenBSD: pf.conf.5,v 1.71 2002/07/30 11:21:46 pb Exp $
+.\" $OpenBSD: pf.conf.5,v 1.72 2002/07/30 11:55:31 pb Exp $
.\"
.\" Copyright (c) 2002, Daniel Hartmeier
.\" All rights reserved.
@@ -964,7 +964,8 @@ option = set ( [ "timeout" ( timeout | "{" timeout-list "}" ) ] |
"high-latency" | "satellite" |
"aggressive" | "conservative" ] ]
[ "limit" ( limit | "{" limit-list "}" ) ] |
- [ "loginterface" interface-name ] ) .
+ [ "loginterface" ( interface-name | "none" ) ] ) .
+
rule = action ( "in" | "out" )
[ "log" | "log-all" ] [ "quick" ]
[ "on" ( interface-name | "{" interface-list "}" ) ]
@@ -996,10 +997,10 @@ af = "inet" | "inet6" .
proto-list = ( proto-name | proto-number ) [ "," proto-list ] .
hosts = "all" |
- "from" ( "any" | "no-route" | host | "{" host-list "}" )
- [ port ]
- "to" ( "any" | "no-route" | host | "{" host-list "}" )
- [ port ] .
+ "from" ( "any" | "no-route" | "self" | host |
+ "{" host-list "}" ) [ port ]
+ "to" ( "any" | "no-route" | "self" | host |
+ "{" host-list "}" ) [ port ] .
host = [ "!" ] address [ "/" mask-bits ] .
address = ( interface-name | "(" interface-name ")" | host-name |