Iis

IIS 8.5 上的 FTPS 命令錯誤:LIST

  • April 19, 2015

我正在嘗試在我的伺服器上配置 FTP over SSL。我在 IIS 中添加了一個 FTP 站點並按照嚮導設置綁定和證書。但是,當我嘗試使用 FileZilla 連接到伺服器時,連接被伺服器拒絕。我還注意到沒有出現歡迎消息。我還注意到伺服器發送了一個帶有不可路由地址的回复。我真的不知道如何從這裡開始,因為設置對我來說似乎還可以。

日誌:

Status: Resolving address of jensgm.com
Status: Connecting to 213.153.1.168:990...
Status: Connection established, initializing TLS...
Status: Verifying certificate...
Status: TLS connection established, waiting for welcome message...
Status: Connected
Status: Retrieving directory listing...
Status: Server sent passive reply with unroutable address. Using server address instead.
Command:    LIST
Response:   150 Opening BINARY mode data connection.
Error:  The data connection could not be established: ECONNREFUSED - Connection refused by server
Error:  Connection timed out after 20 seconds of inactivity
Error:  Failed to retrieve directory listing

日誌文件說:

'long time stanp' JENSGM\jensgm 192.168.1.2 21 LIST - 550 1236 15 1cf4a073-6f69-481f-8083-4ec4debfc810 /

'long time stanp' JENSGM\jensgm 192.168.1.2 21 ControlChannelClosed - - 1236 0 1cf4a073-6f69-481f-8083-4ec4debfc810 -

看來您正在使用被動模式。

被動模式使用從 1024 到 65534 的 TCP 埠作為數據通道。

確保沒有防火牆阻止此埠範圍。

否則,切換到活動模式以僅將 TCP/20 用於數據通道。

編輯 :

此外,FTPS 可以在兩種不同的模式下執行:隱式或顯式。

  • 顯式將使用標準埠(用於活動模式):TCP/21 & TCP/20
  • 隱式將 TCP/990 用於命令,TCP/989 用於數據通道

http://en.wikipedia.org/wiki/FTPS

引用自:https://serverfault.com/questions/683859