xref: /freebsd/sbin/routed/routed.8 (revision ee2ea5ceafed78a5bd9810beb9e3ca927180c226)
1.\" Copyright (c) 1983, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)routed.8	8.2 (Berkeley) 12/11/93
33.\" $FreeBSD$
34.\"
35.Dd June 1, 1996
36.Dt ROUTED 8
37.Os
38.Sh NAME
39.Nm routed ,
40.Nm rdisc
41.Nd network RIP and router discovery routing daemon
42.Sh SYNOPSIS
43.Nm
44.Op Fl sqdghmpAtv
45.Op Fl T Ar tracefile
46.Oo
47.Fl F
48.Ar net Ns Op /mask Ns Op ,metric
49.Oc
50.Op Fl P Ar parms
51.Sh DESCRIPTION
52.Nm Routed
53is a daemon invoked at boot time to manage the network
54routing tables.
55It uses Routing Information Protocol, RIPv1 (RFC\ 1058),
56RIPv2 (RFC\ 1723),
57and Internet Router Discovery Protocol (RFC 1256)
58to maintain the kernel routing table.
59The RIPv1 protocol is based on the reference
60.Bx 4.3
61daemon.
62.Pp
63It listens on the
64.Xr udp 4
65socket for the
66.Xr route 8
67service (see
68.Xr services 5 )
69for Routing Information Protocol packets.
70It also sends and receives multicast Router Discovery ICMP messages.
71If the host is a router,
72.Nm
73periodically supplies copies
74of its routing tables to any directly connected hosts and networks.
75It also advertises or solicits default routes using Router Discovery
76ICMP messages.
77.Pp
78When started (or when a network interface is later turned on),
79.Nm
80uses an AF_ROUTE address family facility to find those
81directly connected interfaces configured into the
82system and marked "up".
83It adds necessary routes for the interfaces
84to the kernel routing table.
85Soon after being first started, and provided there is at least one
86interface on which RIP has not been disabled,
87.Nm
88deletes all pre-existing
89non-static routes in kernel table.
90Static routes in the kernel table are preserved and
91included in RIP responses if they have a valid RIP metric
92(see
93.Xr route 8 ) .
94.Pp
95If more than one interface is present (not counting the loopback interface),
96it is assumed that the host should forward packets among the
97connected networks.
98After transmitting a RIP
99.Em request
100and
101Router Discovery Advertisements or Solicitations on a new interface,
102the daemon enters a loop, listening for
103RIP request and response and Router Discovery packets from other hosts.
104.Pp
105When a
106.Em request
107packet is received,
108.Nm
109formulates a reply based on the information maintained in its
110internal tables.
111The
112.Em response
113packet generated contains a list of known routes, each marked
114with a "hop count" metric (a count of 16 or greater is
115considered "infinite").
116Advertised metrics reflect the metric associated with interface
117(see
118.Xr ifconfig 8 ) ,
119so setting the metric on an interface
120is an effective way to steer traffic.
121.Pp
122Responses do not include routes with a first hop on the requesting
123network to implement in part
124.Em split-horizon .
125Requests from query programs
126such as
127.Xr rtquery 8
128are answered with the complete table.
129.Pp
130The routing table maintained by the daemon
131includes space for several gateways for each destination
132to speed recovery from a failing router.
133RIP
134.Em response
135packets received are used to update the routing tables provided they are
136from one of the several currently recognized gateways or
137advertise a better metric than at least one of the existing
138gateways.
139.Pp
140When an update is applied,
141.Nm
142records the change in its own tables and updates the kernel routing table
143if the best route to the destination changes.
144The change in the kernel routing table is reflected in the next batch of
145.Em response
146packets sent.
147If the next response is not scheduled for a while, a
148.Em flash update
149response containing only recently changed routes is sent.
150.Pp
151In addition to processing incoming packets,
152.Nm
153also periodically checks the routing table entries.
154If an entry has not been updated for 3 minutes, the entry's metric
155is set to infinity and marked for deletion.
156Deletions are delayed until the route has been advertised with
157an infinite metric to insure the invalidation
158is propagated throughout the local internet.
159This is a form of
160.Em poison reverse .
161.Pp
162Routes in the kernel table that are added or changed as a result
163of ICMP Redirect messages are deleted after a while to minimize
164.Em black-holes .
165When a TCP connection suffers a timeout,
166the kernel tells
167.Nm ,
168which deletes all redirected routes
169through the gateway involved, advances the age of all RIP routes through
170the gateway to allow an alternate to be chosen, and advances of the
171age of any relevant Router Discovery Protocol default routes.
172.Pp
173Hosts acting as internetwork routers gratuitously supply their
174routing tables every 30 seconds to all directly connected hosts
175and networks.
176These RIP responses are sent to the broadcast address on nets that support
177broadcasting,
178to the destination address on point-to-point links, and to the router's
179own address on other networks.
180If RIPv2 is enabled, multicast packets are sent on interfaces that
181support multicasting.
182.Pp
183If no response is received on a remote interface, if there are errors
184while sending responses,
185or if there are more errors than input or output (see
186.Xr netstat 1 ) ,
187then the cable or some other part of the interface is assumed to be
188disconnected or broken, and routes are adjusted appropriately.
189.Pp
190The
191.Em Internet Router Discovery Protocol
192is handled similarly.
193When the daemon is supplying RIP routes, it also listens for
194Router Discovery Solicitations and sends Advertisements.
195When it is quiet and listening to other RIP routers, it
196sends Solicitations and listens for Advertisements.
197If it receives
198a good Advertisement and it is not multi-homed,
199it stops listening for broadcast or multicast RIP responses.
200It tracks several advertising routers to speed recovery when the
201currently chosen router dies.
202If all discovered routers disappear,
203the daemon resumes listening to RIP responses.
204It continues listening to RIP while using Router Discovery
205if multi-homed to ensure all interfaces are used.
206.Pp
207The Router Discovery standard requires that advertisements
208have a default "lifetime" of 30 minutes.  That means should
209something happen, a client can be without a good route for
21030 minutes.  It is a good idea to reduce the default to 45
211seconds using
212.Fl P Cm rdisc_interval=45
213on the command line or
214.Cm rdisc_interval=45
215in the
216.Pa /etc/gateways
217file.
218.Pp
219While using Router Discovery (which happens by default when
220the system has a single network interface and a Router Discover Advertisement
221is received), there is a single default route and a variable number of
222redirected host routes in the kernel table.
223On a host with more than one network interface,
224this default route will be via only one of the interfaces.
225Thus, multi-homed hosts running with \f3\-q\f1 might need
226.Cm no_rdisc
227described below.
228.Pp
229See the
230.Cm pm_rdisc
231facility described below to support "legacy" systems
232that can handle neither RIPv2 nor Router Discovery.
233.Pp
234By default, neither Router Discovery advertisements nor solicitations
235are sent over point to point links (e.g. PPP).
236The netmask associated with point-to-point links (such as SLIP
237or PPP, with the IFF_POINTOPOINT flag) is used by
238.Nm
239to infer the netmask used by the remote system when RIPv1 is used.
240.Pp
241The following options are available:
242.Bl -tag -width indent
243.It Fl s
244force
245.Nm
246to supply routing information.
247This is the default if multiple network interfaces are present on which
248RIP or Router Discovery have not been disabled, and if the kernel switch
249ipforwarding=1.
250.It Fl q
251is the opposite of the
252.Fl s
253option.
254This is the default when only one interface is present.
255With this explicit option, the daemon is always in "quiet-mode" for RIP
256and does not supply routing information to other computers.
257.It Fl d
258do not run in the background.
259This option is meant for interactive use.
260.It Fl g
261used on internetwork routers to offer a route
262to the "default" destination.
263It is equivalent to
264.Fl F
265.Cm 0/0,1
266and is present mostly for historical reasons.
267A better choice is
268.Fl P Cm pm_rdisc
269on the command line or
270.Cm pm_rdisc
271in the
272.Pa /etc/gateways
273file,
274since a larger metric
275will be used, reducing the spread of the potentially dangerous
276default route.
277This is typically used on a gateway to the Internet,
278or on a gateway that uses another routing protocol whose routes
279are not reported to other local routers.
280Notice that because a metric of 1 is used, this feature is
281dangerous.  It is more commonly accidentally used to create chaos with a
282routing loop than to solve problems.
283.It Fl h
284cause host or point-to-point routes to not be advertised,
285provided there is a network route going the same direction.
286That is a limited kind of aggregation.
287This option is useful on gateways to Ethernets that have other gateway
288machines connected with point-to-point links such as SLIP.
289.It Fl m
290cause the machine to advertise a host or point-to-point route to
291its primary interface.
292It is useful on multi-homed machines such as NFS servers.
293This option should not be used except when the cost of
294the host routes it generates is justified by the popularity of
295the server.
296It is effective only when the machine is supplying
297routing information, because there is more than one interface.
298The
299.Fl m
300option overrides the
301.Fl q
302option to the limited extent of advertising the host route.
303.It Fl A
304do not ignore RIPv2 authentication if we do not care about RIPv2
305authentication.
306This option is required for conformance with RFC 1723.
307However, it makes no sense and breaks using RIP as a discovery protocol
308to ignore all RIPv2 packets that carry authentication when this machine
309does not care about authentication.
310.It Fl t
311increase the debugging level, which causes more information to be logged
312on the tracefile specified with
313.Fl T
314or standard out.
315The debugging level can be increased or decreased
316with the
317.Em SIGUSR1
318or
319.Em SIGUSR2
320signals or with the
321.Xr rtquery 8
322command.
323.It Fl T Ar tracefile
324increases the debugging level to at least 1 and
325causes debugging information to be appended to the trace file.
326Note that because of security concerns, it is wisest to not run
327.Nm
328routinely with tracing directed to a file.
329.It Fl v
330display and logs the version of daemon.
331.It Fl F Ar net[/mask][,metric]
332minimize routes in transmissions via interfaces with addresses that match
333.Em net/mask ,
334and synthesizes a default route to this machine with the
335.Em metric .
336The intent is to reduce RIP traffic on slow, point-to-point links
337such as PPP links by replacing many large UDP packets of RIP information
338with a single, small packet containing a "fake" default route.
339If
340.Em metric
341is absent, a value of 14 is assumed to limit
342the spread of the "fake" default route.
343This is a dangerous feature that when used carelessly can cause routing
344loops.
345Notice also that more than one interface can match the specified network
346number and mask.
347See also
348.Fl g .
349.It Fl P Ar parms
350is equivalent to adding the parameter
351line
352.Em parms
353to the
354.Pa /etc/gateways
355file.
356.El
357.Pp
358Any other argument supplied is interpreted as the name
359of a file in which the actions of
360.Nm
361should be logged.
362It is better to use
363.Fl T
364instead of
365appending the name of the trace file to the command.
366.Pp
367.Nm Routed
368also supports the notion of
369"distant"
370.Em passive
371or
372.Em active
373gateways.
374When
375.Nm
376is started, it reads the file
377.Pa /etc/gateways
378to find such distant gateways which may not be located using
379only information from a routing socket, to discover if some
380of the local gateways are
381.Em passive ,
382and to obtain other parameters.
383Gateways specified in this manner should be marked passive
384if they are not expected to exchange routing information,
385while gateways marked active
386should be willing to exchange RIP packets.
387Routes through
388.Em passive
389gateways are installed in the
390kernel's routing tables once upon startup and are not included in
391transmitted RIP responses.
392.Pp
393Distant active gateways are treated like network interfaces.
394RIP responses are sent
395to the distant
396.Em active
397gateway.
398If no responses are received, the associated route is deleted from
399the kernel table and RIP responses advertised via other interfaces.
400If the distant gateway resumes sending RIP responses, the associated
401route is restored.
402.Pp
403Such gateways can be useful on media that do not support broadcasts
404or multicasts but otherwise act like classic shared media like
405Ethernets such as some ATM networks.
406One can list all RIP routers reachable on the HIPPI or ATM network in
407.Pa /etc/gateways
408with a series of
409"host" lines.
410Note that it is usually desirable to use RIPv2 in such situations
411to avoid generating lists of inferred host routes.
412.Pp
413Gateways marked
414.Em external
415are also passive, but are not placed in the kernel
416routing table nor are they included in routing updates.
417The function of external entries is to indicate
418that another routing process
419will install such a route if necessary,
420and that other routes to that destination should not be installed
421by
422.Nm .
423Such entries are only required when both routers may learn of routes
424to the same destination.
425.Pp
426The
427.Pa /etc/gateways
428file is comprised of a series of lines, each in
429one of the following two formats or consist of parameters described later.
430Blank lines and lines starting with '#' are comments.
431.Pp
432.Bd -ragged
433.Cm net
434.Ar Nname[/mask]
435.Cm gateway
436.Ar Gname
437.Cm metric
438.Ar value
439.Pf < Cm passive No \&|
440.Cm active No \&|
441.Cm extern Ns >
442.Ed
443.Bd -ragged
444.Cm host
445.Ar Hname
446.Cm gateway
447.Ar Gname
448.Cm metric
449.Ar value
450.Pf < Cm passive No \&|
451.Cm active No \&|
452.Cm extern Ns >
453.Ed
454.Pp
455.Ar Nname
456or
457.Ar Hname
458is the name of the destination network or host.
459It may be a symbolic network name or an Internet address
460specified in "dot" notation (see
461.Xr inet 3 ) .
462(If it is a name, then it must either be defined in
463.Pa /etc/networks
464or
465.Pa /etc/hosts ,
466or
467.Xr named 8 ,
468must have been started before
469.Nm . )
470.Pp
471.Ar Mask
472is an optional number between 1 and 32 indicating the netmask associated
473with
474.Ar Nname .
475.Pp
476.Ar Gname
477is the name or address of the gateway to which RIP responses should
478be forwarded.
479.Pp
480.Ar Value
481is the hop count to the destination host or network.
482.Pp
483.Cm Host Ar hname
484is equivalent to
485.Cm net Ar nname/32 .
486.Pp
487One of the keywords
488.Cm passive ,
489.Cm active
490or
491.Cm external
492must be present to indicate whether the gateway should be treated as
493.Cm passive
494or
495.Cm active
496(as described above),
497or whether the gateway is
498.Cm external
499to the scope of the RIP protocol.
500.Pp
501As can be seen when debugging is turned on with
502.Fl t ,
503such lines create pseudo-interfaces.
504To set parameters for remote or external interfaces,
505a line starting with
506.Cm if=alias(Hname) ,
507.Cm if=remote(Hname) ,
508etc. should be used.
509.Pp
510Lines that start with neither "net" nor "host" must consist of one
511or more of the following parameter settings, separated by commas or
512blanks:
513.Bl -tag -width Ds
514.It Cm if Ns \&= Ns Ar ifname
515indicates that the other parameters on the line apply to the interface
516name
517.Ar ifname .
518.It Cm subnet Ns \&= Ns Ar nname[/mask][,metric]
519advertises a route to network
520.Ar nname
521with mask
522.Ar mask
523and the supplied metric (default 1).
524This is useful for filling "holes" in CIDR allocations.
525This parameter must appear by itself on a line.
526The network number must specify a full, 32-bit value, as in 192.0.2.0
527instead of 192.0.2.
528.Pp
529Do not use this feature unless necessary.  It is dangerous.
530.It Cm ripv1_mask Ns \&= Ns Ar nname/mask1,mask2
531specifies that netmask of the network of which
532.Cm nname/mask1\f1
533is
534a subnet should be
535.Cm mask2 .
536For example \f2ripv1_mask=192.0.2.16/28,27\f1 marks 192.0.2.16/28
537as a subnet of 192.0.2.0/27 instead of 192.0.2.0/24.
538It is better to turn on RIPv2 instead of using this facility, for example
539with \f2ripv2_out\f1.
540.It Cm passwd Ns \&= Ns Ar XXX[|KeyID[start|stop]]
541specifies a RIPv2 cleartext password that will be included on
542all RIPv2 responses sent, and checked on all RIPv2 responses received.
543Any blanks, tab characters, commas, or '#', '|', or NULL characters in the
544password must be escaped with a backslash (\\).
545The common escape sequences \\n, \\r, \\t, \\b, and \\xxx have their
546usual meanings.
547The
548.Cm KeyID
549must be unique but is ignored for cleartext passwords.
550If present,
551.Cm start
552and
553.Cm stop
554are timestamps in the form year/month/day@hour:minute.
555They specify when the password is valid.
556The valid password with the most future is used on output packets, unless
557all passwords have expired, in which case the password that expired most
558recently is used, or unless no passwords are valid yet, in which case
559no password is output.
560Incoming packets can carry any password that is valid, will
561be valid within 24 hours, or that was valid within 24 hours.
562To protect the secrets, the passwd settings are valid only in the
563.Em /etc/gateways
564file and only when that file is readable only by UID 0.
565.It Cm md5_passwd Ns \&= Ns Ar XXX|KeyID[start|stop]
566specifies a RIPv2 MD5 password.
567Except that a
568.Cm KeyID
569is required, this keyword is similar to
570.Cm passwd .
571.It Cm no_ag
572turns off aggregation of subnets in RIPv1 and RIPv2 responses.
573.It Cm no_super_ag
574turns off aggregation of networks into supernets in RIPv2 responses.
575.It Cm passive
576marks the interface to not be advertised in updates sent via other
577interfaces, and turns off all RIP and router discovery through the interface.
578.It Cm no_rip
579disables all RIP processing on the specified interface.
580If no interfaces are allowed to process RIP packets,
581.Nm
582acts purely as a router discovery daemon.
583.Pp
584Note that turning off RIP without explicitly turning on router
585discovery advertisements with
586.Cm rdisc_adv
587or
588.Fl s
589causes
590.Nm
591to act as a client router discovery daemon, not advertising.
592.It Cm no_rip_mcast
593causes RIPv2 packets to be broadcast instead of multicast.
594.It Cm no_rip_out
595causes no RIP updates to be sent.
596.It Cm no_ripv1_in
597causes RIPv1 received responses to be ignored.
598.It Cm no_ripv2_in
599causes RIPv2 received responses to be ignored.
600.It Cm ripv2_out
601turns on RIPv2 output and causes RIPv2 advertisements to be
602multicast when possible.
603.It Cm ripv2
604is equivalent to
605.Cm no_ripv1_in
606and
607.Cm no_ripv1_out .
608This enables RIPv2.
609.It Cm no_rdisc
610disables the Internet Router Discovery Protocol.
611.It Cm no_solicit
612disables the transmission of Router Discovery Solicitations.
613.It Cm send_solicit
614specifies that Router Discovery solicitations should be sent,
615even on point-to-point links,
616which by default only listen to Router Discovery messages.
617.It Cm no_rdisc_adv
618disables the transmission of Router Discovery Advertisements.
619.It Cm rdisc_adv
620specifies that Router Discovery Advertisements should be sent,
621even on point-to-point links,
622which by default only listen to Router Discovery messages.
623.It Cm bcast_rdisc
624specifies that Router Discovery packets should be broadcast instead of
625multicast.
626.It Cm rdisc_pref Ns \&= Ns Ar N
627sets the preference in Router Discovery Advertisements to the optionally
628signed integer
629.Ar N .
630The default preference is 0.
631Default routes with smaller or more negative preferences are preferred by
632clients.
633.It Cm rdisc_interval Ns \&= Ns Ar N
634sets the nominal interval with which Router Discovery Advertisements
635are transmitted to N seconds and their lifetime to 3*N.
636.It Cm fake_default Ns \&= Ns Ar metric
637has an identical effect to
638.Fl F Ar net[/mask][=metric]
639with the network and mask coming from the specified interface.
640.It Cm pm_rdisc
641is similar to
642.Cm fake_default .
643When RIPv2 routes are multicast, so that RIPv1 listeners cannot
644receive them, this feature causes a RIPv1 default route to be
645broadcast to RIPv1 listeners.
646Unless modified with
647.Cm fake_default ,
648the default route is broadcast with a metric of 14.
649That serves as a "poor man's router discovery" protocol.
650.It Cm trust_gateway Ns \&= Ns Ar rname[|net1/mask1|net2/mask2|...]
651causes RIP packets from that router and other routers named in
652other
653.Cm trust_gateway
654keywords to be accepted, and packets from other routers to be ignored.
655If networks are specified, then routes to other networks will be ignored
656from that router.
657.It Cm redirect_ok
658causes RIP to allow ICMP Redirect messages when the system is acting
659as a router and forwarding packets.
660Otherwise, ICMP Redirect messages are overridden.
661.El
662.Sh FILES
663.Bl -tag -width /etc/gateways -compact
664.It Pa /etc/gateways
665for distant gateways
666.El
667.Sh SEE ALSO
668.Xr icmp 4 ,
669.Xr udp 4 ,
670.Xr rtquery 8
671.Rs
672.%T Internet Transport Protocols
673.%R XSIS 028112
674.%Q Xerox System Integration Standard
675.Re
676.Sh BUGS
677It does not always detect unidirectional failures in network interfaces,
678for example, when the output side fails.
679.Sh HISTORY
680The
681.Nm
682command appeared in
683.Bx 4.2 .
684