Name Date Size #Lines LOC

..06-May-2025-

CHANGESH A D06-May-20254.6 KiB14991

FILESH A D06-May-2025555 3837

FREEBSD-upgradeH A D06-May-20251.3 KiB3926

INSTALLH A D06-May-20254.4 KiB10687

READMEH A D06-May-20251 KiB3022

VERSIONH A D06-May-202525 32

as.cH A D06-May-20255.3 KiB223155

as.hH A D06-May-20251.6 KiB363

findsaddr-socket.cH A D06-May-20255.3 KiB222148

findsaddr.hH A D06-May-20251.3 KiB241

ifaddrlist.cH A D06-May-20255.1 KiB175116

ifaddrlist.hH A D06-May-20251.3 KiB305

mean.awkH A D06-May-2025221 1311

median.awkH A D06-May-2025545 3026

rip_output.cH A D06-May-20251.6 KiB7456

traceroute.8H A D06-May-202514.7 KiB407406

traceroute.cH A D06-May-202555.3 KiB2,1601,629

traceroute.hH A D06-May-20251.3 KiB272

README

1@(#) $Id: README,v 1.9 2000/09/16 05:32:01 leres Exp $ (LBL)
2
3TRACEROUTE 1.4
4Lawrence Berkeley National Laboratory
5Network Research Group
6[email protected]
7ftp://ftp.ee.lbl.gov/traceroute.tar.gz
8
9Traceroute is a system administrators utility to trace the route
10ip packets from the current system take in getting to some
11destination system.  See the comments at the front of the
12program for a description of its use.
13
14This program uses raw ip sockets and must be run as root (or installed
15setuid to root).
16
17A couple of awk programs to massage the traceroute output are
18included.  "mean.awk" and "median.awk" compute the mean and median time
19to each hop, respectively.  I've found that something like
20
21    traceroute -q 7 foo.somewhere >t
22    awk -f median.awk t | xgraph
23
24can give you a quick picture of the bad spots on a long path (median is
25usually a better noise filter than mean).
26
27Problems, bugs, questions, desirable enhancements, source code
28contributions, etc., should be sent to the email address
29"[email protected]".
30