parallel-ssh
parallel-ssh copied to clipboard
Asynchronous parallel SSH client library.
Feature Request ---------------------- Add OpenSSH config reading functionality for `libssh2` clients. Currently only the paramiko based clients have openssh config functionality for overriding configuration. Provide this functionality to the `libssh2`...
**Is your feature request related to a problem? Please describe.** Client does not check authentication methods that are allowed to continue as reported by server and always attempts what authentication...
**Is your feature request related to a problem? Please describe.** Compression cannot be enabled in clients. Compression is enabled in the underlying SSH libraries, but cannot be configured in parallel-ssh....
**Is your feature request related to a problem? Please describe.** Setting preferred algorithms for use by client is not possible. **Describe the solution you'd like** Add optional parameters to clients...
**Describe the bug** When I try to connect to a host using a private key, it doesn't work. With the `ssh` command line client, it works fines. **To Reproduce** Steps...
Hi, thanks for a great library and the time to maintain / build it. Would it be possible to get a release on pypi that supports python3.11? I notice it's...
**Is your feature request related to a problem? Please describe.** I'm trying to determine if/how parallel-ssh can be used for local port forwarding (tunneling) in a way that allows for...
**Is your feature request related to a problem? Please describe.** If the file I'm copying already exists on the host device, `copy_file` will still copy it which takes time. **Describe...
_For general questions please use the [mail group](https://groups.google.com/forum/#!forum/parallel-ssh)._ **Describe the bug** `parallel-ssh` sometimes redirects stdout to stderr in the output. **To Reproduce** Create a "hostfile" and an example script: ```...
_For general questions please use the [mail group](https://groups.google.com/forum/#!forum/parallel-ssh)._ **Describe the bug** The example in the README is broken: ``` from pssh.clients import ParallelSSHClient hosts = ['localhost', 'localhost'] client = ParallelSSHClient(hosts)...