SSH欢迎信息包括登录前的信息和登录后的信息。
SSH登录后的信息
修改/etc/motd文件编辑欢迎信息。
如果想关闭上一次登录信息的提示,把/etc/ssh/sshd_config中的PrintLastLog设置成no即可。
修改~/.bash_profile文件还可以添加一些登录ssh之后的一些操作,如:
w # uptime information and who is logged in echo "" # for spacing df -h -x tmpfs -x udev # disk usage, minus def and swap
SSH登录前的信息
新建一个/etc/ssh/sshd-banner文件,里面写上你的warning(banner)信息,例如:
WARNING : Unauthorized access to this system is forbidden and will be
prosecuted by law. By accessing this system, you agree that your actions
may be monitored if unauthorized usage is suspected.
然后在ssh的配置文件/etc/ssh/sshd_config中添加banner文件的路径如下:
Banner /etc/ssh/sshd-banner
然后重启ssh服务即可:service sshd reload