xinetd 모드로 proftpd 변경
2010.05.12 07:49
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
본문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
[inetd 모드로 proftpd 변경]
1. /etc/proftpd/proftpd.conf 파일을 수정
----------------------------------------
ServerType inetd
Port 항목과 MaxInstances 항목은 주석처리
----------------------------------------
proftpd 데몬 정지
2. vi /etc/xinetd.d/proftp (설정파일을 신규로 작성)
service ftp
{
disable = no
flags = REUSE
protocol = tcp
socket_type = stream
port = 21
instances = 30
wait = no
user = root
server = /usr/sbin/in.proftpd
log_on_success = HOST PID
log_on_failure = HOST RECORD
}
3. /etc/init.d/xinetd restart
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
[inetd 모드로 proftpd 변경]
1. /etc/proftpd/proftpd.conf 파일을 수정
----------------------------------------
ServerType inetd
Port 항목과 MaxInstances 항목은 주석처리
----------------------------------------
proftpd 데몬 정지
2. vi /etc/xinetd.d/proftp (설정파일을 신규로 작성)
service ftp
{
disable = no
flags = REUSE
protocol = tcp
socket_type = stream
port = 21
instances = 30
wait = no
user = root
server = /usr/sbin/in.proftpd
log_on_success = HOST PID
log_on_failure = HOST RECORD
}
3. /etc/init.d/xinetd restart