diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2018-07-10 19:27:12 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2018-07-10 19:27:12 +0000 |
commit | 4a393b14df8b59bf44eccae44652525166362274 (patch) | |
tree | 504803147a98e3d76c17b645fdf660f828c66a5c /share/man/man5 | |
parent | 4262c5960720ad5e974b5d3ab2e18cdf7cf4ae26 (diff) |
where we were showing "set limit states 10000" make that 100k as well,
and adjust adaptive.start/end as well (just like in the code)
Diffstat (limited to 'share/man/man5')
-rw-r--r-- | share/man/man5/pf.conf.5 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index 6b1a5869939..710721cec97 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.575 2018/07/10 09:31:07 henning Exp $ +.\" $OpenBSD: pf.conf.5,v 1.576 2018/07/10 19:27:11 henning Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" Copyright (c) 2003 - 2013 Henning Brauer <henning@openbsd.org> @@ -1485,8 +1485,8 @@ For example: .Bd -literal -offset indent set timeout tcp.first 120 set timeout tcp.established 86400 -set timeout { adaptive.start 6000, adaptive.end 12000 } -set limit states 10000 +set timeout { adaptive.start 60000, adaptive.end 120000 } +set limit states 100000 .Ed .Pp With 9000 state table entries, the timeout values are scaled to 50% |