SSH Connection#
- class remote_compression.ssh.SSH(hostname)[source]#
Context manager for making a paramiko connection with possible proxyjump.
- Parameters:
hostname (
str
) – Destination. ~/.ssh/config will be used to retrieve extra parameters.
Examples
>>> with SSH('remote_host') as ssh: ... _stdin, _stdout,_stderr = ssh.exec_command("pwd") ... print(_stdout.read().decode()) /home/fmathieu