Tagged Questions

1
vote
3answers
97 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
0answers
31 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 …
1
vote
2answers
203 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 …
1
vote
5answers
1k 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 …
0
votes
1answer
22 views

C# Socket and ICMP

Hello. 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
1answer
134 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
359 views

ICMP in C#, SocketException - Forbidden by access permissions

Hello, 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
250 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 …
0
votes
2answers
805 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 …