Answers to: IP Addresshttp://linuxexchange.org/questions/2517/ip-address<p>What is the command (Linux Mint Julia) to discover the IP Address of a computer connected to a wireless router?</p>enTue, 05 Nov 2013 07:36:39 -0500Answer by Uahyaghttp://linuxexchange.org/questions/2517/ip-address/3244<p>Hi,you can simply check the internet IP address by visiting the site <a href="http://www.ip-details.com/">IP-Details.com</a> .</p>UahyagTue, 05 Nov 2013 07:36:39 -0500http://linuxexchange.org/questions/2517/ip-address/3244Answer by chrisjrobhttp://linuxexchange.org/questions/2517/ip-address/2651<p>All the other answers are correct, depending on exactly what you're after. In addition wireless routers usually have a web management screen with "Current DHCP Leases", which tells you who is on your network. Or at least those that have been given an IP address - it does not tell you those that have allocated their own addresses for which nmap is the answer.</p>chrisjrobTue, 02 Aug 2011 08:40:30 -0400http://linuxexchange.org/questions/2517/ip-address/2651Answer by KenJacksonhttp://linuxexchange.org/questions/2517/ip-address/2521<p>For your public IP, try this:</p> <p><strong>curl -s <a href="http://queryip.net/ip/">queryip.net/ip/</a></strong></p>KenJacksonSun, 01 May 2011 01:37:54 -0400http://linuxexchange.org/questions/2517/ip-address/2521Comment by Ron on Jazz's answerhttp://linuxexchange.org/questions/2517/ip-address#2520<p>ifconfig -a if you are on the PC in question and need to know the IP of it; otherwise sudo nmap -sS 192.168.1.1/24</p>RonWed, 27 Apr 2011 14:14:56 -0400http://linuxexchange.org/questions/2517/ip-address#2520Answer by Jazzhttp://linuxexchange.org/questions/2517/ip-address/2518<p>If you refer to the IP Address of your current computer, you're looking for <strong>ifconfig</strong> and <strong>iwconfig</strong>.</p> <p>For discovering other computers on the network, I like to use <strong>nmap</strong>. Example:</p> <pre><code>nmap 192.168.1.1-255 </code></pre> <p>Be aware that scanning the network with <code>nmap</code> might be perceived as an aggressive act in company environments, so be sure to use this only if you have the permission to.</p>JazzWed, 27 Apr 2011 08:01:23 -0400http://linuxexchange.org/questions/2517/ip-address/2518