• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Input Displaying recent top IPs with reverse IP lookups on Plesk Dashboard or Health screen

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:
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
 
I like these directives. For the dashboard it should also be OK, because they cause limited load only. The reverse lookups should be an option. These could take a lot of time.

What's the exact benefit for the administrator seeing the outputs? (What's the business case where the information is helpful?)
 
For a limited number of top IPs, the reverse lookups should be relatively quick and the real benefit to the service provider view would be quickly identifying potential sources of abusive traffic. CloudFlare and other products do a very good job of providing "At a glance" type dashboards like this.
 
Back
Top