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

(새 문서: ;/etc/xinetd.d/rsync ==내용== <source lang='bash'> # default: off # description: The rsync server is a good addition to an ftp server, as it \ # allows crc checksumming etc. servic...)
 
 
(같은 사용자의 중간 판 7개는 보이지 않습니다)
9번째 줄: 9번째 줄:
{
{
disable = yes
disable = yes
socket_type    = stream
wait            = no
user            = root
server          = /usr/bin/rsync
server_args    = --daemon
log_on_failure  += USERID
}
</source>
:→ TCP( socket_type = stream, wait = no )
:→ 서비스 데몬은 [[/usr/bin/rsync]], root 권한으로 실행
:→ 접속실패시 로그에 [[USERID]]를 추가 기록<ref>기본설정([[/etc/xinetd.conf]])에 USERID를 추가한 것 (예: HOST USERID)</ref>
<source lang='bash'>
# 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
socket_type    = stream
wait            = no
wait            = no
20번째 줄: 40번째 줄:
==같이 보기==
==같이 보기==
*[[rsync]]
*[[rsync]]
*[[/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 }}