Tagged Questions

3
votes
1answer
39 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 ...
0
votes
1answer
97 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
2answers
134 views

how do I get the IP of incoming ICMP due to UDP-send to dead client in Ruby?

so.. I'm doing a small multiplayer game with blocking UDP and IO.select. To my problem.. (In the server) reading from a UDP socket (packet, sender = @socket.recvfrom(1000)) which have just sent a ...
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 ...