Merge branch 'vendor/MDOCML'
[dragonfly.git] / sbin / route / route.8
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. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)route.8     8.3 (Berkeley) 3/19/94
29 .\" $FreeBSD: src/sbin/route/route.8,v 1.17.2.9 2003/02/24 00:56:43 trhodes Exp $
30 .\"
31 .Dd June 8, 2001
32 .Dt ROUTE 8
33 .Os
34 .Sh NAME
35 .Nm route
36 .Nd manually manipulate the routing tables
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl dnqtv
40 .Op Fl c Ar cpu
41 .Ar command
42 .Oo
43 .Op Ar modifiers
44 .Ar args
45 .Oc
46 .Sh DESCRIPTION
47 The
48 .Nm
49 utility is used to manually manipulate the network
50 routing tables.  It normally is not needed, as a
51 system routing table management daemon such as
52 .Xr routed 8 ,
53 should tend to this task.
54 .Pp
55 The
56 .Nm
57 utility supports a limited number of general options,
58 but a rich command language, enabling the user to specify
59 any arbitrary request that could be delivered via the
60 programmatic interface discussed in
61 .Xr route 4 .
62 .Pp
63 The following options are available:
64 .Bl -tag -width indent
65 .It Fl c Ar cpu
66 On SMP systems the route table is replicated.  This option allows the
67 route table for a specific cpu to be accessed and exists primarily
68 for debugging purposes.
69 .It Fl n
70 Bypass attempts to print host and network names symbolically
71 when reporting actions.  (The process of translating between symbolic
72 names and numerical equivalents can be quite time consuming, and
73 may require correct operation of the network; thus it may be expedient
74 to forget this, especially when attempting to repair networking operations).
75 .It Fl v
76 (verbose) Print additional details.
77 .It Fl q
78 Suppress all output from the
79 .Cm add , delete ,
80 and
81 .Cm flush
82 commands.
83 .It Fl w
84 Print the full width of the data being represented even if it would overflow
85 the column.
86 .El
87 .Pp
88 The
89 .Nm
90 utility provides six commands:
91 .Pp
92 .Bl -tag -width Fl -compact
93 .It Cm add
94 Add a route.
95 .It Cm flush
96 Remove all routes.
97 .It Cm delete
98 Delete a specific route.
99 .It Cm change
100 Change aspects of a route (such as its gateway).
101 .It Cm get
102 Lookup and display the route for a destination.
103 .It Cm show
104 Print out the route table similar to "netstat \-r" (see
105 .Xr netstat 1 ) .
106 .It Cm monitor
107 Continuously report any changes to the routing information base,
108 routing lookup misses, or suspected network partitionings.
109 .El
110 .Pp
111 The monitor command has the syntax:
112 .Pp
113 .Bd -ragged -offset indent -compact
114 .Nm
115 .Op Fl n
116 .Cm monitor
117 .Ed
118 .Pp
119 The flush command has the syntax:
120 .Pp
121 .Bd -ragged -offset indent -compact
122 .Nm
123 .Op Fl n
124 .Cm flush
125 .Op Ar family
126 .Ed
127 .Pp
128 If the
129 .Cm flush
130 command is specified,
131 .Nm
132 will ``flush'' the routing tables of all gateway entries.
133 When the address family may is specified by any of the
134 .Fl osi ,
135 .Fl xns ,
136 .Fl inet6 ,
137 or
138 .Fl inet
139 modifiers, only routes having destinations with addresses in the
140 delineated family will be deleted.
141 .Pp
142 The other commands have the following syntax:
143 .Pp
144 .Bd -ragged -offset indent -compact
145 .Nm
146 .Op Fl n
147 .Ar command
148 .Op Fl net No \&| Fl host
149 .Ar destination gateway
150 .Op Ar netmask
151 .Ed
152 .Pp
153 where
154 .Ar destination
155 is the destination host or network,
156 .Ar gateway
157 is the next-hop intermediary via which packets should be routed.
158 Routes to a particular host may be distinguished from those to
159 a network by interpreting the Internet address specified as the
160 .Ar destination
161 argument.
162 The optional modifiers
163 .Fl net
164 and
165 .Fl host
166 force the destination to be interpreted as a network or a host, respectively.
167 Otherwise, if the
168 .Ar destination
169 has a
170 .Dq local address part
171 of
172 INADDR_ANY
173 .Pq Li 0.0.0.0 ,
174 or if the
175 .Ar destination
176 is the symbolic name of a network, then the route is
177 assumed to be to a network; otherwise, it is presumed to be a
178 route to a host.
179 Optionally, the
180 .Ar destination
181 could also be specified in the
182 .Ar net Ns / Ns Ar bits
183 format.
184 .Pp
185 For example,
186 .Li 128.32
187 is interpreted as
188 .Fl host Li 128.0.0.32 ;
189 .Li 128.32.130
190 is interpreted as
191 .Fl host Li 128.32.0.130 ;
192 .Fl net Li 128.32
193 is interpreted as
194 .Li 128.32.0.0;
195 .Fl net Li 128.32.130
196 is interpreted as
197 .Li 128.32.130.0;
198 and
199 .Li 192.168.64/20
200 is interpreted as
201 .Fl net Li 192.168.64 Fl netmask Li 255.255.240.0 .
202 .Pp
203 A
204 .Ar destination
205 of
206 .Ar default
207 is a synonym for
208 .Fl net Li 0.0.0.0 ,
209 which is the default route.
210 .Pp
211 If the destination is directly reachable
212 via an interface requiring
213 no intermediary system to act as a gateway, the
214 .Fl interface
215 modifier should be specified;
216 the gateway given is the address of this host on the common network,
217 indicating the interface to be used for transmission.
218 Alternately, if the interface is point to point the name of the interface
219 itself may be given, in which case the route remains valid even
220 if the local or remote addresses change.
221 .Pp
222 The optional modifiers
223 .Fl mpls ,
224 .Fl xns ,
225 .Fl osi ,
226 and
227 .Fl link
228 specify that all subsequent addresses are in the
229 .Tn MPLS ,
230 .Tn XNS ,
231 or
232 .Tn OSI
233 address families,
234 or are specified as link-level addresses,
235 and the names must be numeric specifications rather than
236 symbolic names.
237 .Pp
238 The optional
239 .Fl netmask
240 modifier is intended
241 to achieve the effect of an
242 .Tn OSI
243 .Tn ESIS
244 redirect with the netmask option,
245 or to manually add subnet routes with
246 netmasks different from that of the implied network interface
247 (as would otherwise be communicated using the OSPF or ISIS routing protocols).
248 One specifies an additional ensuing address parameter
249 (to be interpreted as a network mask).
250 The implicit network mask generated in the AF_INET case
251 can be overridden by making sure this option follows the destination parameter.
252 .Pp
253 For
254 .Dv AF_INET6 ,
255 the
256 .Fl prefixlen
257 qualifier
258 is available instead of the
259 .Fl mask
260 qualifier because non-continuous masks are not allowed in IPv6.
261 For example,
262 .Fl prefixlen Li 32
263 specifies network mask of
264 .Li ffff:ffff:0000:0000:0000:0000:0000:0000
265 to be used.
266 The default value of prefixlen is 64 to get along with
267 the aggregatable address.
268 But 0 is assumed if
269 .Cm default
270 is specified.
271 Note that the qualifier works only for
272 .Dv AF_INET6
273 address family.
274 .Pp
275 Routes have associated flags which influence operation of the protocols
276 when sending to destinations matched by the routes.
277 These flags may be set (or sometimes cleared)
278 by indicating the following corresponding modifiers:
279 .Bd -literal
280 -cloning   RTF_CLONING    - generates a new route on use
281 -xresolve  RTF_XRESOLVE   - emit mesg on use (for external lookup)
282 -iface    ~RTF_GATEWAY    - destination is directly reachable
283 -static    RTF_STATIC     - manually added route
284 -nostatic ~RTF_STATIC     - pretend route added by kernel or daemon
285 -reject    RTF_REJECT     - emit an ICMP unreachable when matched
286 -blackhole RTF_BLACKHOLE  - silently discard pkts (during updates)
287 -proto1    RTF_PROTO1     - set protocol specific routing flag #1
288 -proto2    RTF_PROTO2     - set protocol specific routing flag #2
289 -llinfo    RTF_LLINFO     - validly translates proto addr to link addr
290 .Ed
291 .Pp
292 The optional modifiers
293 .Fl rtt ,
294 .Fl rttvar ,
295 .Fl sendpipe ,
296 .Fl recvpipe ,
297 .Fl mtu ,
298 .Fl hopcount ,
299 .Fl expire ,
300 .Fl msl ,
301 .Fl iw ,
302 .Fl iwmax
303 and
304 .Fl ssthresh
305 provide initial values to quantities maintained in the routing entry
306 by transport level protocols, such as TCP or TP4.
307 These may be individually locked by preceding each such modifier to
308 be locked by
309 the
310 .Fl lock
311 meta-modifier, or one can
312 specify that all ensuing metrics may be locked by the
313 .Fl lockrest
314 meta-modifier.
315 .Pp
316 In a
317 .Cm change
318 or
319 .Cm add
320 command where the destination and gateway are not sufficient to specify
321 the route (as in the
322 .Tn ISO
323 case where several interfaces may have the
324 same address), the
325 .Fl ifp
326 or
327 .Fl ifa
328 modifiers may be used to determine the interface or interface address.
329 .Pp
330 The optional
331 .Fl proxy
332 modifier specifies that the
333 .Dv RTF_LLINFO
334 routing table entry is the
335 .Dq published (proxy-only)
336 .Tn ARP
337 entry, as reported by
338 .Xr arp 8 .
339 .Pp
340 All symbolic names specified for a
341 .Ar destination
342 or
343 .Ar gateway
344 are looked up first as a host name using
345 .Xr gethostbyname 3 .
346 If this lookup fails,
347 .Xr getnetbyname 3
348 is then used to interpret the name as that of a network.
349 .Pp
350 The optional
351 .Fl push ,
352 .Fl pop ,
353 and
354 .Fl swap
355 modifiers may be used to specify the desired mpls label
356 operations for the route. Each route may have up to 3
357 label operations assigned to it. The label operations
358 may be combined between them, but specifically the
359 .Fl push
360 and
361 .Fl pop
362 operations may be repeated if the intent is to push or pop
363 more than one label at once. The
364 .Fl swap
365 operation always swaps the outer label and may not be
366 repeated.
367 Here are some MPLS route examples:
368 .Pp
369 Add an normal inet route, but push an mpls
370 .Ar label
371 to the packet:
372 .Pp
373 .Bd -ragged -offset indent -compact
374 .Nm
375 .Cm add
376 .Ar destination gateway
377 .Fl push
378 .Ar label
379 .Ed
380 .Pp
381 Add an normal inet route, but double-push an mpls
382 .Ar inner-label
383 and an
384 .Ar outer-label
385 to the packet:
386 .Pp
387 .Bd -ragged -offset indent -compact
388 .Nm
389 .Cm add
390 .Ar destination gateway
391 .Fl push
392 .Ar inner-label
393 .Fl push
394 .Ar outer-label
395 .Ed
396 .Pp
397 Add an mpls route for an
398 .Ar incoming-label
399 to be forwarded to
400 .Ar gateway
401 and swap that label with
402 .Ar new-label :
403 .Pp
404 .Bd -ragged -offset indent -compact
405 .Nm
406 .Cm add
407 .Fl mpls
408 .Ar incoming-label
409 .Fl inet
410 .Ar gateway
411 .Fl swap
412 .Ar new-label
413 .Ed
414 .Pp
415 The
416 .Nm
417 utility uses a routing socket and the new message types
418 .Dv RTM_ADD , RTM_DELETE , RTM_GET ,
419 and
420 .Dv RTM_CHANGE .
421 As such, only the super-user may modify
422 the routing tables.
423 .Sh EXIT STATUS
424 .Ex -std
425 .Sh DIAGNOSTICS
426 .Bl -diag
427 .It "add [host \&| network ] %s: gateway %s flags %x"
428 The specified route is being added to the tables.  The
429 values printed are from the routing table entry supplied
430 in the
431 .Xr ioctl 2
432 call.
433 If the gateway address used was not the primary address of the gateway
434 (the first one returned by
435 .Xr gethostbyname 3 ) ,
436 the gateway address is printed numerically as well as symbolically.
437 .It "delete [ host \&| network ] %s: gateway %s flags %x"
438 As above, but when deleting an entry.
439 .It "%s %s done"
440 When the
441 .Cm flush
442 command is specified, each routing table entry deleted
443 is indicated with a message of this form.
444 .It "Network is unreachable"
445 An attempt to add a route failed because the gateway listed was not
446 on a directly-connected network.
447 The next-hop gateway must be given.
448 .It "not in table"
449 A delete operation was attempted for an entry which
450 wasn't present in the tables.
451 .It "routing table overflow"
452 An add operation was attempted, but the system was
453 low on resources and was unable to allocate memory
454 to create the new entry.
455 .It "gateway uses the same route"
456 A
457 .Cm change
458 operation resulted in a route whose gateway uses the
459 same route as the one being changed.
460 The next-hop gateway should be reachable through a different route.
461 .El
462 .Sh SEE ALSO
463 .\".Xr esis 4 ,
464 .Xr netintro 4 ,
465 .Xr route 4 ,
466 .Xr arp 8 ,
467 .Xr IPXrouted 8 ,
468 .Xr routed 8
469 .\".Xr XNSrouted 8
470 .Sh HISTORY
471 The
472 .Nm
473 utility appeared in
474 .Bx 4.2 .
475 .Sh BUGS
476 The first paragraph may have slightly exaggerated
477 .Xr routed 8 Ns 's
478 abilities.