vote up 1 vote down star

Hi, i want to get the IP Address of the client in a TCPServer in Ruby. And (if it is possible) the MAC Address.

For example, a Time Server in Ruby, see the comment.

tcpserver = TCPServer.new("", 80)
if tcpserver
 puts "Listening"
 loop do
  socket = tcpserver.accept
  if socket
   Thread.new do
    puts "Connected from" + # HERE! How can i get the IP Address from the client?
    socket.write(Time.now.to_s)
    socket.close
   end
  end
 end
end

Thank you very much!

flag

1 Answer

vote up 2 vote down

Use socket.addr:

irb(main):011:0> socket.addr
=> ["AF_INET", 50000, "localhost", "127.0.0.1"]

It returns an array showing the type of socket, the port, and the host information.

Regarding finding the MAC address, I don't know of anyway that's built in. If you want the local MAC address, you can use Ara Howard's "macaddr" gem. If you want the remote MAC address, you can use the command line arp program and parse its output. Note that this will only be valid if the remote machine is on the same local network, as MAC addresses are not transmitted across non-local networks.

link|flag
But with this method it returns the address of the server, not of the client. I want to know (in the server, to save a log of the connections) the IP of the clients. Thanks for your answer! – Berto_69 Aug 16 at 21:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.