Ping is a computer network administration utility used to test the reachability of a host on an Internet Protocol (IP) network and to measure the round-trip time for messages sent from the originating host to a destination computer.
6
votes
5answers
26k views
Ping site and return result in PHP
I'd like to create a small IF procedure that will check if Twitter is available (unlike now, for example), and will return true or false.
Help :)
23
votes
5answers
17k views
How to do a true Java ping from Windows?
I have a device on a network that I am attempting to ping through my Java program. Through my windows command prompt, I can ping the device address fine and do a tracert on the address fine.
Online, ...
24
votes
5answers
22k views
Preferred Java way to ping a HTTP Url for availability
I need a monitor class that regularly checks whether a given HTTP URL is available. I can take care of the "regularly" part using the Spring TaskExecutor abstraction, so that's not the topic here. The ...
4
votes
1answer
10k views
Android Service - Ping URL
How can I use Android Service to do a ping callback? I need to open a webpage on a button click, but in the background, go ping another url for stats collection.
Code snippets will be greatly ...
5
votes
6answers
15k views
how to ping a server with php?
i want a php code that give you the ping of and ip:port
i have found a similar one but it only work for web site not on ip:port
<?php
function ping($host, $port, $timeout)
{
$tB = ...
5
votes
2answers
6k views
iOS - Ping with timeout
I'm using Apple's "Simple Ping" example and it has almost all features that I need, but I don't know where I can set timeout of each packet. It seems that it isn't possible because function that is ...
8
votes
2answers
5k views
IPv6 link-local address format
I am working on a project related to networking/compression. One of the machines is Windows Vista, which already has IPv6 configured.
When I try ipconfig, I see an address in the following format: ...
18
votes
7answers
21k views
TraceRoute and Ping in C#
Does anyone have C# code handy for doing a ping and traceroute to a target computer? I am looking for a pure code solution, not what I'm doing now, which is invoking the ping.exe and tracert.exe ...
8
votes
3answers
25k views
How to check if ping responded or not in a batch file
I want to continuously ping a server and see a message box when ever it responds i.e. server is currently down. I want to do it through batch file.
I can show a message box as said here ...
3
votes
6answers
7k views
curl and ping - how to check whether a website is either up or down?
I want to check whether a website is up or down at a particular instance using PHP. I came to know that curl will fetch the contents of the file but I don't want to read the content of the website. I ...
1
vote
4answers
11k views
java code to ping an IP address
I am using this part of code to ping an ip address in java but only pinging localhost is successful and for the other hosts the program says the host is unreachable.
I disabled my firewall but still ...
51
votes
5answers
172k views
How to determine if a port is open on a Windows server?
I'm trying to install a site under an alternative port on a server, but the port may be closed by a firewall. Is there a way to ping out or in, on a specific port, to see if it is open?
3
votes
1answer
528 views
Ping Application in Android
I am making an application which will implement some features of the "ping" command.The problem is, I have no idea of which library/libraries to use in ANDROID.
anyone have any idea for it?
I have ...
8
votes
2answers
918 views
Why does ping work without administrator privileges?
as you may know one is unable to create RAW sockets using Windows Sockets without having administrative priviliges. The problem is, that I need to send ICMP messages, thus I need RAW sockets. The ...
2
votes
2answers
7k views
Pinging an IP address using PHP and echoing the result
I have the following function that I doesn't work so far. I would like to ping an IP address and then to echo whether the IP is alive or not.
function pingAddress($ip)
{
$pingresult = ...
1
vote
3answers
3k views
How can I perform a ping or traceroute in python, accessing the output as it is produced?
Earlier, I asked this question:
How can I perform a ping or traceroute using native python?
However because python is not running as root it doens't have the ability to open the raw ICMP sockets ...
13
votes
12answers
29k views
How can I write a linux bash script, that tells me which computer are on in my LAN?
How can I write a linux bash script, that tells me which computers are ON in my LAN ?
It would help if I could give it as input a range of IP's.
11
votes
3answers
11k views
4
votes
4answers
1k views
How to check if a web service is up and running without using ping?
How can i check if a method in a web service is workign fine or not ? I cannot use ping. I still want to check any kind of method being invoked from the web service by the client. I know it is ...
4
votes
5answers
3k views
How to ping faster when I reach unreachable IP?
I have an app which pings IP or IP range. The problem is that when hosts are closed it takes longer to ping than they are open. When host is closed the time to ping is about 1-2 seconds.
How could I ...
3
votes
2answers
10k views
How to ping IP addresses using JavaScript
I want to run a JavaScript code to ping 4 different IP addresses and then retrieve the packet loss and latency of these ping requests and display them on the page.
How do I do this?
2
votes
0answers
273 views
Get all IP-Hosts in Lan from mobile device
I want to get a list with all ip-addresses in my network, on a mobile device (C#.net compact framework).
I read through several articles like this one. The problem is, that on my mobile device I ...
5
votes
1answer
2k views
Java InetAddress.isReachable() timeout
I am trying to find out if specific hosts on my network are reachable.
My java code is as follows:
InetAddress adr = InetAddress.getByName(host);
if(adr.isReachable(3000)){
...
4
votes
3answers
10k views
Leave only two decimal places after the dot
public void LoadAveragePingTime()
{
try
{
PingReply pingReply = pingClass.Send("logon.chronic-domination.com");
double AveragePing = ...
2
votes
3answers
749 views
Django and root processes
In my Django project I need to be able to check whether a host on the LAN is up using an ICMP ping. I found this SO question which answers how to ping something in Python and this SO question which ...
2
votes
4answers
595 views
Why is this running like it isn't threaded?
I'm writing a script that will ping my ip range. Here's what I have so far:
lines = `ipconfig`.split("\n")
thr = []
ip_line = lines.detect { |l| l=~/Ip Address/i }
matcher = ...
3
votes
1answer
1k views
Server Ping with iPhone
I'm writing an app that needs to know which of two servers responds fastest. One server is in my time zone, the other is far away.
How do I get the round trip time from a server ping on the iPhone?
...
3
votes
7answers
6k views
Using php to ping a website
I want to create a php script that will ping a domain and list the response time along with the total size of the request.
This will be used for monitoring a network of websites. I tried it with ...
3
votes
5answers
3k views
How can I perform a ping or traceroute using native python?
I would like to be able to perform a ping and traceroute from within Python without having to execute the corresponding shell commands so I'd prefer a native python solution.
0
votes
2answers
1k views
Reachability with Address - Server AND Port - iOS 5
I am trying to check whether a server is online or offline: I face the problem that it has a port when connecting to it
My code at the moment:
struct sockaddr_in address;
address.sin_len = ...
0
votes
1answer
571 views
mac dns look up misbehaving
Got a new mac and now I'm trying to install/update some stuff. THe first issue I get is that http requests made from inside scripts/programs (such as git or ruby gem) doesn't work. I'll put an example ...
0
votes
3answers
944 views
C# Async Ping: not work from a Threading.Timer
I hope to explain properly. I'm working on a project that runs more than 6000 simultaneous asynchronous pings every X minutes. If I try to run the component from a button on a windows form it works. ...
-4
votes
1answer
661 views
what is a ping/post [closed]
I am in need to develop a ping/post system and I have no clues where to start with. This system is used in Lead generation industry but Google/Bing provides me with no links apart from Ping class in ...
7
votes
2answers
4k views
Making a “ping” inside of my C# application
I need my application to ping an address I'll specify later on and just simply copy the Average Ping Time to a .Text of a Label.
Any help?
EDIT:
I found the solution in case anyone is interested:
...
6
votes
3answers
2k views
Delphi (XE2) Indy (10) Multithread Ping
I have a room with 60 computers/devices (40 computers and 20 oscilloscopes Windows CE based) and I would like to know which and every one is alive using ping. First I wrote a standard ping (see here ...
9
votes
2answers
2k views
Ping or otherwise tell if a device is on the network by MAC in C#
I'm developing a home security application. One thing I'd like to do is automatically turn it off and on based on whether or not I'm at home. I have a phone with Wifi that automatically connects to ...
7
votes
7answers
9k views
How to test a internet connection in bash?
How to test an internet connection without pinging to some website?
I mean what if there are connection, but site is down, how to check that there is connection with world?
8
votes
7answers
21k views
Send a ping to each IP on a subnet
Is there a command line based way to send pings to each computer in a subnet?
Like
for (int i = 1;i < 254; i++)
ping(192.168.1.i)
to enforce arp resolution?
7
votes
5answers
5k views
What's the best way to ping many network devices in parallel?
I poll a lot of devices in network (more than 300) by iterative ping.
The program polls the devices sequentially, so it's slow.
I'd like to enhance the speed of polling.
There some ways to do this ...
6
votes
6answers
6k views
python non-privileged ICMP
While trying to figure out the best method to ping (ICMP) something from python, I came across these questions:
How can I perform a ping or traceroute in python, accessing the output as it is ...
5
votes
3answers
3k views
How do I ping from Flex - AIR?
I'm bored cause my development server is down and I'm running the command prompt to ping the server indefinitely so that I'll see when they stop timing out and know that I can work again. In the ...
4
votes
2answers
4k views
isReachable in Java doesn't appear to be working quite the way it's supposed to
I'm using Clojure, but I can read Java, so this isn't a Clojure specific question. This doesn't even seem to be working from Java.
I'm trying to implement a bit of a 'ping' function using ...
2
votes
1answer
573 views
Limiting ICMP echo replies when creating a PING program
I was writing a multithreaded ping program. I created rawsockets on each thread (for each IP) and sent ICMP Echo Request to each using sendto() and then I did recvfrom() in each thread. I am getting ...
1
vote
3answers
2k views
ICMP packets are not being sent C
I'm trying to create an ICMP ping test program in C but am having difficulties with successfully sending the packets. The sendto function returns the # of bytes and everything but no packets are ...
1
vote
2answers
781 views
PHP - get server to ping a visitors IP and return the ping in ms
I want to do as the title states. To ping a users IP and return a result in ms, for instance:
Ping IP
return 400ms.
I have no idea how to do this but I expect it would be relatively simple. I have ...
1
vote
4answers
21k views
Proxy for command line utilities in Win XP
How do I get command line utilities like ping to use the default proxy in Windows XP.
proxycfg -u sets the proxy to the default (IE) proxy alright, but it doesn't seem to be working.
Update: I am ...
4
votes
4answers
3k views
Multiple ping script in Python
I'm unable to find any good easy to learn documentation on python and networking. In this instance, I'm just trying to make a easy script which I can ping a number of remote machines.
for ping in ...
3
votes
3answers
3k views
Connecting Real device to Android emulator
I am developing a network app for Android and I'm still stuck on connecting my real Android device with an device-emulator running on my desktop computer.
I've created private network with a router, ...
2
votes
1answer
272 views
Ping to APNS not returning
I am trying to connect to Apple's Push Notification servers and push some notifications. All connections attempts are timing out. Tried pinging the server gateway.sandbox.push.apple.com and ...
2
votes
2answers
147 views
Is there a way to make an android device answer to icmp pings addressed to the broadcast address?
I would like to programatically make my device answer to broadcast pings (i.e pinging 192.178.1.255) while connected to a wifi network.
Is there a way i can do that ? Maybe a listener that will ping ...
