IT运维笔记


用 Python 快速实现 FTP 服务器

安装 Pyftpdlib 模块 pip install pyftpdlib 通过 Python 的 -m 选项将 Pyftpdlib 模块作为一个简单的独立服务器来运行,假设我们需要共享目录 /Users/Mike/Docker,只需要以下这个命令行就可以轻松实现: `$ cd /Users/Mike/Docker $ python -m pyftpdlib
starting FTP server on :::2121, pid=7517 <<< concurrency model: async masquerade (NAT) address: None passive ports: None`
至此一个简单的 FTP 服务器已经搭建完成,访问 ftp://IP:PORT 即可。 默认 IP 为本机所有可用 IP,端口为 2121。 默认登陆方式为匿名。 默认权限是只读。 如果你要建一个有认证且可写的 FTP 服务器,可使用类似以下指令: $ python -m pyftpdlib -i 192.168.100.49 -w -d /tmp/ -u mike -P 123456 小插曲:测试时一直使用密码 000000 这样的弱密码做认证密码,在客户端登陆时一直提示认证失败。看来 Pyftpdlib 模块还做了基本的安全策略哟,不错的! 常用可选参数说明: -i 指定IP地址(默认为本机所有可用 IP 地址) -p 指定端口(默认为 2121) -w 写权限(默认为只读) -d 指定目录 (默认为当前目录) -u 指定登录用户名 -P 指定登录密码 更多参数可以使用以下指令查询:
python -m pyftpdlib --help
Usage: python -m pyftpdlib [options]
Start a stand alone anonymous FTP server.
Options:
-h, --help
show this help message and exit
-i ADDRESS, --interface=ADDRESS
specify the interface to run on (default all interfaces)
-p PORT, --port=PORT
specify port number to run on (default 2121)
-w, --write
grants write access for logged in user (default read-only)
-d FOLDER, --directory=FOLDER
specify the directory to share (default current directory)
-n ADDRESS, --nat-address=ADDRESS
the NAT address to use for passive connections
-r FROM-TO, --range=FROM-TO
the range of TCP ports to use for passive connections (e.g. -r 8000-9000)
-D, --debug
enable DEBUG logging evel
-v, --version
print pyftpdlib version and exit
-V, --verbose
activate a more verbose logging
-u USERNAME, --username=USERNAME
specify username to login with (anonymous login will be disabled and password required if supplied)
-P PASSWORD, --password=PASSWORD
specify a password to login with (username required to be useful)
如果你需卸载 Pyftpdlib 模块,可以通过以下命令: pip uninstall pyftpdlib