命令上的IIS 8.5错误上的FTPS:LIST

我试图在我的服务器上通过SSLconfigurationFTP。 我在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