pleskpanel
Regular Pleskian
- Server operating system version
- All
- Plesk version and microupdate number
- All
Instead of relying on Linux commands, it might be helpful to add these to the home dashboard and/or the health screen, and even more so with corresponding reverse lookups!
Top external addresses with open connections:
Top recent external IPs:
Top external addresses with open connections:
Code:
# netstat -nt | awk '/^tcp/ {print $5}' | awk -F: '{print $1}' | sort | uniq -c | sort -n
Top recent external IPs:
Code:
# tail -50000 /var/log/httpd/access_log | awk '{print $1}' | sort | uniq -c | sort -n | tail