<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NamHuy &#187; traceroute</title>
	<atom:link href="http://namhuy.org/blog/tag/traceroute/feed/" rel="self" type="application/rss+xml" />
	<link>http://namhuy.org/blog</link>
	<description>Includes news, help, tutorials, programming, tips and how-to guides for Linux, UNIX, and BSD</description>
	<lastBuildDate>Fri, 20 Jan 2012 19:37:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ubuntu Networking for Basic and Advanced Users</title>
		<link>http://namhuy.org/blog/2010/09/18/ubuntu-networking-for-basic-and-advanced-users/</link>
		<comments>http://namhuy.org/blog/2010/09/18/ubuntu-networking-for-basic-and-advanced-users/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 22:04:43 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[gateway]]></category>
		<category><![CDATA[ifconfig]]></category>
		<category><![CDATA[netmask]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[traceroute]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=121</guid>
		<description><![CDATA[Configure Network Interface Using Command-Line You can configure a network interface from the command line using the networking utilities. You configure your network client hosts with the command line by using commands to change your current settings or by editing &#8230; <a href="http://namhuy.org/blog/2010/09/18/ubuntu-networking-for-basic-and-advanced-users/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Configure Network Interface Using Command-Line</strong></p>
<p>You can configure a network interface from the command line using the networking utilities. You configure your network client hosts with the command line by using commands to change your current settings or by editing a number of system files.</p>
<p><strong>Configuring DHCP address for your network card</strong></p>
<p>If you want to configure DHCP address you need to edit the /etc/network/interfaces and you need to enter the following lines replace eth0 with your network interface card</p>
<p>sudo vi /etc/network/interfaces</p>
<p># The primary network interface – use DHCP to find our address<br />
auto eth0<br />
iface eth0 inet dhcp</p>
<p><strong>Configuring Static IP address for your network card</strong></p>
<p>If you want to configure Static IP address you need to edit the /etc/network/interfaces and you need to enter the following lines replace eth0 with your network interface card</p>
<p>sudo vi /etc/network/interfaces</p>
<p># The primary network interface<br />
auto eth0<br />
iface eth0 inet static<br />
address 192.168.3.90<br />
gateway 192.168.3.1<br />
netmask 255.255.255.0<br />
network 192.168.3.0<br />
broadcast 192.168.3.255</p>
<p>After entering all the details you need to restart networking services using the following command</p>
<p>sudo /etc/init.d/networking restart</p>
<p><strong>Setting up Second IP address or Virtual IP address in Ubuntu</strong></p>
<p>If you are a server system administrator or normal user some time you need to assign a second ipaddress to your Ubuntu machine.For this you need to edit the /etc/network/interfaces file and you need to add the following syntax.Below one is the only example you need to chnage according to your ip address settings</p>
<p>sudo vi /etc/network/interfaces</p>
<p>auto eth0:1<br />
iface eth0:1 inet static<br />
address 192.168.1.60<br />
netmask 255.255.255.0<br />
network x.x.x.x<br />
broadcast x.x.x.x<br />
gateway x.x.x.x</p>
<p>You need to enter all the details like address,netmask,network,broadcast and gateways values after entering all the values save this file and you need to restart networking services in debian using the following command to take effect of our new ipaddress.</p>
<p>After entering all the details you need to restart networking services using the following command</p>
<p>sudo /etc/init.d/networking restart</p>
<p><strong>Setting your ubuntu stytem hostname</strong></p>
<p>Setting up your hostname upon a ubuntu installation is very straightforward. You can directly query, or set, the hostname with the hostname command.</p>
<p>As an user you can see your current hostname with</p>
<p>sudo /bin/hostname</p>
<p><em>Example</em></p>
<p>To set the hostname directly you can become root and run</p>
<p>sudo /bin/hostname newname</p>
<p>When your system boots it will automatically read the hostname from the file /etc/hostname</p>
<p>If you want to know more about how to setup host name check here</p>
<p><strong>Setting up DNS</strong></p>
<p>When it comes to DNS setup Ubuntu doesn’t differ from other distributions. You can add hostname and IP addresses to the file /etc/hosts for static lookups.</p>
<p>To cause your machine to consult with a particular server for name lookups you simply add their addresses to /etc/resolv.conf.</p>
<p>For example a machine which should perform lookups from the DNS server at IP address 192.168.3.2 would have a resolv.conf file looking like this</p>
<p>sudo vi /etc/resolv.conf</p>
<p>enter the following details</p>
<p>search test.com<br />
nameserver 192.168.3.2</p>
<p><strong>Network Troubleshooting Tips</strong></p>
<p>Networking is sometimes considered to be complex, and hard to troubleshoot and manage. However, Linux provides you with Some tools to figure out exactly what’s going wrong on your network, and how to fix it.Here we are going see some tools and how to check the network connectivity.</p>
<p><strong>Ping</strong></p>
<p>Ping is a computer network tool used to test whether a particular host is reachable across an IP network. Ping works by sending ICMP “echo request” packets to the target host and listening for ICMP “echo response” replies (sometimes dubbed “Pong!” as an analog from the Ping Pong table tennis sport.) Using interval timing and response rate, ping estimates the round-trip time (generally in milliseconds although the unit is often omitted) and packet loss (if any) rate between hosts.</p>
<p>This is very basic and powerful tool to check Internet connection</p>
<p><em>Example</em></p>
<p>ping -c 4 google.com</p>
<p>-c option is used to pass how many packets you’re sending</p>
<p>If everything working file you should get reply looks like below</p>
<p>Pinging www.l.google.com [64.233.183.103] with 32 bytes of data:</p>
<p>Reply from 64.233.183.103: bytes=32 time=12ms TTL=244<br />
Reply from 64.233.183.103: bytes=32 time=12ms TTL=244<br />
Reply from 64.233.183.103: bytes=32 time=12ms TTL=244<br />
Reply from 64.233.183.103: bytes=32 time=12ms TTL=244</p>
<p>Ping statistics for 64.233.183.103:<br />
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),<br />
Approximate round trip times in milli-seconds:<br />
Minimum = 12ms, Maximum = 12ms, Average = 12ms</p>
<p><strong>Traceroute</strong></p>
<p>traceroute is a computer network tool used to determine the route taken by packets across an IP network. An IPv6 variant, traceroute6, is also widely available.Very useful to trace IP packets.</p>
<p><em>Example</em></p>
<p>traceroute google.com</p>
<p><strong>ifconfig</strong></p>
<p>The Unix command ifconfig can function as a tool to configure a network interface for TCP/IP from the command line interface (CLI).This is another easy tool to see if your interface is actually loading correctly.</p>
<p><em>Example</em></p>
<p>ifconfig</p>
<p>eth0 Link encap:Ethernet HWaddr 00:0A:E6:C6:07:85<br />
inet addr:132.18.0.16 Bcast:132.18.0.255 Mask:255.255.255.0<br />
inet6 addr: fe80::20a:e6ff:fec6:785/64 Scope:Link<br />
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1<br />
RX packets:18458 errors:0 dropped:0 overruns:0 frame:0<br />
TX packets:8982 errors:0 dropped:0 overruns:0 carrier:0<br />
collisions:0 txqueuelen:1000<br />
RX bytes:4015093 (3.8 MiB) TX bytes:1449812 (1.3 MiB)<br />
Interrupt:10 Base address:0xd400<br />
<strong><br />
Route</strong></p>
<p>This is very useful to check routing config<br />
<em><br />
Example</em></p>
<p>route -n</p>
<p><strong>Netstat</strong></p>
<p>If you want to see Routing Tables,all open ports,all listen ports</p>
<p>netstat -nr</p>
<p>-n means return numeric output (ie, IP address instead of hostname)</p>
<p>-r means print the routing table</p>
<p>find all open ports</p>
<p>netstat -a</p>
<p>find listening ports</p>
<p>netstat -l</p>
<p>http://www.debianadmin.com/ubuntu-networking-for-basic-and-advanced-users.html</p>
<div class="bottomcontainerBox" style="background-color:#F0F4F9;">
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnamhuy.org%2Fblog%2F2010%2F09%2F18%2Fubuntu-networking-for-basic-and-advanced-users%2F&amp;layout=button_count&amp;show_faces=false&amp;width=80&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=80px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://namhuy.org/blog/2010/09/18/ubuntu-networking-for-basic-and-advanced-users/"></g:plusone>
			</div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://namhuy.org/blog/2010/09/18/ubuntu-networking-for-basic-and-advanced-users/"  data-text="Ubuntu Networking for Basic and Advanced Users" data-count="horizontal">Tweet</a>
			</div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://namhuy.org/blog/2010/09/18/ubuntu-networking-for-basic-and-advanced-users/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div>]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2010/09/18/ubuntu-networking-for-basic-and-advanced-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using traceroute on ubuntu terminal</title>
		<link>http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/</link>
		<comments>http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 20:22:40 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[traceroute]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/</guid>
		<description><![CDATA[The traceroute (linux) tracert (windows) utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute displays the IP number and host name (if possible) of the machines along the route taken &#8230; <a href="http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The traceroute (linux) tracert (windows) utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute displays the IP number and host name (if possible) of the machines along the route taken by the packets. Traceroute is used as a network debugging tool. If you&#8217;re having network connectivity problems, traceroute will show you where the trouble is coming from along the route.</p>
<p>open a terminal and enter:<br />
1. <strong>sudo apt-get install traceroute</strong> (to install the packages you need)<br />
2. <strong>traceroute domain</strong> or <strong>IP</strong> (<strong>traceroute namhuy.org</strong> or <strong>traceroute yourdomain.com</strong></p>
<h4><strong>NAME</strong></h4>
<pre>       traceroute - print route IP packets follow going to a remote host</pre>
<h4><strong>SYNOPSIS</strong></h4>
<pre>       <strong>traceroute</strong> [ <span style="text-decoration: underline;">options</span> ] <span style="text-decoration: underline;">host</span> [ <span style="text-decoration: underline;">size</span> ]</pre>
<h4><strong>DESCRIPTION</strong></h4>
<pre>       Traceroute  attempts  to  trace  the route an IP packet follows to some
       internet host.  It finds  out  intermediate  hops  by  launching  probe
       packets  with a small time-to-live (TTL) value, and then listens for an
       ICMP reply of <span style="text-decoration: underline;">time</span> <span style="text-decoration: underline;">exceeded</span> from an  intermediate  router.   Traceroute
       starts  probing  with a TTL of one, and increments by one until an ICMP
       <span style="text-decoration: underline;">port</span> <span style="text-decoration: underline;">unreachable</span> reply is received.  This means the  probe  either  got
       through to <span style="text-decoration: underline;">host</span>, or hit the maximum TTL.

       <span style="text-decoration: underline;">host</span>  is  the only mandatory argument, and specifies the target system,
       either as an IP address, or as a host name.  Parameter <span style="text-decoration: underline;">size</span>  determines
       the size of the probe packets in bytes.</pre>
<h4><strong>OPTIONS</strong></h4>
<pre>       <strong>-a</strong>     Abort after 10 consecutive hops without an answer.

       <strong>-d</strong>     Turn  on  socket level debugging.  This option is only available
              to the super-user (root).

       <strong>-m</strong> <span style="text-decoration: underline;">max_ttl</span>
              Set the maximum time-to-live (TTL) value that will be  used  for
              probing.  Hosts that are farther than <span style="text-decoration: underline;">max_ttl</span> hops away will not
              be traced (default 30).

       <strong>-n</strong>     Report only IP addresses, but no hostnames.

       <strong>-p</strong> <span style="text-decoration: underline;">port</span>
              Start  probing  at  an  alternate  UDP  port  (default   33434).
              Traceroute by default sends out UDP packets with increasing port
              numbers starting at <span style="text-decoration: underline;">port</span>, and listens for ICMP  errors  returned
              from  remote  hosts.  This scheme only works if there are no UDP
              servers listening on the probed hosts in the range from <span style="text-decoration: underline;">port</span>  to
              <span style="text-decoration: underline;">port</span> <span style="text-decoration: underline;">+</span> <span style="text-decoration: underline;">max_ttl</span>.

       <strong>-q</strong> <span style="text-decoration: underline;">n</span>   Send  out  <span style="text-decoration: underline;">n</span>  queries  for  each  TTL  (each  intermediate host)
              (default 3).

       <strong>-r</strong>     Set Dont Route option, advising routers to drop the packets.  In
              other words, only probe within the local subnet.

       <strong>-s</strong> <span style="text-decoration: underline;">addr</span>
              Set  source address of outgoing packets to <span style="text-decoration: underline;">addr</span>, given either as
              numeric IP address, or as hostname.

       <strong>-t</strong> <span style="text-decoration: underline;">tos</span> Set  the  type-of-service  field  in  the  outgoing  IP  packets
              (default 0).  <span style="text-decoration: underline;">tos</span> is valid in the range of 0 to 255.

       <strong>-u</strong>     Use microsecond timestamps.

       <strong>-v</strong>     Turn on verbose output.

       <strong>-w</strong> <span style="text-decoration: underline;">wait</span>
              Set  timeout for replies to <span style="text-decoration: underline;">wait</span> seconds (default 5 sec).  If no
              ICMP reply is received within <span style="text-decoration: underline;">wait</span> after a packet has been  sent
              out, the probe is considered as failed.

       <strong>-A</strong>     Report  the Autonomous System Number (ASN) at each hop.  Roughly
              speaking, the ASN tells which administration a router is subject
              to.   See  RFC 1930 for all the details, and section ENVIRONMENT
              below on how to fine tune the lookup.

       <strong>-I</strong> <span style="text-decoration: underline;">proto</span>
              Send out probe packets using IP protocol <span style="text-decoration: underline;">proto</span>, given either  as
              name  or  numerical  value  (default  UDP).   Some features like
              parallel probing are only available when using UDP.

       <strong>-M</strong>     Determine the maximum transfer unit (MTU) along the  path.   See
              RFC 1191 for details.

       <strong>-O</strong>     At each hop, perform a DNS lookup and report the owner as listed
              in the SOA record.

       <strong>-P</strong>     Send out multiple probes in  parallel.   The  default  behaviour
              probes  each  hop  in turn, starting from the nearest.  Parallel
              mode is faster, but less reliable.  Many routers rate limit ICMP
              packets  from a single host, so dropouts are much more likely in
              parallel mode, and need not indicate a networking problem.

       <strong>-Q</strong>     Report detailed statistics on the round trip times at  each  hop
              (minimum / average +- standard deviation / maximum).  The values
              are given in milli seconds.

       <strong>-S</strong> <span style="text-decoration: underline;">min_ttl</span>
              Set the time-to-live (TTL) value in the first packet sent out to
              <span style="text-decoration: underline;">min_ttl</span> (default 1).  This option determines the first (nearest)
              host that will show up in the trace.

       <strong>-T</strong> <span style="text-decoration: underline;">t</span>   End each line with <span style="text-decoration: underline;">t</span> instead of a newline.  This comes in handy,
              for example, when including traceroute’s output in an HTML page.

       <strong>-U</strong>     Move on to probing the next hop as soon as the first  successful
              probe arrives.

       <strong>-$</strong>     Send  out  nothing  but a single ping with a very large time-to-
              live.</pre>
<h4><strong>DIAGNOSTICS</strong></h4>
<pre>       Usually the round trip time is printed for  each  probe  at  each  hop.
       Special symbols denote when something went wrong:

       <strong>*</strong>      No reply received within <span style="text-decoration: underline;">wait</span> seconds.

       <strong>!</strong>      Reply arrived with a time-to-live value of one or lower.

       <strong>!H</strong>     Received   a   reply   telling  that  the  destination  host  is
              unreachable.

       <strong>!N</strong>     Received  a  reply  telling  that  the  destination  network  is
              unreachable.

       <strong>!P</strong>     Received   a   reply   telling  that  the  desired  protocol  is
              unavailable.

       <strong>!S</strong>     Received a reply telling that  source  routing  failed.   Should
              never occur--unless the probed gateway is screwed.

       <strong>!F</strong>     Received  a  reply telling that fragmentation is needed.  Should
              never occur--unless the probed gateway is screwed.</pre>
<h4><strong>EXAMPLES</strong></h4>
<pre>       (This section is taken almost verbatim from the  documentation  in  the
       traceroute sourcecode.)

              [yak 71]% traceroute nis.nsf.net.
              traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet
               1  helios.ee.lbl.gov (128.3.112.1)  19 ms  19 ms  0 ms
               2  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  39 ms  19 ms
               3  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  39 ms  19 ms
               4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  39 ms  40 ms  39 ms
               5  ccn-nerif22.Berkeley.EDU (128.32.168.22)  39 ms  39 ms  39 ms
               6  128.32.197.4 (128.32.197.4)  40 ms  59 ms  59 ms
               7  131.119.2.5 (131.119.2.5)  59 ms  59 ms  59 ms
               8  129.140.70.13 (129.140.70.13)  99 ms  99 ms  80 ms
               9  129.140.71.6 (129.140.71.6)  139 ms  239 ms  319 ms
              10  129.140.81.7 (129.140.81.7)  220 ms  199 ms  199 ms
              11  nic.merit.edu (35.1.1.48)  239 ms  239 ms  239 ms

       Note  that  lines 2 &amp; 3 are the same.  This is due to a buggy kernel on
       the 2nd hop system -- lbl-csam.arpa -- that  forwards  packets  with  a
       zero TTL.

       A more interesting example is:

              [yak 72]% traceroute allspice.lcs.mit.edu.
              traceroute to allspice.lcs.mit.edu (18.26.0.115), 30 hops max
               1  helios.ee.lbl.gov (128.3.112.1)  0 ms  0 ms  0 ms
               2  lilac-dmc.Berkeley.EDU (128.32.216.1)  19 ms  19 ms  19 ms
               3  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  19 ms  19 ms
               4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  19 ms  39 ms  39 ms
               5  ccn-nerif22.Berkeley.EDU (128.32.168.22)  20 ms  39 ms  39 ms
               6  128.32.197.4 (128.32.197.4)  59 ms  119 ms  39 ms
               7  131.119.2.5 (131.119.2.5)  59 ms  59 ms  39 ms
               8  129.140.70.13 (129.140.70.13)  80 ms  79 ms  99 ms
               9  129.140.71.6 (129.140.71.6)  139 ms  139 ms  159 ms
              10  129.140.81.7 (129.140.81.7)  199 ms  180 ms  300 ms
              11  129.140.72.17 (129.140.72.17)  300 ms  239 ms  239 ms
              12  * * *
              13  128.121.54.72 (128.121.54.72)  259 ms  499 ms  279 ms
              14  * * *
              15  * * *
              16  * * *
              17  * * *
              18  ALLSPICE.LCS.MIT.EDU (18.26.0.115)  339 ms  279 ms  279 ms

       (I start to see why I’m having so much trouble with mail to MIT.)  Note
       that the gateways 12, 14, 15, 16 &amp; 17 hops away either don’t send  ICMP
       "time exceeded" messages or send them with a TTL too small to reach us.
       14 - 17 are running the MIT C Gateway  code  that  doesn’t  send  "time
       exceeded"s.  God only knows what’s going on with 12.

       The  silent  gateway  12 in the above may be the result of a bug in the
       4.[23]BSD network code (and its derivatives):  4.x (x &lt;=  3)  sends  an
       unreachable   message  using  whatever  TTL  remains  in  the  original
       datagram.  Since, for gateways, the remaining TTL  is  zero,  the  icmp
       "time  exceeded" is guaranteed to not make it back to us.  The behavior
       of this bug is  slightly  more  interesting  when  it  appears  on  the
       destination system:

               1  helios.ee.lbl.gov (128.3.112.1)  0 ms  0 ms  0 ms
               2  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  19 ms  39 ms
               3  lilac-dmc.Berkeley.EDU (128.32.216.1)  19 ms  39 ms  19 ms
               4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  39 ms  40 ms  19 ms
               5  ccn-nerif35.Berkeley.EDU (128.32.168.35)  39 ms  39 ms  39 ms
               6  csgw.Berkeley.EDU (128.32.133.254)  39 ms  59 ms  39 ms
               7  * * *
               8  * * *
               9  * * *
              10  * * *
              11  * * *
              12  * * *
              13  rip.Berkeley.EDU (128.32.131.22)  59 ms !  39 ms !  39 ms !

       Notice  that  there are 12 "gateways" (13 is the final destination) and
       exactly the last half of them are "missing".  What’s  really  happening
       is  that  rip  (a  Sun-3  running  Sun OS3.5) is using the TTL from our
       arriving datagram as the TTL in its icmp reply.   So,  the  reply  will
       time  out  on the return path until we probe with a TTL that’s at least
       twice the path length.  I.e., rip is really only 7 hops away.</pre>
<h4><strong>ENVIRONMENT</strong></h4>
<pre>       The lookup process of Autonomous System Numbers  (ASN,  see  option  <span style="text-decoration: underline;">-A</span>
       above) can be configured via several environment variables. By default,
       traceroute issues a whois query on the Routing Assets  Database  (RADB)
       at <span style="text-decoration: underline;">whois.ra.net</span>, which should be sufficient in most cases.  Chances are
       that you don’t want to change anything here, unless you know very  well
       what you are doing.

       The  contents of the following environment variables are limited to 100
       characters at most.  Any trailing characters are silently ignored.   If
       unset, compiled-in defaults are used.

       <strong>RA_SERVER</strong>
              Server to issue a RADB whois query on, given either as hostname,
              or dotted-quad IP address.  Defaults to <span style="text-decoration: underline;">whois.ra.net</span>.

       <strong>RA_SERVICE</strong>
              TCP port to connect to on the whois server, given either as name
              or port number.  Defaults to <span style="text-decoration: underline;">whois</span>.

       The following variables determine how traceroute attempts to extract an
       ASN from the whois reply.

       <strong>DATA_DELIMITER</strong>
              Each line containing an ASN starts with this tag.   Defaults  to
              <span style="text-decoration: underline;">origin:</span>.

       The  RADB  may  contain more than one entry for a given IP address.  To
       find out the correct entry, traceroute has to look up the  subnet  that
       is the most specific to this IP.

       <strong>ROUTE_DELIMITER</strong>
              Each  line  containing  a  subnet  entry  starts  with this tag.
              Defaults to <span style="text-decoration: underline;">route:</span>.

       <strong>PREFIX_DELIMITER</strong>
              The network IP  and  the  prefix  are  separated  by  this  tag.
              Defaults to <span style="text-decoration: underline;">/</span>.</pre>
<h4><strong>NOTES</strong></h4>
<pre>       This  is  not  the  standard  version of traceroute (as included in the
       netkit package), but an alternative implementation maintained  by  Ehud
       Gavron.  It  is  based on the Van Jacobson/BSD traceroute, and includes
       additional features  including  AS  lookup,  TOS  support,  microsecond
       timestamps,  path  MTU discovery, and parallel probing.  It is known as
       trACESroute or traceroute-nanog.</pre>
<h4><strong>BUGS</strong></h4>
<pre>       Please send any bugs to Ehud Gavron &lt;<a href="mailto:gavron@wetwork.net">gavron@wetwork.net</a>&gt; and/or  report
       them      to      the     Debian     Bug     Tracking     System     at
       <span style="text-decoration: underline;"><a href="http://bugs.debian.org/traceroute-nanog">http://bugs.debian.org/traceroute-nanog</a></span>.</pre>
<h4><strong>AUTHORS</strong></h4>
<pre>       TrACESroute is maintained by Ehud Gavron &lt;<a href="mailto:ehud.gavron@login.com">ehud.gavron@login.com</a>&gt;.

       The first man page was written by Brian Russo for use with  Debian/GNU,
       and was later rewritten by Daniel Kobras &lt;<a href="mailto:kobras@debian.org">kobras@debian.org</a>&gt; and Martin
       A.  Godisch  &lt;<a href="mailto:martin@godisch.de">martin@godisch.de</a>&gt;.   Some  parts  are  taken  from   the
       documentation  in the source code.  Still, this man page may be used by
       others.</pre>
<div class="bottomcontainerBox" style="background-color:#F0F4F9;">
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fnamhuy.org%2Fblog%2F2007%2F08%2F13%2Fusing-traceroute-on-ubuntu-terminal%2F&amp;layout=button_count&amp;show_faces=false&amp;width=80&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=80px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/"></g:plusone>
			</div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/"  data-text="using traceroute on ubuntu terminal" data-count="horizontal">Tweet</a>
			</div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div>]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2007/08/13/using-traceroute-on-ubuntu-terminal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.338 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-04 18:27:52 -->
<!-- Compression = gzip -->
