通過ip記錄用戶操作歷史命令

 編輯/etc/profile

history
user_ip=`who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[()]//g'`
user_name=`logname`
if [ "$user_ip" = ""  ]
then
user_ip=`hostname`
fi
if  [ ! -d /tmp/history  ]
then
mkdir /tmp/history
chmod 777 /tmp/history
fi
if [ ! -d /tmp/history/${user_name}@${user_ip}  ]
then
mkdir /tmp/history/${user_name}@${user_ip}
chmod 300 /tmp/history/${user_name}@${user_ip}
fi
export HISTSIZE=4096
DT=`date +%F_%H%M%S`
export HISTFILE="/tmp/history/${user_name}@${user_ip}/histroy.$DT"
chmod 600 /tmp/histroy/${user_name}@${user_ip}/*histroy* 2>/dev/null

編輯完成後

source /etc/profile

退出重新登錄到服務器就會把在服務器上所有的操作記錄到指定的文件中

測試結果顯示

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章