FTP接続でログイン認証が遅い。
これを解決する方法があった。
Edit the file /System/Library/LaunchDaemons/ftp.plist で
以下の部分を探し(12行目)
1 2 3 4 5 |
<xmp><key>ProgramArguments</key> <array> <string>xftpd</string> <string>-a</string> </array></xmp> |
1 2 |
<xmp><string>-a</string>の -a の後に大文字のアイ( I )を書き加える。 <string>-aI</string>である。</xmp> |
ログインに15秒程度かかっていたのが5秒以内になった。