FileZillaがPSFTPよりもずっと速いのはなぜですか?


11

FileZilla 3.10.3およびPSFTP 0.63(PuTTY)を使用しています。なぜ私が得るスループットが2つのクライアント間で劇的に異なるのかを誰でも教えてくれますか?FileZilla(およびWinSCP)が非常に高速であるため、SFTPプロトコルの欠点だけではありません。前もって感謝します。

FileZillaを使用して、何らかのプロトコルを使用して同じサーバーに接続すると、「良好な」スループットが得られます。1つの大きなファイルにつき約1.2MBPS。ログは次のとおりです。

Response: fzSftp started, protocol_version=2
Command: open "mecorp@ftp.themcorp.com" 22
Trace: Looking up host "ftp.themcorp.com"
Trace: Connecting to 222.22.111.33 port 22
Trace: We claim version: SSH-2.0-PuTTY_Local:_Mar_29_2015_12:25:15
Trace: Server version: SSH-2.0-9.99 sshlib: 8.1.0.0
Trace: Using SSH protocol version 2
Trace: Doing Diffie-Hellman group exchange
Trace: Doing Diffie-Hellman key exchange with hash SHA-1
Trace: Host key fingerprint is:
Trace: ssh-dss 1024 20:88:a6:92:fe:11:db:b4:9a:b5:9e:8b:5f:50:bb:77
Trace: Initialised AES-256 SDCTR client->server encryption
Trace: Initialised HMAC-SHA1 client->server MAC algorithm
Trace: Initialised AES-256 SDCTR server->client encryption
Trace: Initialised HMAC-SHA1 server->client MAC algorithm
Command: Pass: ********
Trace: Sent password
Trace: Access granted
Trace: Opening session as main channel
Trace: Opened main channel
Trace: Started a shell/command
Status: Connected to ftp.themcorp.com
Trace: CControlSocket::ResetOperation(0)
Status: Starting upload of c:\temp\test.zip
Command: cd "/Home/mecorp"
Response: New directory is: "/Home/mecorp"
Trace: CControlSocket::ResetOperation(0)
Trace: FileTransferSend()
Command: put "c:\temp\test.zip" "test.zip"
Status: local:c:\temp\test.zip => remote:/Home/mecorp/test.zip
Trace: FileTransferParseResponse()
Trace: CControlSocket::ResetOperation(0)
Status: File transfer successful, transferred 27,974,088 bytes in 21 seconds

PSFTPを使用して同じプロトコルを使用して同じサーバーに接続し、同じファイルを転送すると、スループットが大幅に低下します。約150kbpsと推定します(Windows 7タスクマネージャーでI / Oバイトを調べます)。ログは次のとおりです。

C:\temp>c:\d2\trunk\Util\psftp.exe -v -l mecorp -pw topsecret -P 22 ftp.themcorp.com
Looking up host "ftp.themcorp.com"
Connecting to 222.22.111.33 port 22
Server version: SSH-2.0-9.99 sshlib: 8.1.0.0
Using SSH protocol version 2
We claim version: SSH-2.0-PuTTY_Release_0.63
Doing Diffie-Hellman group exchange
Doing Diffie-Hellman key exchange with hash SHA-1
Host key fingerprint is:
ssh-dss 1024 20:88:a6:92:fe:11:db:b4:9a:b5:9e:8b:5f:50:bb:77
Initialised AES-256 SDCTR client->server encryption
Initialised HMAC-SHA1 client->server MAC algorithm
Initialised AES-256 SDCTR server->client encryption
Initialised HMAC-SHA1 server->client MAC algorithm
Using username "mecorp".
Sent password
Access granted
Opening session as main channel
Opened main channel
Started a shell/command
Connected to ftp.themcorp.com
Remote working directory is /Home/mecorp
psftp> put test.zip test.zip
local:test.zip => remote:/Home/mecorp/test.zip
psftp>

回答:


23

FileZillaは、SFTP実装にPuTTY / psftpソースコードを使用します。実際、FileZillaは非表示のPSFTPサブプロセスを実行します。

ただし、次のようFzSFtp.exeな最適化(およびその他の変更)をほとんど行わないPSFTPの独自のビルド()を使用します。

  • SFTP転送キューは4 MBです(PSFTPの1 MBと比較して)
  • はるかに大きなチャンクでメモリを割り当てます(515 Bと比較して32 KB)
  • 大きなネットワークバッファーを使用します(SO_RCVBUFに4 MB、SO_SNDBUFに動的サイズ[SIO_IDEAL_SEND_BACKLOG_QUERYを使用])。PSFTPはシステムのデフォルトを保持します。

FileZillaは、PuTTY(VS)とは異なるコンパイラー(mingw)も使用しています。


WinSCPはPSFTPコードにも基づいています(ただし、外部サブプロセスではなく、内部的にPSFTPコードを使用します)。同様の最適化セットを使用します。


4
非常に有益です、マーティン、そしてWinSCPに感謝します!
クリス
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.