diff options
author | logan <logan@cvs.openbsd.org> | 2014-04-19 12:42:51 +0000 |
---|---|---|
committer | logan <logan@cvs.openbsd.org> | 2014-04-19 12:42:51 +0000 |
commit | 8ef50b7c4e6a41a5e6a1ff82d8124287d11117f4 (patch) | |
tree | 79396e256bcf11ebaf665a4278095d4f4c5381a2 /lib/libc | |
parent | 5155b0dac48b04e3e1169aefba252aada31e36fe (diff) |
Add missing man page descriptions for the following IPv6 sysctls:
-maxdynroutes
-maxifprefixes
-maxifdefrouters
-neighborgcthresh
OK from sthen@, claudio@ and henning@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/sysctl.3 | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/lib/libc/gen/sysctl.3 b/lib/libc/gen/sysctl.3 index 9d6bfc39f72..cdf88e414a5 100644 --- a/lib/libc/gen/sysctl.3 +++ b/lib/libc/gen/sysctl.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysctl.3,v 1.228 2014/01/21 03:15:45 schwarze Exp $ +.\" $OpenBSD: sysctl.3,v 1.229 2014/04/19 12:42:50 logan Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -27,7 +27,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: January 21 2014 $ +.Dd $Mdocdate: April 19 2014 $ .Dt SYSCTL 3 .Os .Sh NAME @@ -1676,11 +1676,15 @@ The currently defined protocols and names are: .It ip6 Ta hdrnestlimit Ta integer Ta yes .It ip6 Ta hlim Ta integer Ta yes .It ip6 Ta log_interval Ta integer Ta yes +.It ip6 Ta maxdynroutes Ta integer Ta yes .It ip6 Ta maxfragpackets Ta integer Ta yes .It ip6 Ta maxfrags Ta integer Ta yes +.It ip6 Ta maxifprefixes Ta integer Ta yes +.It ip6 Ta maxifdefrouters Ta integer Ta yes .It ip6 Ta mforwarding Ta integer Ta yes .It ip6 Ta multicast_mtudisc Ta integer Ta yes .It ip6 Ta multipath Ta integer Ta yes +.It ip6 Ta neighborgcthresh Ta integer Ta yes .It ip6 Ta redirect Ta integer Ta yes .It ip6 Ta rr_prune Ta integer Ta yes .It ip6 Ta use_deprecated Ta integer Ta yes @@ -1834,6 +1838,11 @@ IPv6 packet forwarding engine. The value indicates the number of seconds of interval which must elapse between log output. .Pp +.It Li ip6.maxdynroutes +Maximum number of routes created by redirect. +Set to negative to disable. +The default value is 4096. +.Pp .It Li ip6.maxfragpackets The maximum number of fragmented packets the node will accept. 0 means that the node will not accept any fragmented packets. @@ -1846,6 +1855,17 @@ The maximum number of fragments the node will accept. \-1 means that the node will accept as many fragments as it receives. The flag is provided basically for avoiding possible DoS attacks. .Pp +.It Li ip6.maxifprefixes +Maximum number of prefixes created by route advertisements per interface. +Set to negative to disable. +The default value is 16. +.Pp +.It Li ip6.maxifdefrouters 16 +Maximum number of default routers created by route advertisements per +interface. +Set to negative to disable. +The default value is 16. +.Pp .It Li ip6.mforwarding If set to 1, then multicast forwarding is enabled for the host. The default is 0. @@ -1862,6 +1882,11 @@ This variable enables multipath routing for IPv6 addresses. If set to 0, only the first route selected will be used for a given destination regardless of how many routes exist in the routing table. .Pp +.It Li ip6.neighborgcthresh +Maximum number of entries in neighbor cache. +Set to negative to disable. +The default value is 2048. +.Pp .It Li ip6.redirect Returns 1 when ICMPv6 redirects may be sent by the node. This option is ignored unless the node is routing IP packets, |