Check ispconfig login history

Discussion in 'General' started by Alexius DIAKOGIANNIS, Oct 27, 2015.

  1. 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?
     
  2. victortruica

    victortruica New Member

    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}'​
     

Share This Page