Sponsored Content
Full Discussion: Netstat question
Top Forums UNIX for Dummies Questions & Answers Netstat question Post 39518 by oombera on Wednesday 20th of August 2003 10:31:02 PM
Old 08-20-2003
The man page for traceroute has an example like the one you mentioned. Go here and scroll near the bottom of the page or just search for * * * on the page using your browser's find function.

Oh, whatever, I'll just post it lol.
Code:
Quote from rt.com:

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

Note  that  the  gateways  12,  14,  15, 16 & 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 run-
ning 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  <= 3) sends an unreachable message using whatever
ttl remains in the original datagram.   Since,  for  gate-
ways,  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  des-
tination) 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  (with  no notice sent to anyone since ICMP's
aren't sent for ICMP's) until we probe with a  ttl  that's
at  least twice the path length.  I.e., rip is really only
7 hops away.  A reply that returns with a ttl of  1  is  a
clue  this  problem exists.  Traceroute prints a "!" after
the time if the ttl is <= 1.  Since vendors ship a lot  of
obsolete  (DEC's  Ultrix,  Sun 3.x) or non-standard (HPUX)
software, expect to see  this  problem  frequently  and/or
take care picking the target host of your probes.


Last edited by oombera; 08-20-2003 at 11:36 PM..
 

10 More Discussions You Might Find Interesting

1. IP Networking

Netstat

Giving netstat command on the prompt gives commands such as localhost.43592 localhost.35237 32768 0 32768 0 TIME_WAIT localhost.43594 localhost.43595 32768 0 32768 0 TIME_WAIT localhost.43598 localhost.35237 32768 0 32768 0 TIME_WAIT... (6 Replies)
Discussion started by: DPAI
6 Replies

2. IP Networking

TIME_WAIT in netstat

Why would I get TIME_WAIT when i netstat a port?? What would be some scenarios of this situation?? (1 Reply)
Discussion started by: eloquent99
1 Replies

3. IP Networking

netstat

Hi what is the command to see the process name/application name along with the port number, connection status ... netstat is not giving process/application name Is there any way to know which application is holding which port? Thanks in advance (3 Replies)
Discussion started by: axes
3 Replies

4. UNIX for Dummies Questions & Answers

netstat not working

Hello, One of the solaris machine in our network is giving an error when the netstat command is executed. soloman:/home/db2admin->netstat ip open: Permission denied can't open mib stream: Bad file number But it works with root. I couldnt' get any useful info during my search in google. ... (2 Replies)
Discussion started by: k_pranava
2 Replies

5. BSD

question about netstat

For FreeBSD I use this command to determine what ports are listenning netstat -an | grep LISTEN is there another way, perhaps another command? (2 Replies)
Discussion started by: edgarvm
2 Replies

6. Solaris

netstat -- what am i looking at?

Greetings to all, Here is a line of output from my netstat command cbp031.904 wdcprodhome.nfsd 98304 0 49640 0 ESTABLISHED The only thing i recognize is the unix machine "cbp031" but what is .904 and all the other data telling me? Thanks in advance. (3 Replies)
Discussion started by: Harleyrci
3 Replies

7. Homework & Coursework Questions

netstat -r question

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: a. Enter “ping compserv1.cs.sunysb.edu”. Recall that ping is implemented using ICMP echo messages. What would be... (3 Replies)
Discussion started by: coolcalin812
3 Replies

8. UNIX for Advanced & Expert Users

Help with netstat

Hi, I want to list the time for how long a secure connections last to my server/blade. i am using netstat command to get the same, but not sure how to get the time for how long connections is being ESTABLISHED. netstat -na | grep 'ESTABLISHED' | grep :443 |awk '{print $4}' | cut -d: -f1 |... (1 Reply)
Discussion started by: Siddheshk
1 Replies

9. Red Hat

netstat

Hi Can any body tell me about TIME_WAIT status meaning in the following command output. # netstat -anp|grep 5000 tcp 0 0 127.0.0.1:50006 0.0.0.0:* LISTEN 5058/ccsd tcp 0 0 0.0.0.0:50008 0.0.0.0:* ... (3 Replies)
Discussion started by: mastansaheb
3 Replies

10. OS X (Apple)

netstat

When running netstat -i from the Command Terminal, It returns with 21 different connections.. The addresses all look like this: ::1 fe80:1::1 10:dd:b1:a5:c4:ba with Network names like Linke#2 fe80::8e2d How can I delve deeper into this to clarify what is going on with my network?... (0 Replies)
Discussion started by: dwfiedler
0 Replies
ARITHMETIC(6)							 BSD Games Manual						     ARITHMETIC(6)

NAME
arithmetic -- quiz on simple arithmetic SYNOPSIS
arithmetic [-o +-x/] [-r range] DESCRIPTION
arithmetic asks you to solve problems in simple arithmetic. Each question must be answered correctly before going on to the next. After every 20 problems, it prints the score so far and the time taken. You can quit at any time by typing the interrupt or end-of-file character. The options are as follows: -o By default, arithmetic asks questions on addition of numbers from 0 to 10, and corresponding subtraction. By supplying one or more of the characters +-x/, you can ask for problems in addition, subtraction, multiplication, and division, respectively. If you give one of these characters more than once, that kind of problem will be asked correspondingly more often. -r If a range is supplied, arithmetic selects the numbers in its problems in the following way. For addition and multiplication, the numbers to be added or multiplied are between 0 and range, inclusive. For subtraction and division, both the required result and the number to divide by or subtract will be between 0 and range. (Of course, arithmetic will not ask you to divide by 0.) The default range is 10. When you get a problem wrong, arithmetic will remember the numbers involved, and will tend to select those numbers more often than others, in problems of the same sort. Eventually it will forgive and forget. arithmetic cannot be persuaded to tell you the right answer. You must work it out for yourself. DIAGNOSTICS
``What?'' if you get a question wrong. ``Right!'' if you get it right. ``Please type a number.'' if arithmetic doesn't understand what you typed. SEE ALSO
bc(1), dc(1) BSD
May 31, 1993 BSD
All times are GMT -4. The time now is 12:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy