Tagged Questions
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.
15
votes
7answers
12k 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 ...
12
votes
3answers
5k 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, ...
12
votes
6answers
7k views
What's the easiest to remember publicly pingable IP address?
For frequent network troubleshooting purposes, do you know a publicly pingable host with an easy to remember IP address (such as 1.2.3.4)?
10
votes
4answers
160 views
Hostname for .net too long?
While working on a program I recently found that hostnames in .net (or at least in the ping class) are not supposed to have more than 126 characters. The ping class throws an exception if a hostname ...
10
votes
4answers
37k views
How to easy determine if a port is open on an 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?
9
votes
2answers
987 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 ...
9
votes
11answers
11k 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.
8
votes
3answers
324 views
Creating a ping uptime service with PHP
I have a server that I can use PHP on and a router that can be pinged from the Internet. I want to write a PHP script that sends a ping to the router every 5 minutes with the following results:
If ...
8
votes
1answer
787 views
How do I get killed using Perl FCGI?
I'm having a little problem with nginx and the Perl FCGI module. I have a long operation in my FCGI program that may outlive the server (or the user on the server) on the other end of the Unix socket ...
6
votes
4answers
528 views
Ping with java to multiplatform
I need to perform ping to some ip/machine. The code may be executed on any kind of platform (windows, linux, mac) and i need to get the information about loss and the round trip time.
so java's exec ...
6
votes
10answers
711 views
Should I ping mysql server before each query?
So I was wondering whether I should or should not ping the mysql server (mysqli_ping) to ensure that the server is always alive before running query?
6
votes
8answers
2k views
How to determine latency of a remote server through the browser
I run a couple of game tunnelling servers and would like to have a page where the client can run a ping on all the servers and find out which is the most responsive. As far as I can see there seems to ...
5
votes
2answers
907 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: ...
4
votes
2answers
123 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 ...
4
votes
5answers
199 views
Computing network distance between two hosts
I want to compute some metrics relative to the "distance" between two hosts on a network app. I came up with the following naïve solution inspired by ping.
Sending UDP packages of varying size.
Wait ...
4
votes
2answers
110 views
Ping a Website in R
i would like to create a script in R that ping's a given website. I havent found any Information about this specific for R. To start with, all I need is the Information on whether the website ...
4
votes
2answers
189 views
Pinging from a C/C++ program
I want to write a C or C++ program, that given an IP address, Pings it and then performs further action based on whether the Ping was successful or not.
How to do this?
4
votes
3answers
417 views
Error catching, Monitoring and Notification for Rails 3?
Sorry for the broad question, but I'd really like to know the combination of services people are using to get great monitoring for their apps. Right now, I'm thinking of going with Pingdom + Hoptoad ...
4
votes
5answers
2k 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 ...
4
votes
2answers
1k views
Linux ping broadcast switch
When using ping on virtually every UNIX system available, pinging the broadcast address is simple:
$ ping 192.168.11.255
However, when this is done on Linux, a non-standard (and continually ...
4
votes
2answers
690 views
Problem ping a URL from C#
My scenario:
When i ping with www.google.com it give the status Success, When i try to ping http://stackoverflow.com i got an exception "An exception occurred during a Ping request." What is the ...
4
votes
3answers
1k views
4
votes
3answers
227 views
Best way of determining a remote computer has booted and running
I am writing a test application which is controlling another computer. The test computer is started by sending a command string via the RS-232 port (from a control computer running Windows XP SP2 ...
4
votes
2answers
2k 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 ...
4
votes
3answers
2k 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
7answers
3k 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 ...
4
votes
2answers
3k views
Ping a site in ruby?
What replacements are available for pinging an ip address in Ruby? The stdlib "ping" library seems to be pretty limited in functionality. I'm not interested in rolling my own code here. Are there good ...
3
votes
2answers
104 views
How to ping in JavaScript or jQuery?
I want to create a game-like ping in Javascript, just like the game Counter Strike for example. I'm doing an AJAX call to the server (MySQL) and want to calculate the time that's taken, but I'm either ...
3
votes
1answer
41 views
How do I implement ICMP ping in Ruby using only the standard the socket library?
It should be possible send and receive ICMP packets using the Ruby socket library but I do not see any good documentation on this.
I do not want to use net-ping, icmp, ping, and all of these other ...
3
votes
3answers
41 views
How do I count the number of times I ping a host in JSP?
My code is here from which I get result either true or false that weather it ping to the host I mention in it or not,
try
{
InetAddress address = InetAddress.getByName("192.168.1.125");
...
3
votes
2answers
109 views
Ping a server from VB.net via a specific proxy
I know that you can easily send a ping request and receive a boolean return type in .NET, using something like:
If My.Computer.Network.Ping(addressToPing_str, pingTimeOutMS_int) Then
...
3
votes
1answer
566 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 ...
3
votes
3answers
236 views
Ping vs HTTP HEAD
I'm writing a Java app which has a feature to check whether it's connected to the internet by periodically trying to access a server. My first idea was to Ping the server - but turned out to be ...
3
votes
3answers
298 views
Ping.SendAsync() returned replay from 0.0.0.0, how to get pinged address?
i have problem with Ping.SendAsync() function in C#.
I ping some ip adresses, but some of they are wrong. I need to remove wrong adresses from list. But how, because p_PingCompleted event ...
3
votes
1answer
462 views
A simple PHP uptime monitor for Windows Servers and Cisco Switches
I've written (well cobbled together from other people's code) a very simple uptime monitor for our servers - it's just an ICMP (ping) monitor and it works very well for our limited amount of servers ...
3
votes
3answers
308 views
Calculating the Ping of a WebSocket Connection?
small question. How can I calculate the ping of a WebSocket connection?
The server is set up using Node.js and node-websocket-server, if that matters at all.
3
votes
2answers
233 views
Erlang ping node problem
I made in erlang shell:
1> node().
nonode@nohost
But
2> net_adm:ping(node()).
pang
Why? What's problem? Why not pong?
Thank you.
3
votes
1answer
621 views
ping cross domain url with javascript?
Is there any way that I can ping sites like http://google.com (without them providing any pining interface) using only JavaScript.
3
votes
1answer
361 views
How to check network bandwidth with Python?
As asked, I would like my script to check network bandwidth giving me any idea how fast user can surf through web. Is there any library, which allows me to specify size of package to be send and gives ...
3
votes
2answers
2k 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?
3
votes
2answers
283 views
C# perform a TNSPing programatically
Is it possible to perform a TNSPing on an Oracle Database programaticaly?
I'm aware I could probably call the TNSPing program and parse any output generated but I'm looking for a more robust method ...
3
votes
4answers
3k 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
2answers
919 views
How do I ping a server in J2ME / BlackBerry?
How do I ping a server in J2ME / BlackBerry using java? This seems basic, but I can't find it in the javadocs. Thanks.
3
votes
1answer
385 views
disabling windows ability to respond to ping request
im writing an application destined to accept icmp echo request, and respond icmp echo reply by its criteria.
problem is, windows xp takes over the received ping, and quickly replies the sender with a ...
3
votes
2answers
1k 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:
...
3
votes
4answers
2k 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.
3
votes
4answers
3k views
any way to “ping” a phone number?
We have a customer who wants to go through their CRM database and somehow determine phone numbers which are valid, without actually having someone sit there and try calling them all.
Is there any ...
3
votes
3answers
896 views
How to ping a computer if the computer name starts with dash “-”
How to ping a computer if the computer name starts with dash "-"
3
votes
6answers
7k 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?
2
votes
1answer
97 views
Pinging Domain C#
trying to ping a domain and see if i get a response code to get a indication if its registered. getting constant positive results from the following code - any ideas?
public static string ...