vote up 0 vote down star

I can, on some of my systems, get my IP address (192.68.m.n format) by doing this:

addr = IPSocket::getAddress(Socket.gethostname())

...the trouble is that this only works if the name the local machine uses for itself is the name the DNS server associates with it.

How *&#( hard can it be for ruby to just return its primary interface's IP address? I have to do this in a platform-independant way or I'd just call ifconfig or ipconfig and parse it.

flag

39% accept rate
Define "primary interface" please. What is the primary interface if the machine has many of them. – Keltia Dec 18 '08 at 22:29

2 Answers

vote up 3 vote down

See this question. Also see Socket.getaddrinfo()

link|flag
vote up -1 vote down

http://coderrr.wordpress.com/2008/05/28/get-your-local-ip-address/

EDIT: 6th result when you Google "ruby get IP address."

link|flag
...doesn't show up at all when I google "ruby get IP address" – unknown (yahoo) Dec 18 '08 at 22:40
have you tried searching without the quotes? – Can Berk Güder Dec 19 '08 at 14:28
and what's with the downvote? if my answer is offensive in any way, mark it as such. but it's a valid and correct answer, so I think it doesn't deserve a downvote. – Can Berk Güder Dec 19 '08 at 14:29

Your Answer

Get an OpenID
or

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