Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试控制对 Linux 和 Solaris 服务器的访问,并且要求某些用户应该看到最后登录时间消息(例如Last login: Thu Jun 27 09:42:20 2013),而有些则不应该。
Last login: Thu Jun 27 09:42:20 2013
是否可以指示sshd仅打印某些用户的上次登录时间?
sshd
笔记:
PrintLastLog
sshd_config
Match
pam_listfile
pam_lastlog
utmp、wtmp、btmp 和 utmpx、wtmpx 和 btmpx 等变体是类 Unix 系统上的文件,用于跟踪系统的所有登录和注销 [http://en.wikipedia.org/wiki/Utmp]
也许您可以尝试重命名或删除这些文件,最后登录消息将不再出现。
注意:我尝试在 AIX 上执行此操作,即使最后一个命令未显示任何记录,最后登录消息仍会继续出现。在删除 /etc/security/lastlog 文件之后,我才能够摆脱该消息。