"/etc/xinetd.d/rsync"의 두 판 사이의 차이

17번째 줄: 17번째 줄:
}
}
</source>
</source>
:→ TCP( socket_type = stream, wait = no )
:→ 서비스 데몬은 [[/usr/bin/rsync]], root 권한으로 실행
:→ 접속실패시 [[USERID]]를 추가로 기록
<source lang='bash'>
<source lang='bash'>
# default: off
# default: off

2014년 6월 14일 (토) 09:30 판

/etc/xinetd.d/rsync

1 내용

# default: off
# description: The rsync server is a good addition to an ftp server, as it \
#	allows crc checksumming etc.
service rsync
{
	disable	= yes
	socket_type     = stream
	wait            = no
	user            = root
	server          = /usr/bin/rsync
	server_args     = --daemon
	log_on_failure  += USERID
}
→ TCP( socket_type = stream, wait = no )
→ 서비스 데몬은 /usr/bin/rsync, root 권한으로 실행
→ 접속실패시 USERID를 추가로 기록
# default: off
# description: The rsync server is a good addition to an ftp server, as it \
#	allows crc checksumming etc.
service rsync
{
	disable	= yes
	flags		= IPv6
	socket_type     = stream
	wait            = no
	user            = root
	server          = /usr/bin/rsync
	server_args     = --daemon
	log_on_failure  += USERID
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}