Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
SSH远程自动化工具 - 会话管理、隧道、文件传输。使用场景:需要远程执行命令、建立SSH隧道、传输文件时。
SSH远程自动化工具 - 会话管理、隧道、文件传输。使用场景:需要远程执行命令、建立SSH隧道、传输文件时。
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
基于 ssh2 的 SSH 远程自动化工具,提供会话管理、隧道管理、文件传输等功能。
重要: 请勿在代码中硬编码敏感信息(密码、私钥内容等)。建议: 使用环境变量存储敏感配置 使用密钥文件路径而非密钥内容 将 test.js 中的配置替换为实际配置后再运行
连接池管理(复用连接,提升性能) 自动重连机制 心跳保持 命令队列 并发控制
本地端口转发 远程端口转发 动态端口转发(SOCKS代理) 多隧道管理 自动重连
SFTP 上传/下载 目录同步 文件监控 断点续传
多主机配置 密钥管理 环境变量支持 配置文件热加载
const { Rssh2 } = require('./index.js'); const rssh2 = new Rssh2({ host: 'bg.dlna.net', port: 38022, username: 'root', privateKey: '/home/yupeng/.ssh/id_ed25519' }); // 执行命令 const result = await rssh2.exec('uptime'); console.log(result.output);
// 创建会话管理器 const sessionManager = rssh2.getSessionManager(); // 执行多个命令(复用连接) const results = await Promise.all([ sessionManager.exec('uptime'), sessionManager.exec('df -h'), sessionManager.exec('free -m') ]); // 关闭会话 await sessionManager.close();
// 本地端口转发 const tunnel = await rssh2.tunnel.local({ localPort: 8080, remoteHost: 'localhost', remotePort: 80 }); console.log('隧道已建立: localhost:8080 -> remote:80'); // 关闭隧道 await tunnel.close();
// 上传文件 await rssh2.sftp.upload('./local.txt', '/remote/path/file.txt'); // 下载文件 await rssh2.sftp.download('/remote/path/file.txt', './local.txt'); // 同步目录 await rssh2.sftp.sync('./local-dir', '/remote/dir');
{ host: 'example.com', // 主机地址 port: 22, // SSH端口 username: 'user', // 用户名 password: 'pass', // 密码(可选) privateKey: '/path/to/key', // 私钥路径(可选) passphrase: 'keypass', // 私钥密码(可选) timeout: 10000, // 连接超时(毫秒) keepaliveInterval: 30000 // 心跳间隔(毫秒) }
{ maxPoolSize: 5, // 最大连接池大小 maxConcurrent: 10, // 最大并发命令数 commandTimeout: 30000, // 命令超时(毫秒) retryAttempts: 3, // 重试次数 retryDelay: 1000 // 重试延迟(毫秒) }
{ localPort: 8080, // 本地端口 remoteHost: 'localhost', // 远程主机 remotePort: 80, // 远程端口 autoReconnect: true, // 自动重连 reconnectDelay: 5000 // 重连延迟(毫秒) }
constructor(config) 创建 Rssh2 实例 exec(command, options?) 执行单个命令 getSessionManager() 获取会话管理器实例 getTunnelManager() 获取隧道管理器实例 getSftpManager() 获取 SFTP 管理器实例 connect() 建立连接 disconnect() 断开连接
exec(command, options?) 执行命令(使用连接池) execMultiple(commands) 执行多个命令 close() 关闭所有连接
local(config) 创建本地端口转发 remote(config) 创建远程端口转发 dynamic(config) 创建动态端口转发(SOCKS) closeAll() 关闭所有隧道
upload(localPath, remotePath) 上传文件 download(remotePath, localPath) 下载文件 sync(localDir, remoteDir) 同步目录 list(path) 列出文件 delete(path) 删除文件
const rssh2 = new Rssh2(config); // 检查服务状态 const status = await rssh2.exec('systemctl status nginx'); // 重启服务 await rssh2.exec('systemctl restart nginx'); // 查看日志 const logs = await rssh2.exec('tail -n 100 /var/log/nginx/access.log');
// 创建数据库隧道 const tunnel = await rssh2.tunnel.local({ localPort: 3306, remoteHost: 'localhost', remotePort: 3306 }); // 现在可以通过 localhost:3306 访问远程数据库
// 上传应用文件 await rssh2.sftp.upload('./app.zip', '/tmp/app.zip'); // 解压 await rssh2.exec('cd /var/www && unzip -o /tmp/app.zip'); // 重启服务 await rssh2.exec('systemctl restart app');
const session = rssh2.getSessionManager(); // 并发执行多个命令 const results = await session.execMultiple([ 'uptime', 'df -h', 'free -m', 'ps aux | head -20' ]); console.log(results);
使用密钥认证 - 比密码更安全 限制用户权限 - 不要使用 root 账号 启用防火墙 - 限制 SSH 访问 定期更新密钥 - 轮换 SSH 密钥 日志审计 - 记录所有操作
try { await rssh2.connect(); } catch (error) { console.error('连接失败:', error.message); // 检查主机、端口、认证信息 }
const result = await rssh2.exec('long-running-command', { timeout: 60000 // 60秒超时 });
const tunnel = await rssh2.tunnel.local(config, { autoReconnect: true, reconnectDelay: 5000 });
ssh2 ^1.17.0
MIT
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.