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 日 |
#41 in #tunnel
每月 99 次下载
在 3 个crate中使用 (2 个直接使用)
30KB
478 代码行
🌐💨 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://apache.ac.cn/licenses/LICENSE-2.0)
- MIT 许可协议 (LICENSE-MIT 或 https://opensource.org/licenses/MIT)
任选其一。
贡献
除非你明确声明,否则根据 Apache-2.0 许可证定义,你提交的任何有意包含在作品中的贡献,都应按上述方式双重许可,不附加任何额外条款或条件。
依赖关系
~15–27MB
~427K SLoC