Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
527 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
3answers
242 views

How do I validate the ICMPv6 checksum? (Why am do I keep getting a checksum of 0x3fff?)

I'm working on a Linux userspace program that receives IPv6 router advertisement packets. As part of RFC4861 I need to verify the ICMPv6 checksum. Based on my research, most of which refers to the ...
4
votes
2answers
310 views

Writing a basic traceroute script in C

I have to write a trceroute script but I'm not sure if my attempts are correct. Right now I'm doing it like that (please correct me if I'm doing wrong or clumsy): Got an struct for ip- and ...
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
40 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
1answer
267 views

How to send a multicast ping using .NET?

How can I send a multicast ping in .NET ? So that all computers on the network respond ?
2
votes
1answer
38 views

ICMP socket always timeout

I am trying to send an ICMP AddressMask request to my router in C#. However, my socket always time out, or, if the timeout isn't set, makes the application loop indefinitely. Here is the code: Socket ...
2
votes
1answer
101 views

Ping ICMP echo request

Are there any methods to ping icmp (echo request) instead of using isReachable? isReachable establish a TCP connection on port 7 and when I used wireshark I did not see any ICMP packets on Window and ...
2
votes
1answer
75 views

Responsing on ICMP in select

The basic code sequence I'm interesting for is (pseudocode) sendto(some host); // host may be unreachable for now which is normal ... if(select(readfs, timeout)) // there are some data to read ...
2
votes
2answers
151 views

How can I extract mac address from a icmp reply in c on linux

I am trying to find out mac address of a machine in a switched environment after sending it a raw packet. I am trying to implement traceroute command . I want to know when i receive a ICMP time ...
2
votes
1answer
129 views

Is it possible to send an ICMP echo request from a swf?

ActionScript 3 can send UDP packets via flash.net.DatagramSocket. Is their any way to send an ICMP packet? I'd also like to set the TTL flag so I can implement traceroute in an SWF.
2
votes
1answer
245 views

two bytes swapped in packet received from Python raw socket

My Python program is receiving ICMP destination unreachable messages from a raw socket. The socket is created with the following code: socket.socket(socket.AF_INET, socket.SOCK_RAW, ...
2
votes
2answers
669 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
1answer
228 views

ICMP Host-Unreachable

How do I know if I got an ICMP Host Unreachable after trying to send some data to a UDP port ? I want to check for opened UDP ports on a machine. Thanks.
2
votes
3answers
618 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 ...
2
votes
4answers
207 views

How to log every ICMP reply message

There is this question i ran into, how can we find the ip address of the ICMP reply message in GNU/Linux?
2
votes
1answer
255 views

Sniffing detection

Can someone tell me how exactly works "test ICMP"? (One of methods to detect sniffing in local network)
2
votes
1answer
148 views

What type of network traffic does not use Winsock in Windows?

I am developing some low-level stuff (LSP) and found out, that SMB traffic does not go through LSP, because SMB does not use Winsock. There is a paragraph in MSDN about it, but this is in part of MSDN ...
2
votes
6answers
6k views

Listen for ICMP packets in C#

I have a SIP application that needs to send UDP packets to set up the SIP calls. SIP has a timeout mechanism to cope with delivery failures. An additional thing I would like to be able to do is detect ...
1
vote
2answers
70 views

C# Raw socket Receiving packets

Currently trying to implement a simple ping program to teach myself about network programming in C# and .NET. I have managed to initialize a raw socket and correctly build an ICMP echo request ...
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
64 views

ICMP sockets (linux)

Is it possible to use ICMP sockets under the IP protocol? Maybe something like: socket(PF_INET, <type>, IPPROTO_ICMP)? What should I put in the < type > field? I saw some examples using ...
1
vote
0answers
145 views

Why aren't ARP or ICMPv6 packets processed by a Linux TAP device

I am opening a TAP device using p->fd = open("/dev/net/tun", O_RDWR); // skipping error handling code ifr.ifr_flags = IFF_TAP | IFF_ONE_QUEUE | IFF_NO_PI; strncpy(ifr.ifr_name, p->name, ...
1
vote
2answers
62 views

Compiling icmp related codes under cygwin (missing “icmp” struct)

I'm using cygwin to compile a network tool(iffinder). After ./configure and make i have a problem that i guess is related to struct icmp. Where is the icmp struct in header files. I searched for it ...
1
vote
0answers
96 views

Detect unreachable ports for UDP in Erlang

I am looking for a way to detect "port unreachable" errors for outgoing UDP packets in Erlang, so I can eagerly report transport layer errors to the application. I.e, I want to capture ICMP type 3 ...
1
vote
1answer
98 views

How do I implement Traceroute using UDP?

Apparently ICMP isn't the only way to create a Traceroute. This and this answer indicates it's possible to send a UDP packet (or any other) with a low TTL and wait for the ICMP message. How would I ...
1
vote
1answer
161 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
1answer
125 views

Path MTU discovery - where are ICMP responses?

I'm doing some experiments with path MTU discovery in Linux. As far as I understood from RFC 1191, if a router receives a packet with non-zero DF bit and the packet can't be sent to the next host ...
1
vote
2answers
282 views

C# - Ping server with ICMP disabled

I am trying to ping a series of servers frequently using the PingReply class. Most of the time this is fine, but other times I get failed pings. I'm guessing this has something to do with ICMP being ...
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
3answers
183 views

C UDP server access problem

Suppose you have an UDP server running on port 9030 on Linux and you can't access somehow to that UDP Server. There is no firewall or similar set up preventing access to that UDP port. And also please ...
1
vote
1answer
219 views

WinSock2 on Windows XP and ICMPv6

I am trying to programatically send out ICMPv6 echo requests (ping6) using WinSock2. The ICMPv6 checksum is calculated based on the whole IPv6 packet that will be sent out. For that reason - from what ...
1
vote
1answer
338 views

Does the ICMP Header Checksum include the data as well?

As part of a homework assignment, I have to write a C program in Linux that generates ICMP replies to ICMP Echo requests using raw sockets. Does the data in the ICMP Packet have to be included in the ...
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
277 views

How to to icmps and traceroutes in Java

For some reason i cannot even phantom, Java does not have primitives for ICMPs and traceroute. Any idea how to overcome this? Basically im building code that should run in *nix and windows, and need a ...
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
181 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 ...
1
vote
1answer
305 views

Measuring network performance tool in c#

I am about to develop a Network measurement tool. The objective is to make a tool, which can measure the responsetime in between a client and a server machine (from the client side). It is s ...
1
vote
0answers
901 views

SocketException when using ICMP with C# sockets?

I'd like to know how to use sockets in .NET3.5 to send ICMP request. When I try to create my socket using this line : Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Raw, ...
1
vote
3answers
270 views

Smart methods for an Embedded Linux device to detect Internet connectivity

Our team is developing a Internet Media device based on Linux 2.6. Currently we detect whether Internet connectivity is established (via a wired Ethernet i/f) by pinging www.google.com Some networks ...
1
vote
2answers
1k views

Receiving Data on an ICMP socket

When receiving on an ICMP socket, (SOCK_RAW with IPPROTO_ICMP), since there is no concept of "port" in the ICMP protocol, how can an application determine that a received packet is not part of some ...
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
81 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
0answers
132 views

python icmp raw socket implementation

i am relatively new to python, so please be considerate... i'm implementing a server and a client via raw_sockets. i have the necessary privileges. now, the server i defined so: host = ...
0
votes
0answers
60 views

client - server delivering only icmp packets

i wrote this client server program thats try to send and recieve icmp packets. both codes client and server are running but no packet accept in the server side can you help me please server side ...
0
votes
2answers
59 views

Icmp monitoring using visual c# .net

I want to write an application that monitors some of my remote branches. I want to monitor 2 things 1) icmp drop (if i send 10 pings and 2 or more are dropped then alert) 2) if latency of ping is ...
0
votes
1answer
78 views

Apache and CAP_NET_RAW

I have a php script that carries out a trace route without using system(). It uses SOCK_RAW and ICMP. I have managed to get this script to run with out been a root user or changing anything in ...

1 2