Answers for "unique IP active connections on server"

0

unique IP active connections on server

netstat -antu | grep :80 | grep -v LISTEN | awk '{print $5}' | cut -d: -f1 | sort | uniq -c
Posted by: Guest on February-12-2021

Code answers related to "unique IP active connections on server"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language