ssh proxy agent for redrouter
npm install redrouter.resolver.ssh```
{
host : "allderek.com",
port: 22,
username: "derekbro", // This would override the username used by the user at login
password: "password", // If unset, the password is interactively ascertained,
allowed_auth: ["password"] // Methods to attempt for authentication.
}
If you dont wish to supply all of these fields, you can establish defaults by passing the same keys into the resolver_ssh options when you create the RedRouter object:
```
resolvers: [
{ constructor: resolver_ssh,
options: {
defaults: {
allowed_auth: ['password']
}
}
}
],