Free IP ping tool can be accessed using windows CMD. Windows comes with pre-installed ping tool which can be used fro with-in windows.
- Open your CMD
- Paste and execute the following command.
ping myipv4address.com
In linux you can perform ping to any IP address using ping tool in linux. Linux has pre-installed ping on it.
- Open up the terminal in your linux
- Paste and execute the following ping command.
ping myipv4address.com
What is Free IP Ping Tool
Free Ping tool is used to check out the reachability of any particular host or IP address. Ping tool send out small ICMP packets to determine the state of the host.
If the host or IP address replies to the ICMP packets means that the host is up. This ping tool sends 4 packets, you can control the number of packets using ping CLI utility in windows or linux operating systems. Ping tool i provided to test out the reach ability of website, host or IP address.
Ping tool can also be used to resolve the IP address of the domain name.

Features of Ping Utility
This tool has many hidden features which many other tools don’t have. It is actually an ping CLI utility working on the webs using API. Some other feature are:
- Free and easy to use.
- It sents 4 ICMP packets at one time.
- Give complete output from the ping cli utility from our server.
- It accepts IP address and domain as well.
Add Ping Tool to your website
We allow our user and visitors to add this ping tool to their own websites or web pages. It’s completely free and easy to integrate. Just paste the following HTML code inside any where in your web page. Don’t modify this tool very much, specially the javascript code.
<div style="text-align:center">
<p style="background:#fff;border:1px solid #99A8AE;width:180px;padding:5px 5px 5px 5px;font-size:11px;font-family:'Trebuchet MS',Arial,Sans-serif;">
<a href="https://myipv4address.com" target="_blank"></a><br />
<b>Free Ping Tool</b><br /><br />
<label>Host</label><br />
<input type="text" name="host" value="" id="idata" style="border:solid 1px #C0C0C0;font-size:9px;width:110px;" /><br />
<input type="button" value="Ping" onclick="send()" style="width:100px;font-size:10px;margin-top:3px;padding:2px 3px;color:#FFF;background:#8EB50C;border-width:1px;border-style:solid;">
</p>
<pre id="result" style="background:#fff;border:1px solid #99A8AE;width:180px;padding:5px 5px 5px 5px;font-size:11px;font-family:'Trebuchet MS',Arial,Sans-serif; overflow: auto;"></pre>
</div>
<script type="text/javascript">
function send(){
data=document.getElementById("idata").value;
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("result").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "https://myipv4address.com/api/ping.php?ip="+data, true);
xhttp.send();
}
</script>
MY IPv4 Address Tools
Internet Speed Test
Check out your internet connection speed with our free tool. Check internet speed to find exact connection speed.
Ping Tool
test out reach ability of any host with one click with our free and easy to use tool.
WHOIS Tool
Dig out the information about any IP address or domain. Our WHOIS tool will provide you all details about the target.
BASE64 Encode/Decode
Encode or decode into base64 encoding with one click using our free and easy to use tool.
Reverse DNS Lookup
Find out information about any IP address by performing reverse DNS lookup using our free tool
Free IP Address API
Get programatically access to our tools using our free API's.