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