diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-07-10 16:29:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-07-10 16:29:00 +0000 |
commit | 5c58d283bbd71db2a43379fc2b804f6c138cf35e (patch) | |
tree | 6dd8028a88bf560831a117cba5f59709237055e9 /applets | |
parent | 91b84603d3c3f3911bee87c8ad02c06cb8fc95ae (diff) | |
download | busybox-w32-5c58d283bbd71db2a43379fc2b804f6c138cf35e.tar.gz busybox-w32-5c58d283bbd71db2a43379fc2b804f6c138cf35e.tar.bz2 busybox-w32-5c58d283bbd71db2a43379fc2b804f6c138cf35e.zip |
A traceroute applet from vodz. This could probably be slimmed down,
but will do for now...
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/applets/usage.h b/applets/usage.h index a19f0fe22..70dafd81c 100644 --- a/applets/usage.h +++ b/applets/usage.h | |||
@@ -1593,6 +1593,28 @@ | |||
1593 | "$ echo "gdkkn vnqkc" | tr [a-y] [b-z]\n" \ | 1593 | "$ echo "gdkkn vnqkc" | tr [a-y] [b-z]\n" \ |
1594 | "hello world\n" | 1594 | "hello world\n" |
1595 | 1595 | ||
1596 | #define traceroute_trivial_usage \ | ||
1597 | "[-dnrv] [-m max_ttl] [-p port#] [-q nqueries]\n\ | ||
1598 | [-s src_addr] [-t tos] [-w wait] host [data size]" | ||
1599 | #define traceroute_full_usage \ | ||
1600 | "trace the route ip packets follow going to \"host\"\n" \ | ||
1601 | "Options:\n" \ | ||
1602 | "\t-d\tset SO_DEBUG options to socket\n" \ | ||
1603 | "\t-n\tPrint hop addresses numerically rather than symbolically\n" \ | ||
1604 | "\t-r\tBypass the normal routing tables and send directly to a host\n" \ | ||
1605 | "\t-v\tVerbose output\n" \ | ||
1606 | "\t-m max_ttl\tSet the max time-to-live (max number of hops)\n" \ | ||
1607 | "\t-p port#\tSet the base UDP port number used in probes\n" \ | ||
1608 | "\t\t(default is 33434)\n" \ | ||
1609 | "\t-q nqueries\tSet the number of probes per ``ttl'' to nqueries\n" \ | ||
1610 | "\t\t(default is 3)\n" \ | ||
1611 | "\t-s src_addr\tUse the following IP address as the source address\n" \ | ||
1612 | "\t-t tos\tSet the type-of-service in probe packets to the following value\n" \ | ||
1613 | "\t\t(default 0)\n" \ | ||
1614 | "\t-w wait\tSet the time (in seconds) to wait for a response to a probe\n" \ | ||
1615 | "\t\t(default 3 sec.)." | ||
1616 | |||
1617 | |||
1596 | #define true_trivial_usage \ | 1618 | #define true_trivial_usage \ |
1597 | "" | 1619 | "" |
1598 | #define true_full_usage \ | 1620 | #define true_full_usage \ |