Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
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

5 Answers

up vote 48 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);
}
share|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 ? – user529649 Apr 10 '12 at 5:22
2  
Um... because his is .connection.remoteAddress and mine is .handshake.address? – Toji Apr 10 '12 at 18:38
Confirmed to work with 0.9.10 – Artur Bodera Sep 4 '12 at 7:45
And still working at 0.9.13 I'm getting the IP with socket.handhsake.address.address with no problems. Thank you! – Riwels Jan 16 at 20:06
show 1 more comment

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);
});
share|improve this answer

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;
}
share|improve this answer
1  
wrong. Tested against 0.9.10 and it does not work. – Artur Bodera Sep 4 '12 at 7:39
1  
If this used to work, it doesn't work anymore. – Brad Jan 2 at 23:24

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...

share|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

Like said in documentation (0.8.21):

server.on("connection", function(socket) {
    var endpoint = socket.address();
    console.log('Client connected from: ' + endpoint.address + ":" + endpoint.port);
});

Link: http://nodejs.org/api/all.html#all_socket_address

Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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