知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

linux远程ssh登陆用户的操作记录

发布时间:2013-09-01 22:42:14作者:知识屋

在/etc/profile配置文件的末尾加入以下脚本代码,或者单独生成一个文件,置于/etc/profile.d/目录下,实现SSH远程登陆用户IP地址和终端操作的日志记录。

 

history
USER_IP=`who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[()]//g'`
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/${LOGNAME} ]
then
   mkdir /tmp/history/${LOGNAME}
   chmod 300 /tmp/history/${LOGNAME}
fi
export HISTSIZE=4096
DT=`date +"%Y%m%d_%H%M%S"`
export HISTFILE="/tmp/history/${LOGNAME}/${USER_IP} history.$DT"
chmod 600 /tmp/history/${LOGNAME}/*history* 2>/dev/null

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜