jrf
6867af7aad
This addresses PR 17613 when certain methods of adding routes would
...
muck up the routing tables. The patch was submitted by Quentin Garnier
<netbsd@quatriemek.com> and tweaked a little after it was reviewed
by Christos Zoulas <christos@netbsd.org>. Final change/commit approved
by Christos.
2003-04-21 13:42:50 +00:00
jrf
dee179a37f
Made a note in the code about the -d and -d options brought up in
...
PR 18674. Thanks to Chris Jones for pointing it out.
2003-04-03 02:39:50 +00:00
wiz
a9f7f104b6
Split .Nm with other macro arguments on two lines.
2003-02-25 07:53:39 +00:00
itojun
e33246f5c7
correct prefixlen handling for IPv4.
2002-10-18 00:21:23 +00:00
itojun
3c30f46849
Make prefixlen check to make sure its argument is present before deref
...
from openbsd
2002-10-18 00:16:25 +00:00
wiz
09cbac4e7f
New sentence, new line. From Robert Elz.
2002-10-03 15:41:44 +00:00
grant
6742cb1812
sweep of errx/warnx, remove unnecessary trailing \n
2002-07-20 08:36:17 +00:00
itojun
d24b68cd4f
permit DNS names to address portion. they will be considered as RTF_HOST
...
if specified as destination (as there's no getnetbyname in IPv6).
2002-06-10 21:18:53 +00:00
itojun
a1662dac72
if we're unsure about prefixlen, don't say "128".
2002-06-05 22:11:28 +00:00
itojun
65829ef6aa
more correct ion to RTF_HOST handling.
2002-06-05 22:10:44 +00:00
itojun
fff7bbceef
do not have -prefixlen 128 on RTF_HOST.
...
From: Dawid Szymanski <dawszy@arhea.net>
2002-06-04 22:20:00 +00:00
itojun
e534b69c1d
raise RTF_HOST if destination is a host (/128). from ume
2002-05-20 23:01:32 +00:00
christos
69da3546f5
PR/15672: Love: route monitor missing info
2002-02-21 15:44:25 +00:00
hubertf
85cc2d10d5
the modifiers (-inet6, ...) do not only affect the behaviour of "flush",
...
but at least also of "get", so make the wording a bit more general.
2002-02-08 13:32:32 +00:00
ross
dc5571b22e
Generate <>& symbolically. I'm avoiding .../dist/... directories for now.
2002-02-08 01:21:55 +00:00
wiz
7dd6e69db4
Punctuation fix, sort sections, sort SEE ALSO.
2001-11-16 12:08:49 +00:00
christos
4c4a8c2fb6
Make route exit with a non-zero error code when operations to the routing
...
socket fails. eg, running route add 1.2.3.4 5.6.7.8 as non root.
2001-11-15 21:25:08 +00:00
lukem
fd87fe6aaa
fix -Wshadow warnings
2001-11-02 03:51:48 +00:00
atatat
cdc6282274
Provide a short output format for the get command that only prints the
...
address corresponding to RTA_GATEWAY, or nothing if it doesn't exist.
Modify the exit value of route depending on this, so that one can do
stuff like:
#!/bin/sh
gw=`route -sn get default 2>/dev/null`
if [ -z "$gw" ]; then
echo no default route
exit 1
fi
ping -w1 -c1 $gw >/dev/null 2>&1
if ! route -sn get $gw >/dev/null; then
echo default gateway not responding
exit 1
fi
echo default gateway is at $gw
2001-10-24 18:40:16 +00:00
atatat
2e4d1a174e
Print a R on reject routes to indicate that they're not normal routes,
...
and check netmask (or prefix) length as well as the destination
address when determining if a route is a "default" or not. This means
that the output from 'route show' will no longer say:
Internet6:
Destination Gateway Flags
default localhost UG
default localhost UG
but instead
Internet6:
Destination Gateway Flags
::/104 localhost UGR
::/96 localhost UGR
which makes much more sense.
2001-10-24 16:05:06 +00:00
christos
b77fb2a456
PR/14286: reed@reedmedia.net: Explain default.
2001-10-18 13:42:32 +00:00
bjh21
6ef5a92fbb
When dumping the routing table, use getnameinfo() to print link-layer
...
addresses rather than doing it ourselves and falling back to link_ntoa().
2001-10-06 18:32:45 +00:00
itojun
d615372573
off-by-one error in -prefixlen arg validation (do not permit 129 on IPv6)
2001-07-20 08:31:55 +00:00
itojun
507c97b62e
make prefixlen work on IPv4 too
2001-07-20 08:28:25 +00:00
bad
4cda42fdd0
The way pmsg_addrs() is used requires that it always prints a newline and
...
flushes stdout before returning.
Previously the decoded output for a message was stuck in stdio buffers until
the next arrived.
2001-07-16 17:22:07 +00:00
wiz
d12a675883
Fix Nd and some whitespace and punctuation.
2001-06-05 12:44:43 +00:00
wiz
73f545bb5b
Drop arguments of .Os.
2001-06-05 11:22:41 +00:00
manu
e0e227f2a3
Added a few examples and a reference to sysctl to enable IP forwarding
...
Approved by Christos
2001-04-27 19:33:06 +00:00
cgd
8a986b2e96
convert to use getprogname()
2001-02-19 22:48:57 +00:00
christos
55692aa513
remove nested externs.
2001-02-04 21:09:07 +00:00
itojun
08087050ed
support -cloned command line flag.
...
i don't think anyone ever going to use it.
2001-01-27 04:53:13 +00:00
itojun
6a04f28b13
regen
2001-01-27 04:51:25 +00:00
itojun
16595a06cf
add a keyword, cloned
2001-01-27 04:51:17 +00:00
itojun
fee00b1a78
mark cloned routes with RTF_CLONED. present it with netstat -r by "c".
...
let static routes overwrite cloned routes, as cloned routes can come back again
if necessary. behavior same as freebsd/bsdi, code partially from bsdi42.
(NRL rt->rt_parent was not added)
should fix PR 11916 and maybe some other PRs with ARP behavior.
recompilation of usr.sbin/route6d is suggested.
2001-01-27 04:49:31 +00:00
itojun
ad678343e6
support RTF_BLACKHOLE.
...
XXX route show is total duplicate of netstat -r, we need to either remove
route show, or share the same source code, otherwise maintenance cost
bites (and is biting) us
2001-01-27 04:26:49 +00:00
itojun
d9196c1881
remove use of uninitialized route (struct ortentry).
...
it seems that the bug was born during 4.3reno -> 4.4Lite1 transition.
2001-01-27 03:20:29 +00:00
is
9979da6cbb
Format string cleanups by Bill Sommerfeld.
2000-10-10 20:24:49 +00:00
itojun
d72739fb8a
on "route monitor", print RTM_IFANNOUNCE, RTM_IFINFO (new #), and others.
2000-10-10 09:35:05 +00:00
sommerfeld
16bad8ee40
Allow INET6 to be used with SMALL without undefined symbols
2000-05-04 18:29:34 +00:00
itojun
9de652ed48
use scoped notation for link-local multicast too.
2000-04-20 12:25:08 +00:00
itojun
bfbec7cf43
support extended scoped address notation (fe80::1%de0).
...
it hides implementation detail (embedded ifid) from the users.
2000-04-20 12:08:50 +00:00
itojun
f816cfa0ca
don't make "-prefixlen 64" a default in -inet6 case. the past behavior
...
was not compatible with past practice ("route get" did not work right).
sync with recent KAME.
1999-12-03 05:43:00 +00:00
drochner
85cbf55d16
Since our gcc doesn't warn about NULL format strings anymore, we can
...
fix the incorrect err(1, "%s", "") et al.
Closes PR bin/7592 by cgd.
1999-11-09 15:06:30 +00:00
sommerfeld
a5e1bf5368
Display local address associated with route (if any) in "route get".
1999-11-01 13:32:38 +00:00
itojun
0a69640f14
remove false fix for routing socket align issue.
1999-09-03 04:17:19 +00:00
itojun
65b4964f1e
fix alignment issue in routing socket data, on 64bit arch (i.e. alpha).
...
sockaddrs are packed with ROUNDUP() in sys/net/rtsock.c so userland
programs needs to follow that.
PR: 8179
1999-09-03 03:47:39 +00:00
itojun
9e2ce6114e
tweak IPv6 case so that "route show" does not truncate numeric IPv6 address.
...
PR: 7955
1999-07-17 06:51:27 +00:00
itojun
d4aa58bc6c
avoid using constants, use #define'd values.
1999-07-12 20:46:15 +00:00
mjacob
dd514ad75e
Incorrect integration. ctime takes a time_t value, not a long.
1999-07-06 23:15:48 +00:00
itojun
9a6abc8c5d
s/CFLAGS/CPPFLAGS/ for -D and -I.
1999-07-03 06:26:25 +00:00