python - 如何访问 Amazon EC2 上的 pyftpdlib FTPS 服务器?

标签 python amazon-ec2 ftp ftp-server pyftpdlib

我正在尝试使用 Python 库 pyftpdlib 在我的 Ubuntu Amazon EC2 实例上创建一个简单的 FTPS 服务器。

这是直接来自文档的代码:

#!/usr/bin/env python

"""
An RFC-4217 asynchronous FTPS server supporting both SSL and TLS.
Requires PyOpenSSL module (http://pypi.python.org/pypi/pyOpenSSL).
"""

from pyftpdlib.servers import FTPServer
from pyftpdlib.authorizers import DummyAuthorizer
from pyftpdlib.contrib.handlers import TLS_FTPHandler
import os


def main():
    authorizer = DummyAuthorizer()
    authorizer.add_user('ubuntu', '*****', os.getcwd(), perm='elradfmw')
    authorizer.add_anonymous('.')
    handler = TLS_FTPHandler
    handler.certfile = 'keycert.pem'
    handler.authorizer = authorizer
    handler.masquerade_address = '52.23.244.142'
    # requires SSL for both control and data channel
    handler.tls_control_required = True
    handler.tls_data_required = True
    handler.passive_ports = range(60000, 60099)
    server = FTPServer(('', 21), handler)
    server.serve_forever()

if __name__ == '__main__':
    main()

当我在 Amazon EC2 实例上运行脚本并尝试使用 FileZilla 远程连接时,我得到:

Status: Connecting to 52.23.244.142:21...
Status: Connection established, waiting for welcome message...
Response:   220 pyftpdlib 1.4.0 ready.
Command:    AUTH TLS
Response:   234 AUTH TLS successful.
Status: Initializing TLS...
Status: Verifying certificate...
Command:    USER ubuntu
Status: TLS/SSL connection established.
Response:   331 Username ok, send password.
Command:    PASS *****
Response:   230 Login successful.
Command:    OPTS UTF8 ON
Response:   501 Invalid argument.
Command:    PBSZ 0
Response:   200 PBSZ=0 successful.
Command:    PROT P
Response:   200 Protection set to Private
Command:    OPTS MLST type;perm;size;modify;unix.mode;unix.uid;unix.gid;
Response:   200 MLST OPTS type;perm;size;modify;unix.mode;unix.uid;unix.gid;
Status: Connected
Status: Retrieving directory listing...
Command:    PWD
Response:   257 "/" is the current directory.
Command:    TYPE I
Response:   200 Type set to: Binary.
Command:    PASV
Response:   227 Entering passive mode (52,23,244,142,174,172).
Command:    MLSD
Response:   150 File status okay. About to open data connection.
Error:  Connection timed out
Error:  Failed to retrieve directory listing

我想我错过了一些东西。我可以获得帮助吗?

最佳答案

  1. 您的服务器必须在对 PASV 命令的响应中提供其外部 IP 地址。相反,您在 EC2 专用网络中提供一个内部 IP 地址,FileZilla 显然无法连接到该地址。

    虽然 FileZilla 可以解决这个问题:

    Server sent passive reply with unroutable address. Using server address instead.

    其他 FTP 客户端(如 Windows 命令行 ftp.exe)不能。

    使用handler.masquerade_address配置外部IP地址:

    handler.masquerade_address = '52.23.244.142'
    
  2. FileZilla 无法连接到端口 50048 (195 << 8 + 128)。您可能没有在 EC2 防火墙中打开 FTP 被动模式端口范围内的端口。

    参见Setting up FTP on Amazon Cloud Server (特别是 the best answer 中的“步骤 #2:打开 EC2 实例上的 FTP 端口”部分)。

    为了避免打开整个非特权端口范围,请使用 handler.passive_ports 限制 FTP 服务器使用较小的端口范围。 :

    handler.passive_ports = range(60000, 60099)
    
<小时/>

有关一般信息,请参阅我的关于 network setup in respect to FTP passive (and active) connection modes 的文章.

关于python - 如何访问 Amazon EC2 上的 pyftpdlib FTPS 服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34156779/

相关文章:

ruby-on-rails - 是否有支持 FTP 的 Ruby on Rails 主机?

python - 如何应用将向量返回到每个 numpy 数组元素的函数(并获取更高维度的数组)

python - setdefault() 没有关键字参数

python - 子类化 python 字典

python - 如何在 selenium headless 浏览器中退出模态对话框窗口?

ruby-on-rails - 将 Rails 部署到 Amazon EC2 - 很抱歉,出现了问题

linux - 在 AWS Linux 实例中,哪个命令可以代替 systemctl 和 systemd?

php - 使用 ftp 和 php 脚本将图像上传到服务器时出错,在 ftp_put() 登录时出错

python - 用子图绘制 Pandas 数据框(子图=真): Place legend and use tight layout

ftp - Azure网站FTP访问/530用户无法登录