async-ssh2-tokio

This library is an asynchronous and easy-to-use high level SSH client library
for rust with the tokio runtime. Powered by the rust SSH implementation
russh.
Features
- Connect to an SSH Host
- Execute commands on the remote host
- Get the stdout and exit code of the command
Install
[dependencies]
tokio = "1"
async-ssh2-tokio = "0.8.14"
Usage
use async_ssh2_tokio::client::{Client, AuthMethod, ServerCheckMethod};
#[tokio::main]
async fn main() -> Result<(), async_ssh2_tokio::Error> {
let auth_method = AuthMethod::with_password("root");
let mut client = Client::connect(
("10.10.10.2", 22),
"root",
auth_method,
ServerCheckMethod::NoCheck,
).await?;
let result = client.execute("echo Hello SSH").await?;
assert_eq!(result.stdout, "Hello SSH\n");
assert_eq!(result.exit_status, 0);
let result = client.execute("echo Hello Again :)").await?;
assert_eq!(result.stdout, "Hello Again :)\n");
assert_eq!(result.exit_status, 0);
Ok(())
}
Running Tests
- install docker and docker compose
- run shell script
./tests/run_unit_tests.sh