Short and simple - when using socket.io in a node.js server, is there an easy way to get the ip address for an incoming connection? I know you can get it for a standard HTTP connection (see http://forum.webfaction.com/viewtopic.php?id=4500), but socket.io is a bit of a different beast.

link|improve this question

Slight tangent, but console.cat(socket) might possibly have helped by recursively dumping everything in the socket object onto the console – izb Dec 31 '11 at 9:54
feedback

5 Answers

up vote 20 down vote accepted

Okay, as of 0.7.7 this is available, but not in the manner that lubar describes. I ended up needing to parse through some commit logs on git hub to figure this one out, but the following code does actually work for me now:

var io = require("socket.io").listen(server);

io.sockets.on("connection", function (socket) {
    var address = socket.handshake.address;
    console.log("New connection from " + address.address + ":" + address.port);
}
link|improve this answer
+1 thanks mate, do you perhaps know how i could get the remote address - or rather originating address? Right now its just logging the forward off my router. – f0x Oct 9 '11 at 18:46
How is this any different then @lubar 's code ? – Omeid Herat Apr 10 at 5:22
Um... because his is .connection.remoteAddress and mine is .handshake.address? – Toji Apr 10 at 18:38
feedback

Version 0.7.7 of Socket.IO now claims to return the client's IP address. I've had success with:

var socket = io.listen(server);
socket.on('connection', function(client){
    var ip_address = client.connection.remoteAddress;
}
link|improve this answer
feedback

From the server example on the socket.io website, I'm assuming the "socket" object is a standard node.js net.Socket. Have you tried accessing the remoteAddress property like this?

var io = require('socket.io').listen(80);
io.sockets.on('connection', function (socket) {
  console.log('Client connected from: ' + socket.remoteAddress);
  // ...
});
link|improve this answer
No, I don't believe that it is a net.Socket. Since socket.io wraps so many different connection methods (everything from websockets to long polling) it would have to be a higher-level construct. It doesn't have a remoteAddress property, in any case. – Toji Jun 23 '11 at 17:54
@Toji, of course, it couldn't be that easy, could it =) – maerics Jun 23 '11 at 17:55
Never! What fun would programming be if it was easy? :P – Toji Jun 23 '11 at 17:57
feedback

From reading the socket.io source code it looks like the "listen" method takes arguments (server, options, fn) and if "server" is an instance of an HTTP/S server it will simply wrap it for you.

So you could presumably give it an empty server which listens for the 'connection' event and handles the socket remoteAddress; however, things might be very difficult if you need to associate that address with an actual socket.io Socket object.

var http = require('http')
  , io = require('socket.io');
io.listen(new http.Server().on('connection', function(sock) {
  console.log('Client connected from: ' + sock.remoteAddress);
}).listen(80));

Might be easier to submit a patch to socket.io wherein their own Socket object is extended with the remoteAddress property assigned at connection time...

link|improve this answer
This patch will most likely be included in the next release github.com/LearnBoost/Socket.IO-node/pull/286 – mak Jun 25 '11 at 8:46
feedback

This seems to work:

var io = require('socket.io').listen(80);
io.sockets.on('connection', function (socket) {
  var endpoint = socket.manager.handshaken[socket.id].address;
  console.log('Client connected from: ' + endpoint.address + ":" + endpoint.port);
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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