Linux SSH登录电子邮件提醒
导读 | 在本文中介绍如何在Linux系统上为ssh登录设置电子邮件提醒。以接收有关对root用户的未经授权或非法登录访问的警报。 |
.bashrc
文件是一个脚本,每当以交互方式启动新的终端会话时,便会执行该脚本。
以root用户身份登录,然后将以下一行脚本添加到root用户“ .bashrc”文件中以实现此目的:
[[email protected] ~]# vim /root/.bashrcecho 'ALERT - SSH root shell access found on '$HOSTNAME' on:' `date` `who` | mail -s "Alert: SSH root shell access" [email protected]
执行以下命令,使命令生效:
[[email protected] ~]# source .bashrc
完成后,以root用户身份登录。将收到类似以下内容的邮件警报。
将代码中的[email protected]
改为自己用来接收邮件的邮箱。
需要将以下脚本添加到指定用户的.bashrc
文件中:
[[email protected] ~]# vim /home/bob/.bashrcecho 'ALERT - '$USER' shell access found on '$HOSTNAME' on:' `date` `who` | mail -s "Alert: User shell access" [email protected]
将代码中的[email protected]
改为自己用来接收邮件的邮箱。
登录后的提示如下图:
为所有用户启用电子邮件报警和上面的配置类似。但是需要将以下脚本添加到/etc/bashrc
文件最后一行中:
[[email protected] ~]# vim /etc/bashrcecho 'ALERT - '$USER' shell access found on '$HOSTNAME' on:' `date` `who` | mail -s "Alert: User shell access" [email protected]
在本文中介绍了如何在Linux系统上为ssh登录设置电子邮件提醒。以接收有关对root用户的未经授权或非法登录访问的警报。
以上是 Linux SSH登录电子邮件提醒 的全部内容, 来源链接: utcz.com/a/120125.html