diff options
Diffstat (limited to 'usr.sbin/mrouted/mrouted.8')
-rw-r--r-- | usr.sbin/mrouted/mrouted.8 | 359 |
1 files changed, 98 insertions, 261 deletions
diff --git a/usr.sbin/mrouted/mrouted.8 b/usr.sbin/mrouted/mrouted.8 index 823ad87f1976..c30cd3b34a3d 100644 --- a/usr.sbin/mrouted/mrouted.8 +++ b/usr.sbin/mrouted/mrouted.8 @@ -1,5 +1,5 @@ .\"COPYRIGHT 1989 by The Board of Trustees of Leland Stanford Junior University. -.\"$Id: mrouted.8,v 1.11 1998/08/31 16:41:08 wosch Exp $ +.\"$Id: mrouted.8,v 1.10 1997/09/30 06:15:10 charnier Exp $ .Dd May 8, 1995 .Dt MROUTED 8 .UC 5 @@ -34,17 +34,17 @@ routers that do not support IP multicasting, .Nm includes support for "tunnels", which are virtual point-to-point links between pairs of -multicast routers +.Nm mrouted Ns s located anywhere in an internet. IP multicast packets are encapsulated for transmission through tunnels, so that they look like normal unicast datagrams to intervening routers and subnets. The encapsulation is added on entry to a tunnel, and stripped off on exit from a tunnel. -The packets are encapsulated using the IP-in-IP protocol +By default, the packets are encapsulated using the IP-in-IP protocol (IP protocol number 4). Older versions of .Nm -tunneled using IP source routing, which puts a heavy load on some +tunnel using IP source routing, which puts a heavy load on some types of routers. This version does not support IP source route tunnelling. .Pp @@ -81,42 +81,25 @@ option is given, or if the debug level is specified as 0, .Nm detaches from the invoking terminal. Otherwise, it remains attached to the invoking terminal and responsive to signals from that terminal. -Regardless of the debug level, +If +.Fl d +is given with no argument, the debug level defaults to 2. Regardless of the +debug level, .Nm always writes warning and error messages to the system -log demon. The -.Fl debug-level -argument is a comma-seperated list of any of the following: +log demon. Non-zero debug levels have the following effects: .Bl -tag -width indent -.It "packet" -Display the type, source and destination of all packets sent or received. -.It "pruning" -Display more information about prunes sent or received. -.It "routing" -Display more information about routing update packets sent or received. -.It "route_detail" -Display routing updates in excruciating detail. This is generally way too -much information. -.It "neighbors" -Display information about neighbor discovery. -.It "cache" -Display insertions, deletions and refreshes of entries in -the kernel forwarding cache. -.It "timeout" -Debug timeouts and periodic processes. -.It "interface" -Display information about interfaces and their configuration. -.It "membership" -Display information about group memberships on physical interfaces. -.It "traceroute" -Display information about multicast traceroute requests -passing through this router. -.It "igmp" -Display IGMP operation including group membership and querier election. -.It "icmp" -Monitor ICMP handling. -.It "rsrr" -Monitor RSRR operation. +.It "level 1" +all syslog'ed messages are also printed to stderr. +.It "level 2" +all level 1 messages plus notifications of "significant" +events are printed to stderr. +.It "level 3" +all level 2 messages plus notifications of all packet +arrivals and departures are printed to stderr. +.El +.It Fl p +Disable pruning. .El .Pp Upon startup, @@ -127,246 +110,106 @@ writes its pid to the file .Nm Mrouted automatically configures itself to forward on all multicast-capable interfaces, i.e., interfaces that have the IFF_MULTICAST flag set (excluding -the loopback "interface"), and it finds other DVMRP routers directly reachable +the loopback "interface"), and it finds other +.Nm mrouted Ns s +directly reachable via those interfaces. To override the default configuration, or to add -tunnel links to other multicast routers, +tunnel links to other +.Nm mrouted Ns s, configuration commands may be placed in .Pa /etc/mrouted.conf (or an alternative file, specified by the .Fl c option). +There are four types of configuration commands: +.nf + + phyint <local-addr> [disable] [metric <m>] [advert_metric <m>] + [threshold <t>] [rate_limit <b>] + [boundary (<boundary-name>|<scoped-addr>/<mask-len>)] + [altnet <network>/<mask-len>] + + tunnel <local-addr> <remote-addr> [metric <m>] [advert_metric <m>] + [threshold <t>] [rate_limit <b>] + [boundary (<boundary-name>|<scoped-addr>/<mask-len>)] + + cache_lifetime <ct> + + name <boundary-name> <scoped-addr>/<mask-len> + +.fi .Pp The file format is free-form; whitespace (including newlines) is not significant. -The file begins with commands that apply to -.IR mrouted 's -overall operation or set defaults. -.Bl -tag -width indent -.It cache_lifetime Ar secs -Specifies, in seconds, the lifetime of a multicast forwarding cache -entry in the kernel. Multicast forwarding cache entries in the kernel -are checked every -.Ar secs -seconds, and are refreshed if the source is still -active or deleted if not. Care should be taken when setting this value, -as a low value can keep the kernel cache small at the cost of "thrashing" -the cache for periodic senders, but high values can cause the kernel -cache to grow unacceptably large. The default is 300 seconds (5 minutes). -.It prune_lifetime Ar secs -Sepcifies, in seconds, the average lifetime of prunes that are sent towards -parents. The actual lifetimes will be randomized in the range -[.5\fIsecs\fP,1.5\fIsecs\fP]. The default is 7200 (2 hours). Smaller values -cause less state to be kept both at this router and the parent, at the -cost of more frequent broadcasts. However, some routers (e.g. mrouted <3.3 -and all currently known versions of cisco's IOS) do not use the -DVMRP generation ID to determine that a neighbor has rebooted. Prunes -sent towards these neighbors should be kept short, in order to shorten -the time to recover from a reboot. For use in this situation, the -prune_lifetime keyword may be specified on an interface as described -below. -.It noflood -.Nm Mrouted -uses a DVMRP optimization to prevent having to keep individual routing tables -for each neighbor; part of this optimization is that -.Nm -assumes that it is the forwarder for each of its attached subnets on -startup. This can cause duplicates for a short period (approximately -one full route report interval), since both the router that just -started up and the proper forwarder will be forwarding traffic. This -behavior can be turned off with the noflood keyword; -.Nm -will not assume that it is the forwarder on startup. -Turning on noflood can cause black holes on restart, which will generally -last approximately one full route report interval. -The noflood keyword can also be specified on individual interfaces. -.It rexmit_prunes Ar [on|off] -.Nm Mrouted 's -default is to retransmit prunes on all point-to-point interfaces -(including tunnels) but no multi-access interfaces. This option -may be used to make the default on (or off) for all interfaces. -The rexmit_prunes keyword can also be specified on individual interfaces. -.It name Ar "boundary-name scoped-addr/mask-len" -Associates -.Ar boundary-name -with the boundary described by -.Ar scoped-addr/mask-len , -to help make interface configurations -more readable and reduce repetition in the configuration file. -.El +The +.Em boundary +and +.Em altnet +options may be specified as many times as necessary. .Pp -The second section of the configuration file, which may optionally -be empty, describes options that apply to physical interfaces. -.Bl -tag -width indent -.It phyint Ar "local-addr|ifname" -The phyint command does nothing by itself; it is simply a place holder -which interface-specific commands may follow. An interface address or -name may be specified. -.It disable -Disables multicast forwarding on this interface. By default, -.Nm -discovers all locally attached multicast capable interfaces and forwards -on all of them. -.It netmask Ar netmask -If the kernel's netmask does not accurately reflect -the subnet (e.g. you're using proxy-ARP in lieu of IP subnetting), use the -netmask command to describe the real netmask. -.It altnet Ar network/mask-len +The phyint command can be used to disable multicast routing on the physical +interface identified by local IP address <local-addr>, or to associate a +non-default metric or threshold with the specified physical interface. +The local IP address <local-addr> may be replaced by the +interface name (e.g le0). If a phyint is attached to multiple IP subnets, describe each additional subnet -with the altnet keyword. This command may be specified multiple times -to describe multiple subnets. -.It igmpv1 -If there are any IGMPv1 routers on the phyint, use the \fBigmpv1\fP -keyword to force -.Nm -into IGMPv1 mode. All routers on the phyint -must use the same version of IGMP. -.It force_leaf -Force -.Nm -to ignore other routers on this interface. -mrouted will never send or accept neighbor probes or -route reports on this interface. -.El +with the altnet keyword. +Phyint commands must precede tunnel commands. .Pp -In addition, the common vif commands described later may all be used on -a phyint. +The tunnel command can be used to establish a tunnel link between local +IP address <local-addr> and remote IP address <remote-addr>, and to associate +a non-default metric or threshold with that tunnel. +The local IP address <local-addr> may be replaced by the +interface name (e.g. le0). The remote IP address <remote-addr> may +be replaced by a host name, if and only if the host name has a single +IP address associated with it. +The tunnel must be set +up in the +.Pa mrouted.conf +files of both routers before it can be used. .Pp -The third section of the configuration file, also optional, describes -the configuration of any DVMRP tunnels this router might have. -.Bl -tag -width indent -.It tunnel Ar "local-addr|ifname" Ar "remote-addr|remote-hostname" -This command establishes a DVMRP tunnel between this host (on the interface -described by -.Ar local-addr -or -.Ar ifname ) -and a remote host (identified by -.Ar remote-addr -or -.Ar remote-hostname ). -A remote hostname may only be used if -it maps to a single IP address. -A tunnel must be configured on both routers before it can be used. - -Be careful that the unicast route to the remote address goes out the -interface specified by the -.Ar "local-addr|ifname" -argument. Some UNIX -kernels rewrite the source address of -.Nm mrouted 's -packets on their way out to contain the address of the transmission -interface. This is best assured via a static host route. -.El +The cache_lifetime is a value that determines the amount of time that a +cached multicast route stays in kernel before timing out. The value of this +entry should lie between 300 (5 min) and 86400 (1 day). It defaults to 300. .Pp -The common vif commands described below -may all be used on tunnels or phyints. -.Bl -tag -width indent -.It metric Ar m -The metric is the "cost" associated with receiving a datagram on the given +You may assign names to boundaries to make configuration easier with +the name keyword. The boundary option on phyint or tunnel commands +can accept either a name or a boundary. +.Pp +The metric is the "cost" associated with sending a datagram on the given interface or tunnel; it may be used to influence the choice of routes. The metric defaults to 1. Metrics should be kept as small as possible, -because DVMRP cannot route along paths with a sum of metrics greater +because +.Nm +cannot route along paths with a sum of metrics greater than 31. -.It advert_metric Ar m -The advert_metric is the "cost" associated with sending a datagram +.Pp +The advert_metric is the "cost" associated with receiving a datagram on the given interface or tunnel; it may be used to influence the choice of routes. The advert_metric defaults to 0. Note that the effective metric of a link is one end's metric plus the other end's advert_metric. -.It threshold Ar t +.Pp The threshold is the minimum IP time-to-live required for a multicast datagram to be forwarded to the given interface or tunnel. It is used to control the scope of multicast datagrams. (The TTL of forwarded packets is only compared to the threshold, it is not decremented by the threshold. Every multicast -router decrements the TTL by exactly 1.) The default threshold is 1. - -In general, all multicast routers +router decrements the TTL by 1.) The default threshold is 1. +.Pp +In general, all +.Nm mrouted Ns s connected to a particular subnet or tunnel should use the same metric and threshold for that subnet or tunnel. -.It rate_limit Ar r +.Pp The rate_limit option allows the network administrator to specify a certain bandwidth in Kbits/second which would be allocated to multicast -traffic. It defaults 0 (unlimited). -.It boundary Ar "boundary-name|scoped-addr/mask-len" +traffic. It defaults to 500Kbps on tunnels, and 0 (unlimited) on physical +interfaces. +.Pp The boundary option allows an interface to be configured as an administrative boundary for the specified scoped address. Packets belonging to this address will not be forwarded on a scoped interface. The boundary option accepts either -a name or a boundary spec. This command may be specified several times -on an interface in order to describe multiple boundaries. -.It passive -No packets will be sent on this link or tunnel until we hear from the other -end. This is useful for the "server" end of a tunnel that goes over -a dial-on-demand link; configure the "server" end as passive and -it will not send its periodic probes until it hears one from the other -side, so will not keep the link up. If this option is specified on both -ends of a tunnel, the tunnel will never come up. -.It noflood -As described above, but only applicable to this interface/tunnel. -.It prune_lifetime Ar secs -As described above, but only applicable to this interface/tunnel. -.It rexmit_prunes Ar "[on|off]" -As described above, but only applicable to this interface/tunnel. -Recall that prune retransmission -defaults to on on point-to-point links and tunnels, and off on -multi-access links. -.It allow_nonpruners -By default, -.Nm -refuses to peer with DVMRP neighbors that -do not claim to support pruning. This option allows such peerings -on this interface. -.It notransit -A specialized case of route filtering; no route learned from an interface -marked "notransit" will be advertised on another interface marked -"notransit". Marking only a single interface "notransit" has no meaning. -.It accept|deny Ar "(route/mask-len [exact])+" Op bidir -The -.Li accept -and -.Li deny -commands allow rudimentary route filtering. The -.Li accept -command causes -.Nm -to accept only the listed routes on the configured interface; the -.Li deny -command causes -.Nm -to accept all but the listed routes. -Only one of -.Li accept -or -.Li deny -commands may be used on a given interface. - -The list of routes follows the -.Li accept -or -.Li deny -keyword. If the keyword -.Ar exact -follows a route, then only that route is matched; otherwise, that route -and any more specific route is matched. For example, -.Li deny 0/0 -denys all routes, while -.Li deny 0/0 exact -denys only the default route. The default route may also be specified -with the -.Li default -keyword. - -The -.Ar bidir -keyword enables bidirectional route filtering; the filter will be applied -to routes on both output and input. Without the -.Ar bidir -keyword, -.Li accept -and -.Li deny -filters are only applied on input. Poison reverse routes are never -filtered out. -.El +a name or a boundary spec. .Pp .Nm Mrouted will not initiate execution if it has fewer than two enabled vifs, @@ -375,7 +218,7 @@ interface or a tunnel. It will log a warning if all of its vifs are tunnels; such an .Nm configuration would be better replaced by more -direct tunnels (i.e. eliminate the middle man). +direct tunnels (i.e., eliminate the middle man). .Sh "EXAMPLE CONFIGURATION" This is an example configuration for a mythical multicast router at a big school. @@ -447,17 +290,16 @@ upon startup. .Sh EXAMPLE The routing tables look like this: .nf -.ft C Virtual Interface Table Vif Local-Address Metric Thresh Flags - 0 36.2.0.8 subnet: 36.2/16 1 1 querier + 0 36.2.0.8 subnet: 36.2 1 1 querier groups: 224.0.2.1 224.0.0.4 pkts in: 3456 pkts out: 2322323 - 1 36.11.0.1 subnet: 36.11/16 1 1 querier + 1 36.11.0.1 subnet: 36.11 1 1 querier groups: 224.0.2.1 224.0.1.0 224.0.0.4 @@ -465,9 +307,9 @@ Virtual Interface Table pkts out: 3456 2 36.2.0.8 tunnel: 36.8.0.77 3 1 - peers: 36.8.0.77 (3.255) - boundaries: 239.0.1/24 - : 239.1.2/24 + peers: 36.8.0.77 (2.2) + boundaries: 239.0.1 + : 239.1.2 pkts in: 34545433 pkts out: 234342 @@ -483,7 +325,6 @@ Multicast Routing Table (1136 entries) . .fi -.Pp In this example, there are four vifs connecting to two subnets and two tunnels. The vif 3 tunnel is not in use (no peer address). The vif 0 and vif 1 subnets have some groups present; tunnels never have any groups. This @@ -511,7 +352,6 @@ are created and deleted by .Pp The cache tables look like this: .nf -.ft C Multicast Routing Cache Table (147 entries) Origin Mcast-group CTmr Age Ptmr IVif Forwvifs @@ -526,14 +366,14 @@ Multicast Routing Cache Table (147 entries) >198.106.194.22 .fi -.Pp Each entry is characterized by the origin subnet number and mask and the destination multicast group. .Pp The 'CTmr' field indicates the lifetime of the entry. The entry is deleted from the cache table -(or refreshed, if traffic is flowing) -when the timer decrements to zero. The 'Age' field is the time since +when the timer decrements to zero. +.Pp +The 'Age' field is the time since this cache entry was originally created. Since cache entries get refreshed if traffic is flowing, routing entries can grow very old. .Pp @@ -551,7 +391,7 @@ indicated by a "P" after the vif number. The Forwvifs field shows the interfaces along which datagrams belonging to the source-group are forwarded. A "p" indicates that no datagrams are being forwarded along -that interface. An unlisted interface is a leaf subnet with no +that interface. An unlisted interface is a leaf subnet with are no members of the particular group on that subnet. A "b" on an interface indicates that it is a boundary interface, i.e. traffic will not be forwarded on the scoped address on that interface. @@ -559,9 +399,6 @@ forwarded on the scoped address on that interface. An additional line with a ">" as the first character is printed for each source on the subnet. Note that there can be many sources in one subnet. -An additional line with a "<" as the first character is printed -describing any prunes received from downstream dependent neighbors -for this subnet and group. .Sh FILES .Bl -tag -width /var/tmp/mrouted.cache -compact .It Pa /etc/mrouted.conf |