Created
April 27, 2018 02:45
-
-
Save tintoy/443c42ea3865680cd624039c4bb46219 to your computer and use it in GitHub Desktop.
SSH via jump-hosts using Paramiko
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import paramiko | |
ssh_key_filename = os.getenv('HOME') + '/.ssh/id_rsa' | |
jumpbox_public_addr = '168.128.52.199' | |
jumpbox_private_addr = '10.0.5.10' | |
target_addr = '10.0.5.20' | |
jumpbox=paramiko.SSHClient() | |
jumpbox.set_missing_host_key_policy(paramiko.AutoAddPolicy()) | |
jumpbox.connect(jumpbox_public_addr, username='root', key_filename=ssh_key_filename) | |
jumpbox_transport = jumpbox.get_transport() | |
src_addr = (jumpbox_private_addr, 22) | |
dest_addr = (target_addr, 22) | |
jumpbox_channel = jumpbox_transport.open_channel("direct-tcpip", dest_addr, src_addr) | |
target=paramiko.SSHClient() | |
target.set_missing_host_key_policy(paramiko.AutoAddPolicy()) | |
target.connect(target_addr, username='root', key_filename=ssh_key_filename, sock=jumpbox_channel) | |
stdin, stdout, stderr = target.exec_command("ifconfig") | |
for line in stdout.read().split(b'\n'): | |
print(str(line)) | |
target.close() | |
jumpbox.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey man, just wanted to say thanks for this piece of Code! truly helped me.