Python Script To Ssh Into A Jumphost And Sftp From Within That Box
I'm currently trying to write an airflow job that will allow me to ssh into an EC2 instance and then start an sftp session with another host from within this EC2 box. My current co
Solution 1:
For your literal question, see: Pass input/variables to command/script over SSH using Python Paramiko
Though implementing an SFTP over jump host this way is not a good solution.
Use port forwarding instead:
Post a Comment for "Python Script To Ssh Into A Jumphost And Sftp From Within That Box"