FTPS 在所有 Azure Web 应用程序中突然失败
FTPS suddenly failing across all Azure Web Apps
我有超过 10 个 Azure Web 应用程序,我已经能够手动上传文件到使用 FTPS 超过 3 年。现在突然间,在 Mac 客户端和 Win10 客户端以及其他人的计算机上,我们都遇到了同样的错误,无法手动访问。这也发生在多个订阅中。据我所知,管道仍在使用 ZipDeploy 发布,没有任何问题,所以这似乎是 FTP/FTPS 唯一的问题。
Status: Resolving address of waws-prod-dm1-081.ftp.azurewebsites.windows.net
Status: Connecting to xxx.xxx.xxx.xxx:990...
Status: Connection established, initializing TLS...
Status: Verifying certificate...
Status: TLS connection established, waiting for welcome message...
Status: Logged in
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is current directory.
Command: TYPE I
Response: 200 Type set to I.
Command: PASV
Response: 227 Entering Passive Mode (40,69,166,81,39,156).
Command: LIST
Response: 150 Opening BINARY mode data connection.
Error: GnuTLS error -110: The TLS connection was non-properly terminated.
Status: Server did not properly shut down TLS connection
Error: The data connection could not be established: ECONNABORTED - Connection aborted
Response: 550 The network connection was aborted by the local system.
Error: Failed to retrieve directory listing
首先,重新连接FTP和FTPS两种方式,有时这些连接不稳定,只需删除FTPS端点中的"s"你会得到FTP 端点。
如果仍然失败,您可以转到您的应用程序设置并检查您的 FTP 访问权限是否已禁用。
检查超时设置,在 FileZilla 客户端中进行设置,转到“编辑”、“设置”、“连接”,FTP,然后选中 "Send FTP keep-alive commands" 复选框。
如果这些都不能解决,请配置防火墙设置。
希望对您有所帮助,如果您还有其他问题,请告诉我。
事实证明,跨网络使用的 Switch 需要打补丁。 IT 更新了一堆交换机,这个问题自行解决了。
我有超过 10 个 Azure Web 应用程序,我已经能够手动上传文件到使用 FTPS 超过 3 年。现在突然间,在 Mac 客户端和 Win10 客户端以及其他人的计算机上,我们都遇到了同样的错误,无法手动访问。这也发生在多个订阅中。据我所知,管道仍在使用 ZipDeploy 发布,没有任何问题,所以这似乎是 FTP/FTPS 唯一的问题。
Status: Resolving address of waws-prod-dm1-081.ftp.azurewebsites.windows.net
Status: Connecting to xxx.xxx.xxx.xxx:990...
Status: Connection established, initializing TLS...
Status: Verifying certificate...
Status: TLS connection established, waiting for welcome message...
Status: Logged in
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is current directory.
Command: TYPE I
Response: 200 Type set to I.
Command: PASV
Response: 227 Entering Passive Mode (40,69,166,81,39,156).
Command: LIST
Response: 150 Opening BINARY mode data connection.
Error: GnuTLS error -110: The TLS connection was non-properly terminated.
Status: Server did not properly shut down TLS connection
Error: The data connection could not be established: ECONNABORTED - Connection aborted
Response: 550 The network connection was aborted by the local system.
Error: Failed to retrieve directory listing
首先,重新连接FTP和FTPS两种方式,有时这些连接不稳定,只需删除FTPS端点中的"s"你会得到FTP 端点。
如果仍然失败,您可以转到您的应用程序设置并检查您的 FTP 访问权限是否已禁用。
检查超时设置,在 FileZilla 客户端中进行设置,转到“编辑”、“设置”、“连接”,FTP,然后选中 "Send FTP keep-alive commands" 复选框。
如果这些都不能解决,请配置防火墙设置。
希望对您有所帮助,如果您还有其他问题,请告诉我。
事实证明,跨网络使用的 Switch 需要打补丁。 IT 更新了一堆交换机,这个问题自行解决了。