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

 
(같은 사용자의 중간 판 4개는 보이지 않습니다)
19번째 줄: 19번째 줄:
:→ TCP( socket_type = stream, wait = no )
:→ TCP( socket_type = stream, wait = no )
:→ 서비스 데몬은 [[/usr/bin/rsync]], root 권한으로 실행
:→ 서비스 데몬은 [[/usr/bin/rsync]], root 권한으로 실행
:→ 접속실패시 [[USERID]]를 추가로 기록
:→ 접속실패시 로그에 [[USERID]]를 추가 기록<ref>기본설정([[/etc/xinetd.conf]])에 USERID를 추가한 것 (예: HOST USERID)</ref>


<source lang='bash'>
<source lang='bash'>
41번째 줄: 41번째 줄:
*[[rsync]]
*[[rsync]]
*[[/etc/xinetd.conf]]
*[[/etc/xinetd.conf]]
==주석==
<references/>


[[분류: /etc/xinetd.d]]
[[분류: /etc/xinetd.d]]

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 }}