| Main index | Section 8 | 日本語 | Options |
The route utility supports a limited number of general options, but a rich command language, enabling the user to specify any arbitrary request that could be delivered via the programmatic interface discussed in route(4).
The following options are available:
| | |
| Specify inet address family as family hint for subcommands. | |
| | |
| Specify inet6 address family as family hint for subcommands. | |
| | |
| Run in debug-only mode, i.e., do not actually modify the routing table. | |
| | |
| Bypass attempts to print host and network names symbolically when reporting actions. (The process of translating between symbolic names and numerical equivalents can be quite time consuming, and may require correct operation of the network; thus it may be expedient to forget this, especially when attempting to repair networking operations). | |
| | |
| Run in test-only mode. /dev/null is used instead of a socket. | |
| | |
| (verbose) Print additional details. | |
| | |
| Suppress all output from the add, change, delete, and flush commands. | |
| | |
| Run inside a jail. | |
The route utility provides the following commands:
| add | Add a route. |
| flush | Remove all routes. |
| delete | |
| Delete a specific route. | |
| del | Another name for the delete command. |
| change | |
| Change aspects of a route (such as its gateway). | |
| get | Lookup and display the route for a destination. |
| monitor | |
| Continuously report any changes to the routing information base, routing lookup misses, or suspected network partitionings. | |
| show | Another name for the get command. |
The monitor command has the syntax:
route
[
The flush command has the syntax:
route
[
If the
flush
command is specified,
route
will ``flush'' the routing tables of all gateway entries.
When the address family may is specified by any of the
The add command has the following syntax:
route
[
and the other commands have the following syntax:
route
[
where
destination
is the destination host or network,
gateway
is the next-hop intermediary via which packets should be routed.
Routes to a particular host may be distinguished from those to
a network by interpreting the Internet address specified as the
destination
argument.
The optional modifiers
For example,
128.32
is interpreted as
A
destination
of
default
is a synonym for the default route.
For
IPv4
it is
If the destination is directly reachable
via an interface requiring
no intermediary system to act as a gateway, the
The optional
For
AF_INET6,
the
Routes have associated flags which influence operation of the protocols when sending to destinations matched by the routes. These flags may be set (or sometimes cleared) by indicating the following corresponding modifiers:
-xresolve RTF_XRESOLVE - emit mesg on use (for external lookup) -iface ~RTF_GATEWAY - destination is directly reachable -static RTF_STATIC - manually added route -nostatic ~RTF_STATIC - pretend route added by kernel or daemon -reject RTF_REJECT - emit an ICMP unreachable when matched -blackhole RTF_BLACKHOLE - silently discard pkts (during updates) -proto1 RTF_PROTO1 - set protocol specific routing flag #1 -proto2 RTF_PROTO2 - set protocol specific routing flag #2
The optional modifiers
Note that
The optional modifier
The
number
allows multiple FIBs by a comma-separeted list and/or range
specification.
The
"
In a
change
or
add
command where the destination and gateway are not sufficient to specify
the route (as in the ISO case where several interfaces may have the
same address), the
All symbolic names specified for a destination or gateway are looked up first as a host name using gethostbyname(3). If this lookup fails, getnetbyname(3) is then used to interpret the name as that of a network.
The route utility uses a routing socket and the new message types RTM_ADD, RTM_DELETE, RTM_GET, and RTM_CHANGE. As such, only the super-user may modify the routing tables.
FreeBSD provides support for scalable multipath routing. It is activated by default, but can be turned off by setting the net.route.multipath sysctl(8) MIB to 0.
There are multiple route lookup algorithms available. They can be configured by setting net.route.algo.inet.algo for IPv4 and net.route.algo.inet6.algo for IPv6 sysctl(8) MIBs.
A list of available algorithms can be obtained by accessing the following sysctl(8) MIBs net.route.algo.inet.algo_list for IPv4 and net.route.algo.inet6.algo_list for IPv6.
The following algorithms are available:
| radix | Base system radix backend. |
| bsearch | Lockless binary search in a special IP array, tailored for a small FIB with <16 routes. This algorithm is only available for IPv4. |
| radix_lockless | |
| Lockless immutable radix, re-created on every rtable change, tailored for a small FIB with <1000 routes. | |
| dpdk_lpm | DPDK DIR24-8-based lookups, lockless datastructure, optimized for large FIBs. DIR24-8 relies on a large flat lookup table (64 MB with IPv4) which is directly indexed by the more significant portion of the lookup key. In order to use the dpdk_lpm algorithm one or both of the following kernel modules must be loaded via loader.conf(5): |
| dpdk_lpm4.ko | |
| DPDK implementation for IPv4. | |
| dpdk_lpm6.ko | |
| DPDK implementation for IPv6. | |
| dxr | IPv4 only, lockless, compressed lookup structure (below 2.5 Bytes per IPv4 prefix for large BGP FIBs) which easily fits into modern CPU cache hierarchies, lookup throughput scales linearly with CPU cores. Loadable as a kernel module at runtime or via loader.conf(5): |
| fib_dxr.ko | |
The algorithms are selected automatically based on the size of the routing table of the system. They can be changed, but not every algorithm performs best for every FIB size.
route add -net 0.0.0.0/0 192.168.1.1
A shorter version of adding a default route can also be written as:
route add default 192.168.1.1
Add a static route to the 172.16.10.0/24 network via the 172.16.1.1 gateway:
route add -net 172.16.10.0/24 172.16.1.1
Change the gateway of an already established static route in the routing table:
route change -net 172.16.10.0/24 172.16.1.2
Display the route for a destination network:
route show 172.16.10.0
Delete a static route from the routing table:
route delete -net 172.16.10.0/24 172.16.1.2
Remove all routes from the routing table:
route flush
The routing table can be listed with netstat(1).
| add [host amp;| network ] %s: gateway %s flags %x | The specified route is being added to the tables. The values printed are from the routing table entry supplied in the ioctl(2) call. If the gateway address used was not the primary address of the gateway (the first one returned by gethostbyname(3)), the gateway address is printed numerically as well as symbolically. |
| delete [ host amp;| network ] %s: gateway %s flags %x | As above, but when deleting an entry. |
| %s %s done | When the flush command is specified, each routing table entry deleted is indicated with a message of this form. |
| Network is unreachable | An attempt to add a route failed because the gateway listed was not on a directly-connected network. The next-hop gateway must be given. |
| not in table | A delete operation was attempted for an entry which was not present in the tables. |
| routing table overflow | An add operation was attempted, but the system was low on resources and was unable to allocate memory to create the new entry. |
| gateway uses the same route | A change operation resulted in a route whose gateway uses the same route as the one being changed. The next-hop gateway should be reachable through a different route. |
Currently, routes with the
RTF_BLACKHOLE
flag set need to have the gateway set to an instance of the
lo(4)
driver, using the
| ROUTE (8) | June 16, 2023 |
| Main index | Section 8 | 日本語 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
