Dear all, I need to check and find out who were the last 20 users that logged in to my ispconfig panel and ideally their ip address. How can I do that?
Looking in the auth log file cat /var/log/ispconfig/auth.log | grep -i "failed login"Or to get a more specific output - username, ip, date, time cat /var/log/ispconfig/auth.log | grep -i "failed login" | awk '{print $5 , $7 , $9 , $10}'