Quickzi: Find out what ports are open on Linux
Monday, March 24th, 2008 at
2:02 pm
Heres a quick tip on how to find out what ports are open on your Linux computer without using a port scanner.
# netstat -anp --tcp --udp | grep LISTEN
Cheers!
Popularity: 19% [?]
Tagged with: HowTo • Linux • quickzi • tips
Like this post? Subscribe to my RSS feed and get loads more!













Why don’t you only use netstat?
$ netstat -lntup
Glisha,
That indeed works too. Mine is from habit but your way is much cleaner.
Thanks both for good command
sudo netstat -tap