In Ruby, how does one get their IP octet without going through DNS? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T22:46:08Zhttp://stackoverflow.com/feeds/question/379530http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/379530/in-ruby-how-does-one-get-their-ip-octet-without-going-through-dns0In Ruby, how does one get their IP octet without going through DNS?unknown (yahoo)2008-12-18T22:23:20Z2008-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 *&#( 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-1Answer by Can Berk Güder for In Ruby, how does one get their IP octet without going through DNS?Can Berk Güder2008-12-18T22:29:54Z2008-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#3795573Answer by Charlie Martin for In Ruby, how does one get their IP octet without going through DNS?Charlie Martin2008-12-18T22:30:04Z2008-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>