diff options
author | 2006-05-27 23:42:35 +0000 | |
---|---|---|
committer | 2006-05-27 23:42:35 +0000 | |
commit | 7e84e06a946f6f92bf4c4f8d278807f9509cb36b (patch) | |
tree | 3400b1704148b04a19550c75dbd5ed97a255854a | |
parent | Handle crypt(3) returning NULL. Found by Gustavo C. Pereira. (diff) | |
download | wireguard-openbsd-7e84e06a946f6f92bf4c4f8d278807f9509cb36b.tar.xz wireguard-openbsd-7e84e06a946f6f92bf4c4f8d278807f9509cb36b.zip |
Document net.inet6.ip6.mforwarding
-rw-r--r-- | lib/libc/gen/sysctl.3 | 7 | ||||
-rw-r--r-- | sbin/sysctl/sysctl.8 | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lib/libc/gen/sysctl.3 b/lib/libc/gen/sysctl.3 index bc94a74cf08..1601aca1cb5 100644 --- a/lib/libc/gen/sysctl.3 +++ b/lib/libc/gen/sysctl.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysctl.3,v 1.153 2006/05/26 09:26:07 jmc Exp $ +.\" $OpenBSD: sysctl.3,v 1.154 2006/05/27 23:42:35 claudio Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -1550,6 +1550,7 @@ The currently defined protocols and names are: .It ip6 log_interval integer yes .It ip6 maxfragpackets integer yes .It ip6 maxfrags integer yes +.It ip6 mforwarding integer yes .It ip6 redirect integer yes .It ip6 rr_prune integer yes .It ip6 use_deprecated integer yes @@ -1729,6 +1730,10 @@ 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.mforwarding +If set to 1, then multicast forwarding is enabled for the host. +The default is 0. +.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, diff --git a/sbin/sysctl/sysctl.8 b/sbin/sysctl/sysctl.8 index 767c5b3e07c..182d0689dd8 100644 --- a/sbin/sysctl/sysctl.8 +++ b/sbin/sysctl/sysctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysctl.8,v 1.129 2006/05/17 08:34:42 gwk Exp $ +.\" $OpenBSD: sysctl.8,v 1.130 2006/05/27 23:43:03 claudio Exp $ .\" $NetBSD: sysctl.8,v 1.4 1995/09/30 07:12:49 thorpej Exp $ .\" .\" Copyright (c) 1993 @@ -302,6 +302,7 @@ not all of the variables are relevant to all architectures. .It net.inet6.ip6.rr_prune integer yes .It net.inet6.ip6.v6only integer no .It net.inet6.ip6.maxfrags integer yes +.It net.inet6.ip6.mforwarding integer yes .It net.inet6.icmp6.rediraccept integer yes .It net.inet6.icmp6.redirtimeout integer yes .It net.inet6.icmp6.nd6_prune integer yes |