diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2009-04-07 13:52:30 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2009-04-07 13:52:30 +0000 |
commit | f8354bc65dd07aa49ae2f37a946696e83a1d82ef (patch) | |
tree | 6c75abc0d7bd241bd88480da3929e3aa2018e59d | |
parent | f8ad4f55b7449957dbe8a09c8289c91b14a34dee (diff) |
bnf-tweaks
-rw-r--r-- | share/man/man5/pf.conf.5 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index 610935ed695..b77184e8161 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.415 2009/04/07 13:48:38 henning Exp $ +.\" $OpenBSD: pf.conf.5,v 1.416 2009/04/07 13:52:29 henning Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" All rights reserved. @@ -2820,12 +2820,12 @@ option = "set" ( [ "timeout" ( timeout | "{" timeout-list "}" ) ] | pf-rule = action [ ( "in" | "out" ) ] [ "log" [ "(" logopts ")"] ] [ "quick" ] [ "on" ifspec ] [ "fastroute" | route ] [ af ] [ protospec ] - hosts [ filteropt-list ] + hosts [ filteropts ] -logopts = logopt [ "," logopts ] +logopts = logopt [ [ "," ] logopts ] logopt = "all" | "user" | "to" interface-name -filteropt-list = filteropt-list filteropt | filteropt +filteropts = filteropt [ [ "," ] filteropts ] filteropt = user | group | flags | icmp-type | icmp6-type | "tos" tos | ( "no" | "keep" | "modulate" | "synproxy" ) "state" [ "(" state-opts ")" ] | "scrub" "(" scrubopts ")" | @@ -2834,7 +2834,7 @@ filteropt = user | group | flags | icmp-type | icmp6-type | "tos" tos | "queue" ( string | "(" string [ [ "," ] string ] ")" ) | "rtable" number | "probability" number"%" -scrubopts = scrubopt [ "," scrubopts ] +scrubopts = scrubopt [ [ "," ] scrubopts ] scrubopt = "no-df" | "min-ttl" number | "max-mss" number | "set-tos" tos | "reassemble tcp" | "random-id" @@ -2860,11 +2860,11 @@ rdr-rule = [ "no" ] "rdr" [ "pass" [ "log" [ "(" logopts ")" ] ] ] antispoof-rule = "antispoof" [ "log" ] [ "quick" ] "for" ifspec [ af ] [ "label" string ] -table-rule = "table" "\*(Lt" string "\*(Gt" [ tableopts-list ] -tableopts-list = tableopts-list tableopts | tableopts -tableopts = "persist" | "const" | "counters" | "file" string | - "{" [ tableaddr-list ] "}" -tableaddr-list = tableaddr-list [ "," ] tableaddr-spec | tableaddr-spec +table-rule = "table" "\*(Lt" string "\*(Gt" [ tableopts ] +tableopts = tableopt [ tableopts ] +tableopt = "persist" | "const" | "counters" | "file" string | + "{" [ tableaddrs ] "}" +tableaddrs = tableaddr-spec [ [ "," ] tableaddrs ] tableaddr-spec = [ "!" ] tableaddr [ "/" mask-bits ] tableaddr = hostname | ifspec | "self" | ipv4-dotted-quad | ipv6-coloned-hex |