YinjiangCN/dsh-plugin-ftp-server ↗★ 1
dsh-plugin-ftp-server
Run a configurable FTP file server inside DeepSeek Harness, managed from a browser settings panel (host a shared directory over plain FTP).
AI 분석
核心用途是在 DSH 内部快速搭建并运行 FTP 文件服务器。适合需要通过 FTP 协议共享、传输工作区文件的用户,支持在浏览器设置面板中配置监听地址、端口、共享根目录及用户凭据。
설치
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:YinjiangCN/dsh-plugin-ftp-serverUsage
| Field | Default | Meaning |
|---|---|---|
| 监听地址 (host) | 0.0.0.0 | Bind address |
| 端口 (port) | 2121 | Control port |
| 共享根目录 (root) | workspace/ftp-root | Directory shared over FTP (created on start) |
| 用户名 (user) | ftp | Login account (ignored in anonymous mode) |
| 密码 (pass) | (empty) | Login password |
| 允许匿名 (anonymous) | off | Allow anonymous login |
Clients connect with ftp://@: . The password is kept in memory only; it is passed as a child-process argument and never written to disk.