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