Find Open ports in Linux - Linux Views : 309
Tagged in : Linux
0 0
Send mail
Here the command to find the open ports in linux
netstat -anp | grep LISTEN | awk '{print $4}' | sed s/".*:"//g | sort -n -u
By Vinoth, On - 2010-04-26



    Login to add Comments .