diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-12-05 18:43:13 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-12-05 18:43:13 +0000 |
commit | 04f25fc2014eff7d14a08f79724dfd7425880ca8 (patch) | |
tree | 1439ed790debac35f5d95a4723d1201a221db410 /share/man | |
parent | d68eb0c43c9011470ea5a0571376c43201aa8951 (diff) |
It does not make sense to insert a specific route for 224/4 when the
default one is good enough.
So merge rc.conf(8)'s 'multicast_router' and 'multicast_host' into a
single 'multicast'. If set to YES the reject route for 224/4 is not
inserted by netstart(8).
Manual bits from jmc@
ok henning@, ajacoutot@
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man8/netstart.8 | 54 |
1 files changed, 10 insertions, 44 deletions
diff --git a/share/man/man8/netstart.8 b/share/man/man8/netstart.8 index 0582d0ba7f8..ae032c83294 100644 --- a/share/man/man8/netstart.8 +++ b/share/man/man8/netstart.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: netstart.8,v 1.19 2011/11/13 12:43:49 ajacoutot Exp $ +.\" $OpenBSD: netstart.8,v 1.20 2015/12/05 18:43:12 mpi Exp $ .\" .\" Copyright (c) 2002, Miodrag Vallat. .\" All rights reserved. @@ -25,7 +25,7 @@ .\" .\" @(#)rc.8 8.2 (Berkeley) 12/11/93 .\" -.Dd $Mdocdate: November 13 2011 $ +.Dd $Mdocdate: December 5 2015 $ .Dt NETSTART 8 .Os .Sh NAME @@ -102,48 +102,14 @@ and/or .Va net.inet6.ip6.mforwarding .Xr sysctl 8 variables should be set to 1. -Routing to the 224.0.0.0/4 net is set up using values from -.Xr rc.conf 8 -according to these rules: -.Bl -bullet -.It -The default. -If the multicast settings are as follows -then multicast routing will not be enabled. -.Bd -literal -offset indent -multicast_host=NO -multicast_router=NO -.Ed -.It -If the multicast settings are as follows -then multicast routing will be enabled, -but no multicast route will be set up. -It is expected that a routing daemon, such as -.Xr mrouted 8 , -will be started as well. -.Bd -literal -offset indent -multicast_host=NO -multicast_router=YES -.Ed -.It -If the multicast settings are as follows -then multicast routing will be enabled, -using the default interface, -or the interface name specified by -.Va multicast_host . -.Bd -literal -offset indent -multicast_host=YES -multicast_router=NO -.Ed -or: -.Bd -literal -offset indent -compact -multicast_host=foo0 # interface name -multicast_router=NO -.Ed -.It -Other cases are configuration errors and will cause multicast routing not to be -enabled. -.El +Multicast routing is only enabled if +.Va multicast +is set to +.Qq YES +in +.Xr rc.conf.local 8 . +Other cases are configuration errors +and will cause multicast routing not to be enabled. .Sh SEE ALSO .Xr multicast 4 , .Xr defaultdomain 5 , |