Filezillaを使用してFTPサーバーに接続しようとしています。ブロードバンドを使用していたときは機能していましたが、大学のインターネットを使用すると次のようになります。
Error: Connection timed out
Error: Failed to retrieve directory listing
パッシブモードとアクティブモードの両方を試しましたが、すべて無駄でした。接続しますが、ディレクトリ一覧を表示できません。
以下は、アクティブモードの完全なログです。
Status: Resolving address of where2service.com
Status: Connecting to 166.62.2.1:21...
Status: Connection established, waiting for welcome message...
Response: 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
Response: 220-You are user number 22 of 500 allowed.
Response: 220-Local time is now 05:09. Server port: 21.
Response: 220-This is a private system - No anonymous login
Response: 220 You will be disconnected after 3 minutes of inactivity.
Command: USER where2service
Response: 331 User where2service OK. Password required
Command: PASS ***********
Response: 230 OK. Current restricted directory is /
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is your current location
Command: TYPE I
Response: 200 TYPE is now 8-bit binary
Command: PORT 192,168,126,200,228,90
Response: 200 Port command successful.
Command: MLSD
Response: 150 Accepted data connection
Response: 226-Options: -a -l
Response: 226 18 matches total
Error: Connection timed out
パッシブモードのログは次のとおりです。
Status: Resolving address of where2service.com
Status: Connecting to 166.62.2.1:21...
Status: Connection established, waiting for welcome message...
Response: 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
Response: 220-You are user number 20 of 500 allowed.
Response: 220-Local time is now 05:13. Server port: 21.
Response: 220-This is a private system - No anonymous login
Response: 220 You will be disconnected after 3 minutes of inactivity.
Command: USER where2service
Response: 331 User where2service OK. Password required
Command: PASS ***********
Response: 230 OK. Current restricted directory is /
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is your current location
Command: TYPE I
Response: 200 TYPE is now 8-bit binary
Command: PASV
Response: 227 Entering Passive Mode (166,62,2,1,174,209)
Command: MLSD
Response: 150 Accepted data connection
Response: 226-Options: -a -l
Response: 226 18 matches total
Error: Connection timed out
Error: Failed to retrieve directory listing
暗号化を「プレーンFTP(安全でない)のみ使用」に更新した後、正常に動作します
それは解決しました、ファイル>サイトマネージャに行き、あなたのサイトを選択し、設定する必要があるということで、「暗号化:プレーンFTP(Insecure)のみを使用して、最後に接続します。 ご覧のとおり
FTP接続は、「ディレクトリリストの取得」または「接続の確立、ウェルカムメッセージの待機」で失敗します。以下の手順に従ってください。これが役立つ場合があります。
アクティブモードでは、次のものを送信します。
Command: PORT 192,168,126,200,228,90
これはプライベートIPアドレスです。サーバーはそのサーバーに接続できません。したがって、これは間違いなくインターネット上のサーバーでは機能しません。アクティブモードを使用する必要がある場合は、ファイアウォール/ルーターを開いて、着信FTP接続をコンピューターに転送する必要があります。 FileZillaで、設定を開きます(Connection
→FTP
→Active mode
)それらを適宜設定します。
パッシブモードでは、次のものを送信します。
Command: PASV
Response: 227 Entering Passive Mode (166,62,2,1,174,209)
これは、FTPサーバーがそのIPとポートへの接続を要求したことを意味します。ファイアウォールで保護されている場合、接続できません。サーバーが適切にセットアップされておらず、ファイアウォールも設定されていない場合、着信接続は表示されません。
詳細については、FileZilla wikiの network configuration article をご覧ください。
ホスティングFTPサーバーに接続すると、エラーが発生しました。
ステータス:接続が確立され、ウェルカムメッセージを待機しています...ステータス:TLSを初期化しています...ステータス:証明書を検証しています...ステータス:TLS接続が確立されました。ステータス:ログインステータス:ディレクトリ一覧の取得...コマンド:PWD応答:257 "/"は現在の場所ですコマンド:TYPE I応答:200 TYPEは8ビットバイナリですコマンド:PASV応答:227パッシブモードへの移行(138,128,162,194,117,133 )コマンド:MLSDエラー:20秒間非アクティブな状態になった後、接続がタイムアウトしましたエラー:ディレクトリリストの取得に失敗しました
これは、上記の問題を解決するための正しいパスです。 FTPクライアントアプリケーションとしてfilezillaを使用しています。
1)[ファイル]メニューをクリックし、[サイトマネージャー]アイコンの上部をクリックします。 2)暗号化セクションで、ドロップダウンから「プレーンFTPのみを使用」を選択します。 3)また、ログオンタイプを「通常」に変更します。
上記のすべてを試しましたが、動作しませんでした。最終的に管理者としてFilezillaを実行することにしました...問題は解決しました。