Allow for other SSH options on telebit ssh
#17
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I need to run this command to circumvent a filtered connection to setup a SSH tunnel (which is super useful):
ssh -D 8080 -C -o ProxyCommand='openssl s_client -connect %h:443 -servername %h -quiet' blah.blahblah.telebit.website
but it is very long. It work be really nice if I could do something like
telebit ssh -D 8080 -C blahblahblah.telebit.website
ortelebit ssh blahblahblah.telebit.website -D 8080 -C
As long as the arbitrary arguments come after arguments which are known to telebit, it should work fine. (v0.20.6)
So this should already work
But this will not work:
I tried
telebit ssh blahblahblah.telebit.website -D 8080 -C
before I opened the issue and got this:I will look into that.