LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   IP scanner for Linux (https://www.linuxquestions.org/questions/linux-newbie-8/ip-scanner-for-linux-591416/)

daemonkl 10-12-2007 09:13 PM

IP scanner for Linux
 
hi!

i'm using Angry IP scanner for Windows to scan an IP range just to get ip resolved to hostname, scan open port etc.
http://img398.imageshack.us/my.php?i...6206152ib5.jpg

is there is similar IP scanner for Linux for such functions that i can use for?

matthewg42 10-12-2007 10:06 PM

The command-line port IP/port scanner is nmap. There are a couple of GUI front ends to this program: nmapfe and knmap, although IMO you'd be better off using the command line version.

gundumfx 10-13-2007 10:36 AM

Quote:

Originally Posted by daemonkl (Post 2922498)
hi!

i'm using Angry IP scanner for Windows to scan an IP range just to get ip resolved to hostname, scan open port etc.
http://img398.imageshack.us/my.php?i...6206152ib5.jpg

is there is similar IP scanner for Linux for such functions that i can use for?

wait were did you get that ip scanner? is it for linux?

daemonkl 10-13-2007 02:33 PM

Quote:

Originally Posted by gundumfx (Post 2922944)
wait were did you get that ip scanner? is it for linux?

it's Angry IP scanner - for Windows
and i'm here searching for the same tools which can deliberate the same functions
yes i've tried nmap, but nmap can only resolve one IP at one time
i need to make it resolve in a range e.g 202.185.0.1 - 202.185.0.255
simple task such as IP to hostname resolve in a range of IP set

matthewg42 10-13-2007 02:39 PM

Quote:

Originally Posted by daemonkl (Post 2923160)
it's Angry IP scanner - for Windows
and i'm here searching for the same tools which can deliberate the same functions
yes i've tried nmap, but nmap can only resolve one IP at one time
i need to make it resolve in a range e.g 202.185.0.1 - 202.185.0.255
simple task such as IP to hostname resolve in a range of IP set

nmap can do ranges. You do it like this:
Code:

nmap 202.185.0.1-255
If you just want to see if the machine responds to pings (rather than doing a service scan, which is the default operation), you just add the -sP option. To save the results in a file, you can use shell re-direction - e.g.
Code:

nmap -sP 202.185.0.1-255 > my_scan_results.txt
There are many options to nmap, such as turning off DNS resolution (which can speed things up a lot), and doing scans in parallel etc etc etc. It is a very flexible tool. You should read the manual page to get an idea of what it is capable of.

daemonkl 10-13-2007 06:37 PM

Quote:

Originally Posted by matthewg42 (Post 2923165)
nmap can do ranges. You do it like this:
Code:

nmap 202.185.0.1-255
If you just want to see if the machine responds to pings (rather than doing a service scan, which is the default operation), you just add the -sP option. To save the results in a file, you can use shell re-direction - e.g.
Code:

nmap -sP 202.185.0.1-255 > my_scan_results.txt
There are many options to nmap, such as turning off DNS resolution (which can speed things up a lot), and doing scans in parallel etc etc etc. It is a very flexible tool. You should read the manual page to get an idea of what it is capable of.

thanks man...!
i just found of fping, since my requirement is just to resolve a range of IP to their hostname, i will use fping instead :D

amilauduwerella 03-17-2009 01:49 AM

Quote:

Originally Posted by daemonkl (Post 2922498)
hi!

i'm using Angry IP scanner for Windows to scan an IP range just to get ip resolved to hostname, scan open port etc.
http://img398.imageshack.us/my.php?i...6206152ib5.jpg

is there is similar IP scanner for Linux for such functions that i can use for?




Try,

http://www.angryziber.com/w/Download

ingram87 12-13-2011 08:57 AM

3 ip scanners
 
1. arp-scan
2. nmap
3. Angry IP Scanner

Here is a tutorial on how to install and use them:
http://itswapshop.com/articles/top-3-ip-scanners-linux

linuxmen 12-13-2011 09:45 AM

good


All times are GMT -5. The time now is 10:41 AM.