Tagged Questions

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 ...
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
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 ...
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 ...
2
votes
2answers
670 views

Problem with pinging broadcast address

When I try to ping the broadcast address on my LAN, it shows ICMP replies from only 3 hosts, everytime, even though there many hosts connected to the LAN. For the broadcast address, I did $ifconfig ...
2
votes
3answers
619 views

How to send Ping6 request using Java library (JpCap)

I would like to monitor the ipv6 devices using ping6 request. Please let me know is there any open source library is available to send and receive Ping6 request. I tried with JpCap but couldn't ...
1
vote
1answer
64 views

Mac network ping source code compile error

I download the Mac OS network ping source code from Apple: http://www.opensource.apple.com/tarballs/network_cmds/network_cmds-356.8.tar.gz and compile it in xcode, but get errors in both 10.7 and ...
1
vote
1answer
162 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
0answers
118 views

Speedtouch st780i is blocking ICMP

I'm working on a tool in VB to make ping tests, but some speedtouch 780i routers are blocking ICMP. I try it out myself on a speedtouch router. I telnet and disable the firewall and intrusion ...
1
vote
1answer
276 views

Usage of IcmpSendEcho2 with an asynchronous callback

I've been reading the MSDN documentation for IcmpSendEcho2 and it raises more questions than it answers. I'm familiar with asynchronous callbacks from other Win32 APIs such as ReadFileEx... I provide ...
1
vote
3answers
261 views

Pinging servers in Python

In Python, is there a way to ping a server through ICMP and return TRUE if the server responds, or FALSE if there is no response?
1
vote
1answer
238 views

ICMP - TTL - Traceroute

Given the following situation: PC --- |aa RTR1 bb| --- |aa RTR2 bb| --- |aa RTR3 bb| etc Each of the |aa rtr bb| is meant to be a router with two ports aa and bb. My question is this. When ...
1
vote
1answer
182 views

Problem with asyn icmp ping

I'm writing service in python that async ping domains. So it must be able to ping many ip's at the same time. I wrote it on epoll ioloop, but have problem with packets loss. When there are many ...
0
votes
1answer
50 views

Bug in python ICMP ping implementation when pinging multiple ips at once?

I've been using jedie's python ping implementation from here on Windows. I could be wrong, but when pinging two computers (A and B) from separate threads, ping will return the first ping it receives, ...
0
votes
1answer
82 views

How to check if a host is unreachable?

I am trying to get the unreachable condition of the ping host as I am getting just (0,1) value for up and down respectively, how would I get any condition "2" at which it tell me unreachable ping ...
0
votes
1answer
57 views

Replies to Ping broadcast

I'm writing a program in .NET c++. I'm sending a broadcast ping on my local network. All of my target devices are able to respond to a ping broadcast, and indeed i track all of their responses in ...
0
votes
1answer
98 views

ICMP / PING “Server” in Ruby

Is it possible to write an ICMP Server in Ruby? If we install this server let's say on 192.168.1.4 and a m/c on 192.168.1.6 pings 192.168.1.4 then the Custom Ruby ICMP server would send the response ...
0
votes
1answer
249 views

Having difficulty writing ping on Android

I am trying to write a simple app that does ping. At first I have tried using isReachable() method but found out that I need root access. I want to do ping without having root access. I also want to ...
0
votes
1answer
575 views

How does one send ICMP packets (with associated TTL values) in Java on Android? Is it possible without a 3rd-party library? If not, what do you use?

This seems like it should be a simple solution to find, but I'm not having any luck. I want to write a simple ping/traceroute/dns troubleshooting app, but am simply not finding any documentation or ...
0
votes
4answers
947 views

How to get my client to ping server?

I'm trying to figure a way where my clients can ping my server via php, and then retrieve the results into format like this "15 MS". I ended up finding a way where servers can ping servers. However I ...
0
votes
2answers
2k views

How to check return packet contents in ICMP Ping / Echo?

When validating ping echo's, it seems that utilities / libraries often only check the checksum of the packet, and don't actually confirm that the payload sent out matches the payload that was ...