diff options
author | 2018-07-10 19:27:11 +0000 | |
---|---|---|
committer | 2018-07-10 19:27:11 +0000 | |
commit | a47b29f6e682fd55ae06c985b506c9a8b01e1031 (patch) | |
tree | 8f8354ba91ad6e1bb2ab3852e247134e84021d79 /share/man/man5 | |
parent | Fix a few, but not all, clang warnings: Use "%s" to print modifiable (diff) | |
download | wireguard-openbsd-a47b29f6e682fd55ae06c985b506c9a8b01e1031.tar.xz wireguard-openbsd-a47b29f6e682fd55ae06c985b506c9a8b01e1031.zip |
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% |