运行时依赖
安装命令
点击复制技能文档
Rssh2 - SSH远程自动化工具 基于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 // 重连延迟(毫秒) }
API参考 Rssh2主类 constructor(config) 创建Rssh2实例 exec(command, options?) 执行单个命令 getSessionManager() 获取会话管理器实例 getTunnelManager() 获取隧道管理器实例 getSftpManager() 获取SFTP管理器实例 connect() 建立连接 disconnect() 断开连接 SessionManager exec(command, options?) 执行命令(使用连接池) execMultiple(commands) 执行多个命令 close() 关闭所有连接 TunnelManager local(config) 创建本地端口转发 remote(config) 创建远程端口转发 dynamic(config) 创建动态端口转发(SOCKS) closeAll() 关闭所有隧道 SftpManager upload(localPath, remotePath) 上传文件 download(remotePath, localPath) 下载文件 sync(localDir, remoteDir) 同步目录 list(path) 列出文件 delete(path) 删除文件
使用场景
- 远程运维
- 数据库隧道
- 文件部署
- 批量操作
安全建议 使用密钥认证 - 比密码更安全 限制用户权限 - 不要使用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