设置 Linux 上 SSH 登录的 Email 提醒

作者:Garany 发布于:2015-05-15 分类:破万卷书

1.使用root用户登录到你的服务器;
2.在全局源定义处配置警告(/etc/bashrc),这样就会对 root 用户以及普通用户都生效:
[root@vps ~]# vi /etc/bashrc 
将下面的内容加入到上述文件的尾部。
echo 'ALERT - Root Shell Access (vps.ehowstuff.com) on:' `date` `who` | mail -s "Alert: Root Access from `who | cut -d'(' -f2 | cut -d')' -f1`" recipient@gmail.com 
你也可以选择性地让警告只对 root 用户生效:
[root@vps ~]# vi .bashrc 
将下面的内容添加到/root/.bashrc的尾部:
echo 'ALERT - Root Shell Access (vps.ehowstuff.com) on:' `date` `who` | mail -s "Alert: Root Access from `who | cut -d'(' -f2 | cut -d')' -f1`" recipient@gmail.com 
整个配置文件样例:
# .bashrc 
# User specific aliases and functions 
alias rm='rm -i' 
alias cp='cp -i' 
alias mv='mv -i' 
# Source global definitions 
if [ -f /etc/bashrc ]; then 
 . /etc/bashrc 
fi 
echo 'ALERT - Root Shell Access (vps.ehowstuff.com) on:' `date` `who` | mail -s "Alert: Root Access from `who | cut -d'(' -f2 | cut -d')' -f1`" recipient@gmail.com 
你也可以选择性地让警告只对特定的普通用户生效(例如 skytech):
[root@vps ~]# vi /home/skytech/.bashrc 
将下面的内容加入到/home/skytech/.bashrc文件尾部:
echo 'ALERT - Root Shell Access (vps.ehowstuff.com) on:' `date` `who` | mail -s "Alert: Root Access from `who | cut -d'(' -f2 | cut -d')' -f1`" recipient@gmail.com

标签: linux ssh email

评论列表

李阳博客
2015-06-30 09:27
过来瞅瞅

我来说说