summaryrefslogtreecommitdiffstats
path: root/sbin/route/route.8
Commit message (Collapse)AuthorAgeFilesLines
* Add -fib modifier to specify FIB number. The FIB number can be in ahrs2012-11-171-8/+45
| | | | | | | | | | | comma-separated list and/or range specification: # route add -inet 192.0.2.0/24 198.51.100.1 -fib 1,3-5,6 Although all of the subcommands supports the modifier, "monitor" does not support the list or range specification at this moment. Reviewed by: bz
* Remove superfluous paragraph macro.joel2012-03-251-1/+0
|
* Document the show alias and add an EXAMPLES section.joel2012-03-241-1/+36
|
* remove stale references to RTF_CLONING and RTF_LLINFOkmacy2009-09-041-21/+0
| | | | MFC after: 3 days
* Document -t.obrien2007-11-011-0/+4
|
* Document that -q option is also applicable to the "change" command.ru2005-10-021-2/+2
| | | | | PR: docs/85095 Submitted by: Rostislav Krasny
* Introduce "route del" as an alias to "route delete".tobez2005-09-281-1/+5
| | | | Reviewed by: arch
* Expand *n't contractions.ru2005-02-131-1/+1
|
* Sort sections.ru2005-01-181-2/+2
|
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+1
|
* Scheduled mdoc(7) sweep.ru2005-01-101-1/+1
|
* Fix markup: .Dv -> .Vabms2004-11-041-2/+2
| | | | | | Update document dates. Prodded by: ru
* Document the fact that blackhole routes normally need to be boundbms2004-11-041-0/+10
| | | | | | | | to lo(4) interfaces to have an effect, and that this is not needed when using IP fast forwarding. Sponsored by: eXtensible Open Router Project <URL:http://www.xorp.org/> MFC after: 3 weeks
* Mechanically kill hard sentence breaks.ru2004-07-021-3/+6
|
* Assorted markup, grammar, and spelling fixes.ru2004-05-171-1/+1
|
* Remove advertising clause from University of California Regent's license,markm2004-04-091-4/+0
| | | | | | per letter dated July 22, 1999. Approved by: core, imp
* Add a describtion for the '-d' flagbrueffer2003-11-101-1/+3
| | | | | | | | While I'm here, add a missing comma PR: 41787 Obtained from: OpenBSD MFC after: 5 days
* Add the -xresolve flag to the route(8) man page.bms2003-09-261-0/+9
| | | | Reviewed by: ru
* The .Nm utility.charnier2002-07-061-5/+7
|
* Respect -q with "add" and "delete". Document who respects -q.ru2002-05-251-1/+5
| | | | PR: bin/38531
* mdoc(7) police: utilize the new .Ex macro.ru2001-08-151-3/+1
|
* mdoc(7) police:ru2001-08-071-1/+1
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* Remove whitespace at EOL.dd2001-07-151-14/+14
|
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).ru2001-07-061-3/+3
|
* Allow route(8) to create "proxy only" published ARP entries.ru2001-06-121-4/+13
| | | | | PR: bin/12357 Submitted by: Craig Leres <leres@ee.lbl.gov>
* When changing an indirect route, kernel routing code allocatesru2001-06-081-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a route to the gateway and caches it in the route structure. It may happen (if the routing table is screwed) that the gateway route is the same route as the one being modified, in which case a kernel reports EDQUOT. Be more verbose about this: # route add -net 10 192.168.4.65 add net 10: gateway 192.168.4.65 # netstat -rn -finet Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire default 192.168.4.65 UGSc 1 7 rl0 10 192.168.4.65 UGSc 0 0 rl0 127.0.0.1 127.0.0.1 UH 0 178 lo0 192.168.4 link#1 UC 2 0 rl0 => 192.168.4.65 0:d0:b7:16:9c:c6 UHLW 2 0 rl0 1123 Before: # route change -net 10 10.0.0.1 route: writing to routing socket: Disc quota exceeded change net 10: gateway 10.0.0.1: Disc quota exceeded After: # ./route change -net 10 10.0.0.1 route: writing to routing socket: Disc quota exceeded change net 10: gateway 10.0.0.1: gateway uses the same route PR: bin/1093, misc/26833
* Change the host/bits syntax introduced in route.c,v 1.24 to theru2001-06-081-3/+3
| | | | | | | net/bits syntax, for consistency with netstat(1) in particular. OK'ed by: phk MFC after: 1 week
* - Exit 1 if "add", "change", or "delete" operation fails.ru2001-06-071-0/+4
| | | | | | | | | | | | PR: bin/12489 - Use inet_ntoa(3) where it should have been used. This part of code simply wasn't converted to the "new" style after the routename() function was converted from the protocol-generic version to protocol-specific version in CSRG revision 5.6. MFC after: 1 week
* mdoc(7) police: properly use a -diag list in the DIAGNOSTICS section.dd2001-04-131-7/+7
| | | | Reviewed by: ru
* mdoc(7) police: Change -filled displays (which just happenru2001-02-071-3/+3
| | | | | | to be the same as -ragged in the current implementation) to -ragged. With mdocNG, -filled displays produce the correct output, formatted and justified to both margins.
* Typo fix: forgot -> forget.dannyboy2000-11-261-1/+1
| | | | | PR: 23113 Submitted by: Jimmy Olgeni <olgeni@uli.it>
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-4/+7
|
* - Documented the host/bits syntax for destination argument.ru2000-09-291-3/+13
| | | | - Documented that netmask could be specified with third argument.
* udp IPv6 support, IPv6/IPv4 tunneling support in kernel,shin1999-12-071-1/+24
| | | | | | | | | | packet divert at kernel for IPv6/IPv4 translater daemon This includes queue related patch submitted by jburkhol@home.com. Submitted by: queue related patch from jburkhol@home.com Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
* MFS: forego->forgonsayer1999-10-161-1/+1
|
* spell check != grammar check. :-)nsayer1999-10-161-1/+1
|
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Mention the special destination "default" for default routes. Fix aghelmer1999-05-041-4/+15
| | | | | | couple of formatting bugs. PR: docs/9960
* Comment is .\" not .|'. Add -d and -t flags to SYNOPSIS and usage(). Getoptcharnier1998-07-281-13/+14
| | | | | returns -1. Correct use of .Nm. Spelling. Add rcsid and remove unused #include.
* Sync beetween man page and usage string.charnier1997-06-181-2/+2
|
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Sort cross references.wosch1997-01-131-2/+3
|
* back out a part of the previous patch that garrett objected to..julian1996-08-191-3/+1
|
* Submitted by: Archie@whistle.comjulian1996-08-131-2/+5
| | | | | | if making a interface route, and it's a P2P link, then also automatically lable it as an llinfo entry so that gated and friends don't clobber it..
* Reviewed by: julianjulian1996-08-091-0/+2
| | | | | | | | | | | | | | | | | | Submitted by: archie@whistle.com This patch allows true interface routing to be controlled from the command line.. you can now do: route add default -interface ppp0 even if you have no clue what the address at the other end is.. this is part of a set of changes that allow true "unnumbered links" such as netcom run between their sites.. In practice you should assign the address from one of your ethernet interfaces to the local side of the P2P link so that IP doesn't say that the packet comes from 255.255.255.255, but there is no need whatsoever to assign an address of any kind to the remote end of the link.. useful for frame relay links etc also.
* changes to allow route to manipulate appletalk routes.julian1996-07-091-2/+6
|
* Do not install the now unsupported netns and netisompp1996-04-081-1/+1
| | | | | related man pages. Comment out cross references to those man pages from other man pages.
* Another round of man page cleanups.mpp1996-02-121-2/+3
| | | | Down to only about 100 items left to cleanup! :-)
* BSD 4.4 Lite sbin Sourcesrgrimes1994-05-261-0/+324
Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
OpenPOWER on IntegriCloud