답변:
두 프로토콜 모두 SSH를 기반으로합니다. 그리고 SSH 자체에는 약간의 오버 헤드가 있습니다 .
SCP는 몇 개의 작은 파일을 전송하기위한 순진한 알고리즘을 갖춘 순진한 프로토콜입니다. 많은 동기화 (RTT-왕복 시간)와 작은 버퍼 (기본적으로 2048 B- 소스 )가 있습니다.
Rsync는 성능을 위해 만들어 졌으므로 훨씬 더 나은 결과를 제공하고 더 많은 기능을 제공합니다.
10 배 속도 향상은 사용자의 상황에 따라 다릅니다. 대기 시간이 긴 레인을 통해 전 세계에 파일을 전송하는 scp
경우 케이스에서 성능이 훨씬 떨어지지 만 로컬 네트워크에서는 성능이 거의 동일 할 수 있습니다.
그리고 압축 ( -C
for scp
)은 도움이되지 않습니다. 가장 큰 문제는 대기 시간과 버퍼 크기입니다.
SCP는 기본적으로 SSH를 사용하여 로컬에서 또는 네트워크를 통해 소스에서 대상으로 일반 오래된 사본을 수행하지만 -C
스위치를 사용하여 SSH 압축을 활성화하여 네트워크에서 데이터 사본의 속도를 높일 수 있습니다.
RSYNC 는 데이터 전송 중 네트워크 연결을 자동으로 최적화하는 효율적인 체크섬 검색 알고리즘을 사용하여 네트워크 연결을 통해 두 파일 세트 간의 차이점 만 전송합니다.
RSYNC
기술
rsync is a program that behaves in much the same way that rcp does, but has many more options and uses the rsync remote-update protocol to greatly speed up file transfers when the destination file is being updated. The rsync remote-update protocol allows rsync to transfer just the dif- ferences between two sets of files across the network connection, using an efficient checksum-search algorithm described in the technical report that accompanies this package.
SCP
기술
scp copies files between hosts on a network. It uses ssh(1) for data transfer, and uses the same authentication and provides the same secu‐ rity as ssh(1). scp will ask for passwords or passphrases if they are needed for authentication. File names may contain a user and host specification to indicate that the file is to be copied to/from that host. Local file names can be made explicit using absolute or relative pathnames to avoid scp treat‐ ing file names containing ‘:’ as host specifiers. Copies between two remote hosts are also permitted.
-C
않습니다. t 파이프로 전송하는 동안 데이터를 압축합니까?
rsync
명령 행에 지정되어 있지 않습니다 . 물론 파일 내 델타 알고리즘이 항상 활성화되어 있습니다. 아마 그게 scp
짜증 일 것입니다 .