728x90
1. xinetd 및 telnetd 설치
#apt-get install xinetd telnetd

2. /etc/inetd.conf 파일수정(수정: 없으면 생성) 
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd

3. /etc/xinetd.conf 파일수정(수정: 없으면 생성)
# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/
defaults
{
# Please note that you need a log_type line to be able to use log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}

4. /etc/services 파일수정(수정: 없으면 생성, 이부분 수정하면 port를 바꿀 수 있다)
telnet        23/tcp

5. etc/xinetd.d/telnet 파일수정(수정: 없으면 생성)
# default: on
# description: The telnet server serves telnet sessions; it uses
# unencrypted username/password pairs for authentication.
service telnet
{
disable = no
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}

6. /etc/securetty 파일수정(수정: 마지막에 추가)
pts/0
pts/1
pts/2
pts/3
pts/4
pts/5
pts/6
pts/7
pts/8
pts/9

7. /etc/pam.d/login 파일수정(수정: 마지막에 추가)
auth required /lib/security/pam_listfile.so item=user sense=allow file=/etc/loginuser onerr=succeed

8. /etc/loginuser 파일수정(원하는 계정 모두 추가)
root

9. server 재시작
 /etc/init.d/xinetd restart
728x90

+ Recent posts