Tagged Questions

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
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
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
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
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, ...
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
3k views

ICMP in C#, SocketException - Forbidden by access permissions

I'm trying to get the ICMP code found here to work. However on this line: Socket = new System.Net.Sockets.Socket(System.Net.Sockets.AddressFamily.InterNetwork, ...
0
votes
3answers
507 views

Receiving an ICMP packet in the context of a service on 2008

When we send a packet from a udp port we receive an exception if the network returns an ICMP host unreachable. The exception doesn't tell us anything useful (like the contents of the ICMP packet). No ...
-4
votes
2answers
51 views

Can i change the ways of the icmp request? [closed]

When i send a ping to www.example.com, it goes around 4 hops: A -> B -> C -> www.example.com I want to change it: A -> C -> www.example.com and if i receive an icmp reply, it'll return to another ip. ...