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

 
19번째 줄: 19번째 줄:
:→ TCP( socket_type = stream, wait = no )
:→ TCP( socket_type = stream, wait = no )
:→ 서비스 데몬은 [[/usr/bin/rsync]], root 권한으로 실행
:→ 서비스 데몬은 [[/usr/bin/rsync]], root 권한으로 실행
:→ 접속실패시 로그에 [[USERID]]를 추가 기록<ref>[[/etc/xinetd.conf]]의 log_on_failure 설정을 기본으로 USERID가 추가되는 . (예: HOST USERID)</ref>
:→ 접속실패시 로그에 [[USERID]]를 추가 기록<ref>기본설정([[/etc/xinetd.conf]])에 USERID를 추가한 것 (예: HOST USERID)</ref>


<source lang='bash'>
<source lang='bash'>

2014년 6월 14일 (토) 09:50 기준 최신판

/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를 추가 기록[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
	flags		= IPv6
	socket_type     = stream
	wait            = no
	user            = root
	server          = /usr/bin/rsync
	server_args     = --daemon
	log_on_failure  += USERID
}

2 같이 보기[ | ]

3 주석[ | ]

  1. 기본설정(/etc/xinetd.conf)에 USERID를 추가한 것 (예: HOST USERID)
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}