A FTP server based on I2TCP
Project description
介绍
本项目为一款基于I2TCP通讯协议 的文件传输服务器, 有效密钥长度达到512bit,同时嵌有类Google双重认证机制, 确保服务能在公网环境下安全存活。
特性
- 支持文件断点续传
- 支持文件哈希校验
- 仅允许访问设定目录下的文件
- 可设置只读模式
- 512 bits有效密钥长度
- 动态token身份认证
- 可选TLS加 密
安装方法
pip install i2ftp-server
环境需求
Python3.7+
i2cylib >= 1.8.6
集成命令
i2ftps-setup
服务器配置向导i2ftps
服务器启动/停止
默认配置文件路径
/usr/share/i2ftp/server_conf.json
附:通讯协议说明
通讯流程:
- 客户端与服务器建立TCP连接
- 客户端与服务器建立I2TCP连接
- 服务器发送版本号
b"I2FTP x.x"
- 客户端发送User指令
- 服务器响应User指令
协议结构:
底层 TCP/IP
← I2TCP
← User
顶层
User层数据包:
-
客户端命令 - “查询”:
LIST,<PATH>
返回:
<bool 路径是否存在>,{'文件1':{is_dir:<bool 是否是文件夹> size:<int 大小>, time:<float 文件修改时间戳>}}
-
客户端命令 - “请求下载”:
GETF,<PATH>
返回:
<bool 请求是否接受>,[16 bytes 下载会话ID]
-
客户端命令 - “通过会话ID下载”:
DOWN,<16 bytes 下载会话ID>,<int64 文件指针偏移量>
返回:
<bool 操作是否有效>,[bytes 数据内容 最大长度240000 Bytes]
-
客户端命令 - “请求上传”:
PULF,<PATH>,<str_hex 文件哈希校验值>
返回:
<bool 操作是否有效>,[16 bytes 上传会话ID]
-
客户端命令 - “通过会话ID上传”:
UPLD,<16 bytes 上传会话ID>,<int64 文件指针偏移量>,<bytes 数据内容 最大长度240000 Bytes>
返回:
<bool 上传是否成功>,[int 当前文件指针偏移量]
-
客户端命令 - “关闭会话”:
CLOZ,<16 bytes 会话ID>
返回:
<bool 操作是否成功>,[hex_str 若会话为下载会话,则会同时返回文件的SHA256校验值]
-
客户端命令 - “文件/文件夹操作”:
FIOP,<int 命令:0-重命名,1-移动,2-复制,3-删除,4-创建目录>,<str 路径1>,[str 路径2]
返回:
<bool 操作是否成功>
-
管理员命令 - “进程控制”:
PCTL,[raw 保留字段]
返回:
<bool 操作是否成功>,<int 进程PID>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file i2ftps-0.1.0.tar.gz
.
File metadata
- Download URL: i2ftps-0.1.0.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe9dea0d2bcf1a31bc2d7b9fdd140f90fc44ed81923c2066882bf09609f59b2e |
|
MD5 | 182f1f6b7e96f9513c47ce7b6bd6a6dc |
|
BLAKE2b-256 | b100277f3412df6c99943da194f96c1ae2b52b061f44fe6ee598262a4c0f7dee |
File details
Details for the file i2ftps-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: i2ftps-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06491b561bf294046b6753ea560314a5b1fbab39f12935c28753ff50734e62ef |
|
MD5 | bbff36d7237948050b6a461f70db4bc0 |
|
BLAKE2b-256 | fef78d68dd4cb3d954ffb4f8ef88f1d1277fd41b08f09535f911dda1e20e37a2 |