LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to measure delay in NAT-PT client and ipv6 host. (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-measure-delay-in-nat-pt-client-and-ipv6-host-730827/)

renuaseri 06-05-2009 01:20 AM

how to measure delay in NAT-PT client and ipv6 host.
 
hello all,

i want to measure transfer delay from ipv6 machine to ipv4.

what i should do ?

plz help me.

Samotnik 06-05-2009 07:09 PM

man ping

janhe 06-06-2009 05:32 AM

If you want to know the delay for a certain hop in your connection, you can use "traceroute" (read the manpage for info on using it)

For using ping and traceroute over IPv6, you need ping6 and traceroute6.

most of the time I use it on of these ways:
Code:

ping -c4 <hostname>
ping -c4 <IP-address>
traceroute <hostname>
traceroute <IP-address>

The "-c4" option says to ping 4 times (-c5 would do it 5 times). Without it, the ping command just keeps going on, and you have to stop it with Ctrl-C


All times are GMT -5. The time now is 10:14 PM.