In Ruby, how does one get their IP octet without going through DNS? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T22:46:08Z http://stackoverflow.com/feeds/question/379530 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/379530/in-ruby-how-does-one-get-their-ip-octet-without-going-through-dns 0 In Ruby, how does one get their IP octet without going through DNS? unknown (yahoo) 2008-12-18T22:23:20Z 2008-12-18T22:30:04Z <p>I can, on some of my systems, get my IP address (192.68.m.n format) by doing this:</p> <pre><code>addr = IPSocket::getAddress(Socket.gethostname()) </code></pre> <p>...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.</p> <p>How *&amp;#( 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.</p> http://stackoverflow.com/questions/379530/in-ruby-how-does-one-get-their-ip-octet-without-going-through-dns/379555#379555 -1 Answer by Can Berk Güder for In Ruby, how does one get their IP octet without going through DNS? Can Berk Güder 2008-12-18T22:29:54Z 2008-12-18T22:29:54Z <p><a href="http://coderrr.wordpress.com/2008/05/28/get-your-local-ip-address/" rel="nofollow">http://coderrr.wordpress.com/2008/05/28/get-your-local-ip-address/</a></p> <p><strong>EDIT:</strong> 6th result when you Google "ruby get IP address."</p> http://stackoverflow.com/questions/379530/in-ruby-how-does-one-get-their-ip-octet-without-going-through-dns/379557#379557 3 Answer by Charlie Martin for In Ruby, how does one get their IP octet without going through DNS? Charlie Martin 2008-12-18T22:30:04Z 2008-12-18T22:30:04Z <p>See <a href="http://stackoverflow.com/questions/42566/getting-the-hostname-or-ip-in-ruby-on-rails">this question</a>. Also <code>see Socket.getaddrinfo()</code></p>