How to check the concurrent Apache connections and IP address of the remote host?
Jan 27, 2023 · 2 min read · This command is using several command line utilities to gather information about the current network connections on a Linux or Unix-based system. netstat -ntu|awk '{print $5}'|cut -d: -f1 -s|sort|uniq -c|sort -nk1 -r netstat -ntu: The netstat comma...
Join discussion