Quote:
Originally Posted by ALInux
Hi guys
I know that I can use netstat to display open ports...
Another question:
I get the following output when I use the mentioned command :
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1252/sshd
What does the 0.0.0.0 refer to ? The localoop or what ?
|
First of all congrats to LQ owners & all other members for upgrading LQ to VB.
Use #nmap -sS -sT -p0 -v <ip-address>
-sS for steath scan
-sT for tcp
-p0 for not to ping
-v verbose
You can refer man page of nmap for other options.
Over to second question... AFAIK 0.0.0.0 refers to the default network.. It works in cases as if you have started apache, it may starts on 0.0.0.0:80.
..amit..