FTPに接続している2人のクライアント(IISの一部として構成されています)が、クライアントは両方ともFTPに正常に接続できますが、クライアントAは「550アクセスが拒否されました。クライアントBがファイルを正常にアップロードできる間にファイルをアップロードしようとすると、「重大なファイル転送エラー」が発生します。 Windows環境でFilezillaを使用しています。FTP「550アクセスが拒否されました」エラー
クライアント出力
Status: Resolving address of 000.000.000.00
Status: Connecting to 000.000.000.00:21...
Status: Connection established, waiting for welcome message...
Response: 220 Microsoft FTP Service
Command: USER wg\transfer
Response: 331 Password required for wg\transfer.
Command: PASS *********
Response: 230 User wg\transfer logged in.
Status: Connected
Status: Starting upload of C:\upload.zip
Command: CWD/
Response: 250 CWD command successful.
Command: TYPE I
Response: 200 Type set to I.
Command: PASV
Response: 227 Entering Passive Mode (000,000,000,00,22,96).
Command: STOR upload.zip
Response: 550 Access is denied.
Error: Critical file transfer error
クライアントB出力が
Status: Resolving address of 000.000.000.00
Status: Connecting to 000.000.000.00:21...
Status: Connection established, waiting for welcome message...
Response: 220 Microsoft FTP Service
Command: USER wg\transfer
Response: 331 Password required for wg\transfer.
Command: PASS *********
Response: 230 User wg\transfer logged in.
Status: Connected
Status: Starting upload of C:\upload.zip
Command: CWD/
Response: 250 CWD command successful.
Command: PWD
Response: 257 "/" is current directory.
Command: TYPE I
Response: 200 Type set to I.
Command: PASV
Response: 227 Entering Passive Mode (000,000,000,00,22,99).
Command: STOR upload.zip
Response: 125 Data connection already open; Transfer starting.
Response: 226 Transfer complete
Status: File transfer successful, transferred 22,197 bytes in 7 seconds
Status: Retrieving directory listing...
Command: PASV
Response: 227 Entering Passive Mode (000,000,000,00,22,100).
Command: LIST
Response: 125 Data connection already open; Transfer starting.
Response: 226 Transfer complete
は、誰もがこの上の任意の光を当てることができますか?私は、クライアントAがファイルをアップロードできないようにファイアウォールの設定をしていると思っていますが、これはかなり奇妙に思えます。
ありがとうございます!
FTPクライアントの別の実装を見つけて、両方で動作するかどうかを確認するにはどうすればよいですか? –