Rahix/tbot

Support jump hosts in the SSH connector

Opened this issue · 2 comments

New feature.

Introduces the -J flag to SSH.

I intend to work on this.

Rahix commented

You can already set a jump-host like this:

class FooHost(connector.SSHConnector):
    hostname = "final.host.to.connect"
    ssh_config = ["ProxyJump=foo@example.com"]

Hope this helps :)

Yep, that works. Thanks!