diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-10-05 21:17:58 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2002-10-05 21:17:58 +0000 |
commit | 45f925e105ee57b440d2409d797e1061127b971f (patch) | |
tree | 5f6381f877e3745f94ad9955930ee142ba632826 /share/man/man5 | |
parent | 52f7c465b7eed745c782abf1921e5f6ea6d8e9aa (diff) |
Allow filtering based on IP header's tos field.
Diffstat (limited to 'share/man/man5')
-rw-r--r-- | share/man/man5/pf.conf.5 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index 14127a20db4..38b2809159f 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.90 2002/10/04 10:15:37 henning Exp $ +.\" $OpenBSD: pf.conf.5,v 1.91 2002/10/05 21:17:57 dhartmei Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" All rights reserved. @@ -1006,7 +1006,7 @@ pf_rule = action ( "in" | "out" ) [ "on" ifspec ] [ route ] [ af ] [ protospec ] hosts [ user ] [ group ] [ flags ] - [ icmp-type | ipv6-icmp-type ] + [ icmp-type | ipv6-icmp-type ] [ tos ] [ ( "keep" | "modulate" ) "state" [ "(" state-opts ")" ] ] [ "fragment" ] [ "no-df" ] [ "min-ttl" number ] [ "max-mss" number ] [ fragmentation ] [ "allow-opts" ] @@ -1079,6 +1079,9 @@ icmp-type-code = ( icmp-type-name | icmp-type-number ) [ "code" ( icmp-code-name | icmp-code-number ) ] . icmp-list = icmp-type-code [ [ "," ] icmp-list ] . +tos = "tos" ( "lowdelay" | "throughput" | "reliability" | + [ "0x" ] number ) . + state-opts = state-opt [ [ "," ] state-opts ] . state-opt = ( "max" seconds ) | ( timeout seconds ) . |