<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.kitz.co.uk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Newtest</id>
		<title>kitz wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.kitz.co.uk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Newtest"/>
		<link rel="alternate" type="text/html" href="https://wiki.kitz.co.uk/index.php/Special:Contributions/Newtest"/>
		<updated>2026-08-19T08:32:10Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.29.0</generator>

	<entry>
		<id>https://wiki.kitz.co.uk/index.php?title=PING&amp;diff=86</id>
		<title>PING</title>
		<link rel="alternate" type="text/html" href="https://wiki.kitz.co.uk/index.php?title=PING&amp;diff=86"/>
				<updated>2011-12-10T11:28:37Z</updated>
		
		<summary type="html">&lt;p&gt;Newtest: /* PING Commands */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== The PING utility ==&lt;br /&gt;
PING is a utility that allows us to check if a specific IP address is online or accessible and therefore used to help troubleshoot network (or internet) connections.&lt;br /&gt;
&lt;br /&gt;
It works by sending packet(s) of data to the IP address and checking the response time.&lt;br /&gt;
&lt;br /&gt;
Although there are various programs that will PING an IP address for you, probably the quickest way for Windows users is to use the &amp;quot;ping&amp;quot; command from the DOS prompt.&lt;br /&gt;
(Mac OS X and Linux users should use the Unix commands located [http://www.rt.com/man/ping.8.html here].)&lt;br /&gt;
&lt;br /&gt;
To do this Start &amp;gt;&amp;gt;&amp;gt; run &amp;gt;&amp;gt;&amp;gt; type &amp;quot;cmd&amp;quot;&lt;br /&gt;
Then from the prompt type &amp;quot;ping [IP address]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Interpreting the results.'''==&lt;br /&gt;
[[File:ping.jpg]]&lt;br /&gt;
&lt;br /&gt;
Reply from 212.58.228.154   ~	 The host IP no that responded&lt;br /&gt;
&lt;br /&gt;
bytes=32  ~  	No of bytes sent in the packet&lt;br /&gt;
&lt;br /&gt;
time=24ms  ~  	Time in milliseconds to reach the host&lt;br /&gt;
&lt;br /&gt;
TTL=249	Time To Live. ~ Indication of hops along the way.*&lt;br /&gt;
&lt;br /&gt;
Packets sent  ~  Total no of packets sent during the test&lt;br /&gt;
&lt;br /&gt;
Packets received  ~  No of packets received by the host&lt;br /&gt;
&lt;br /&gt;
Packets lost  ~  No of packets not received (lost on the way)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Tips'''==&lt;br /&gt;
&lt;br /&gt;
The time taken for a packet to reach the host is also called latency. This response is an indication of the round trip to the host, and may involve a series of hops along the way.&lt;br /&gt;
Depending upon the location of the remote host, a good time would be less than 100ms (0.1 second).&lt;br /&gt;
&lt;br /&gt;
If you see a variation in the times this is called latency &amp;quot;jitter&amp;quot;, and you may receive poor communication with the host.&lt;br /&gt;
&lt;br /&gt;
A response of &amp;quot;Request timed out&amp;quot; means there was no response in the default time period of one second. &lt;br /&gt;
If the latency of the response is more than one second, try using the -w option on the ping command to increase the time-out.&lt;br /&gt;
For e.g. try &amp;quot;ping -w 5000 [IP address]&amp;quot; to allow responses within 5 seconds.&lt;br /&gt;
&lt;br /&gt;
=='''TTL'''==&lt;br /&gt;
&lt;br /&gt;
Every ping packet that is sent out has a TTL value which by default is 255.&lt;br /&gt;
For every router hop that the packet passes through, the TTL figure gets decreased by one.&lt;br /&gt;
So in the example above the TTL of 249 means (255 - 249) 6 hops.&lt;br /&gt;
Variations in the TTL show that the packets are traversing different routes which isn't really a good thing :/&lt;br /&gt;
&lt;br /&gt;
Although the default Unix ICMP echo_request is 255, some remote hosts (servers) may have their TTL response value set to 128 or 64, so you may have to adjust the calculation accordingly.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=='''PING Commands'''==&lt;br /&gt;
&lt;br /&gt;
'''syntax'''&lt;br /&gt;
''PING [options] destination_host''&lt;br /&gt;
&lt;br /&gt;
'''Options'''&lt;br /&gt;
&lt;br /&gt;
-a	 	Resolve address to hostname.&lt;br /&gt;
&lt;br /&gt;
-f	 	 Set &amp;quot;Don't fragment flag&amp;quot; in packet.&lt;br /&gt;
&lt;br /&gt;
-i	TTL	 Time To Live.&lt;br /&gt;
&lt;br /&gt;
-j	host-list	 Loose source route along host-list.&lt;br /&gt;
&lt;br /&gt;
-k	host-list	 Strict source route along host-list.&lt;br /&gt;
&lt;br /&gt;
-l	size	 Send buffer size.&lt;br /&gt;
&lt;br /&gt;
-n	count	 Number of echo requests to send.&lt;br /&gt;
&lt;br /&gt;
-r	count	 Record route for count hops&lt;br /&gt;
&lt;br /&gt;
-s	count	 Timestamp for count hops.&lt;br /&gt;
&lt;br /&gt;
-t	 	 Pings the specified host until interrupted.&lt;br /&gt;
&lt;br /&gt;
-v	TOS	 Type Of Service.&lt;br /&gt;
&lt;br /&gt;
-w	timeout	 Timeout in milliseconds to wait for each reply.&lt;br /&gt;
&lt;br /&gt;
 	 	 &lt;br /&gt;
'''Commands'''&lt;br /&gt;
&lt;br /&gt;
Ctrl + Break	To see statistics and continue&lt;br /&gt;
Ctrl + C	Stop Ping&lt;br /&gt;
&amp;gt; c:\filename.txt	Send results to a text file&lt;br /&gt;
&lt;br /&gt;
(Small edit by newtest)&lt;/div&gt;</summary>
		<author><name>Newtest</name></author>	</entry>

	</feed>