-
LINUX Banner(Motd, issue.net, issue) 설정하는 방법System of Infra/Linux System 2022. 6. 27. 23:45반응형
LINUX Banner(Motd, issue.net, issue) 설정하는 방법
[root@localhost /]# cat /etc/motd [root@localhost /]# cat /etc/issue.net \S Kernel \r on an \m [root@localhost /]# cat /etc/issue \S Kernel \r on an \m
▶ 리눅스 시스템에서 Banner 설정을 하는데 필요한 설정 파일들은 대표적으로 3가지가 있습니다. motd, issue.net, issue 설정 파일로 해당 파일들은 Default로 설정이 되어 있지 않은 상태입니다.
★ 배너 설정 파일 종류
1. /etc/motd : Telnet 또는 SSH로 Shell 접속 시 로그인이 성공되었을 때 보이는 메시지
2. /etc/issue.net : Telnet으로 Shell 접속 시 사용자가 로그인할 때, 로그인하기 전에 출력되는 메시지
3. /etc/issue : IDC 센터에 있는 Real 서버에 로컬로 KVM을 붙여서 확인했을 때 출력되는 메시지login as: root Password: **** Last login: Mon Jun 27 23:15:47 from ::ffff:192.168.111.1 [root@localhost ~]#
▶ issue.net의 Default 설정 상태에서 Telnet 접속을 시도하게 되면 로그인하기 전에 출력되는 메시지가 지정되어 있지 않기 때문에 바로 접속 로그인 정보가 출력됩니다.
[root@localhost ~]# vi /etc/issue.net ################################### 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. #####################################################################################
▶ /etc/issue.net 파일에 배너로 출력할 내용들을 입력 후 저장합니다.
################################### 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. ##################################################################################### localhost login: root Password: **** Last login: Mon Jun 27 23:10:49 from ::ffff:192.168.111.100 [root@localhost ~]#
▶ /etc/issue.net에 설정된 배너가 로그인을 하기 전에 미리 출력되어 보이는 것을 확인할 수 있습니다. 강력한 경고성 메시지를 접속 전에 띄워준다면 사용자들이 더 주의를 할 수 있겠습니다.
login as: root root@192.168.111.100's password: **** Last login: Mon Jun 27 21:56:32 2022 [root@localhost ~]#
▶ motd 설정을 테스트하기 위해서 SSH로 접속을 했을 시 로그인에 성공을 했음에도 배너 설정이 되어 있지 않아 바로 Shell 접속이 된 것을 확인할 수 있습니다.
[root@localhost ~]# vi /etc/motd ################################### 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. #####################################################################################
▶ /etc/motd에 경고성 메시지를 입력하고 저장합니다.
login as: root root@192.168.111.100's password: ################################### 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. ##################################################################################### Last login: Mon Jun 27 22:02:17 2022 from 192.168.111.1 [root@localhost ~]#
▶ SSH 접속을 통해서 Shell에 접속 시도 시 로그인이 성공하게 되면 /etc/motd에 설정된 배너가 출력되는 것을 확인할 수 있습니다.
2020.06.11 - [System of Infra/UNIX] - IBM AIX 배너(banner)설정하기
PS. 포스팅의 내용은 제 기준으로 작성한 것이기 때문에 참고해서 보시면 감사하겠습니다.
포스팅 과정의 오류 및 오타 그리고 궁금한 점에 대해서는 댓글 남겨주세요.
반응형'System of Infra > Linux System' 카테고리의 다른 글
LINUX PXE서버구축을 통한 OS 설치하는 방법 (6) 2022.07.06 LINUX NMAP 패키지를 활용한 포트 상태 확인하는 방법 (6) 2022.06.28 LINUX VI 및 VIM 편집기 Set number 설정하는 방법 (4) 2022.06.27 LINUX DNS(마이네임전용)서버 구축하기 (8) 2022.06.23 LINUX Too many open files 에러 해결하는 방법 (10) 2022.06.22