Tagged Questions
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
243 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 ...
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
76 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
152 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
230 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.
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
65 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
1answer
281 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
0answers
902 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
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
1answer
99 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
163 views
How to embed and listen data over icmp in order to tunnel connection with using python
i am trying to code one tunnel tool but i could not receive packet from icmp. I uses socket library, is there any one pylibnet or pynet library
0
votes
1answer
1k views
Send an UDP packet and receive an ICMP response from router in C
I'm trying write a C program that sends an UDP packet to a given IP adress and waits for an ICMP response of a router telling that the time to live expired. It's kept very simple because I just want ...
0
votes
3answers
511 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 ...