分类: LINUX
2015-01-13 13:44:39
Linux服务器经常需要通过ssh服务远程登录操作。为了提醒登录着,或者非法入侵者,我们可以自定义设置警告或提醒信息,在用户登录时显示。起到警示登录者的作用。
1、# vi /etc/issue.net
###############################################################
# Welcome to Linux7.0 #
# #
# #
###############################################################
2、# vi /etc/ssh/sshd_config
Banner /etc/issue.net //把前面#去掉 后面跟你的banner信息的路径
3、# /etc/init.d/sshd restart // linux7.0 重启任务 systemctl restart sshd.service
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
重新登录就可以了!
登录成功后的信息
#vi /etc/motd //写上你想要的信息