5 个版本 (3 个重大变更)
0.4.0 | 2021年9月5日 |
---|---|
0.3.0 | 2021年9月2日 |
0.2.0 | 2021年6月12日 |
0.1.1 | 2021年3月25日 |
0.1.0 | 2021年3月13日 |
#50 在 #tunnel
每月134 次下载
在 4 个crate中使用(通过 ssh_jumper)
14KB
246 代码行
🌐💨 SSH Jumper
通过跳转主机进行异步 SSH 隧道。
use std::borrow::Cow;
use ssh_jumper::{
model::{HostAddress, HostSocketParams, JumpHostAuthParams, SshTunnelParams},
SshJumper
};
// Similar to running:
// ssh -i ~/.ssh/id_rsa -L 1234:target_host:8080 [email protected]
let (local_socket_addr, ssh_forwarder_end_rx) = {
let jump_host = HostAddress::HostName(Cow::Borrowed("bastion.com"));
let jump_host_auth_params = JumpHostAuthParams::new(
Cow::Borrowed("my_user"),
Cow::Borrowed(Path::new("~/.ssh/id_rsa")),
);
let target_socket = HostSocketParams {
address: HostAddress::HostName(Cow::Borrowed("target_host")),
port: 8080,
};
let ssh_params =
SshTunnelParams::new(jump_host, jump_host_auth_params, target_socket)
// Optional: OS will allocate a port if this is left out
.with_local_port(1234);
SshJumper::open_tunnel(&ssh_params).await?
};
// Now you can send traffic to `local_socket_addr`, and it will go to `target_host`.
许可
许可协议为以下之一
- Apache 许可证2.0版(LICENSE-APACHE 或 https://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证(LICENSE-MIT 或 https://opensource.org/licenses/MIT)
由您选择。
贡献
除非您明确声明,否则根据Apache-2.0许可证定义,您提交的任何有意包含在作品中的贡献将如上所述双许可,无需任何额外条款或条件。
依赖关系
~15–30MB
~446K SLoC