diff options
author | jasoni <jasoni@cvs.openbsd.org> | 2002-05-09 21:58:13 +0000 |
---|---|---|
committer | jasoni <jasoni@cvs.openbsd.org> | 2002-05-09 21:58:13 +0000 |
commit | 321f9cba7df95fec45615a4f5f6f9b995a0edb05 (patch) | |
tree | 7c75c542368976d3eb47e322dc7ce49631c44953 /share | |
parent | 676b7110b9008420e77ca52e8ed54111e3659e23 (diff) |
Add a max-mss option to the scrub rule which will enforce a maximum mss
by lowering it to the given value.
- ok dhartmei@, provos@
Diffstat (limited to 'share')
-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 3d2589c2973..d05e4fb463d 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.43 2002/05/09 19:58:42 dhartmei Exp $ +.\" $OpenBSD: pf.conf.5,v 1.44 2002/05/09 21:58:12 jasoni Exp $ .\" .\" Copyright (c) 2001, Daniel Hartmeier .\" All rights reserved. @@ -55,7 +55,8 @@ rule = action ( "in" | "out" ) [ icmp-type | ipv6-icmp-type ] [ "keep state" ] [ "modulate state" ] [ "fragment" ] [ "no-df" ] [ "min-ttl" number ] - [ "allow-opts" ] [ "label" string ] . + [ "max-mss" number ] [ "allow-opts" ] + [ "label" string ] . action = "pass" | "block" [ return ] | "scrub" . return = "return-rst" | @@ -505,6 +506,8 @@ Clears the bit from a matching ip packet. .Ss min-ttl <number> Enforces a minimum ttl for matching ip packets. +.Ss max-mss <number> +Enforces a maximum mss for matching tcp packets. .Pp Normalization occurs before filtering, scrub rules and pass/block rules are evaluated independantly. |