SSH를 통해 로그인할 때 사용자 정의 인사말

SSH를 통해 로그인할 때 사용자 정의 인사말

SSH를 통해 로그인할 때 서버에 사용자 정의 인사말 메시지를 생성해야 합니다. 아니면 적어도 몇 가지 정보를 추가하고 싶습니다. /etc/ssh/sshd_config, /etc/motd.conf 파일이 없습니다. 그럼 어떻게 해야 하나요?

답변1

로그인 성공 전에 표시되는 메시지:

vim /etc/yourmessage.txt

<yourcontent here>  save/exit

vim /etc/ssh/sshd_config

Banner /etc/yourmessage.txt

사용자가 성공적으로 로그인한 후 표시되는 메시지:-

#create the file /etc/motd 
vim /etc/motd
    <your content here> save/exit

필요한 경우 서버에 openssh-server를 설치해야 합니다 dont have sshd_config.

데비안/우분투인 경우:-

apt-get install openssh-server 

센토스/레드햇용

yum -y install openssh-server openssh-clients

관련 정보