Proxy Command issue
See original GitHub issueVersion: 1.0.150 Platform: darwin 20.6.0 Plugins: none
For example, In my ssh profile i have this in “Proxy command”:
ssh hostname.com -p 55222
And i get this error:
SSH Connecting to hostname.com
SSH Proxy command Using ssh hostname.com -p 55222
SSH Proxy command Pseudo-terminal will not be allocated because stdin is not a terminal.
SSH Proxy command mesg: ttyname failed:
SSH Proxy command Inappropriate ioctl for device
SSH Proxy command -bash: line 1: $'SSH-2.0-ssh2js1.1.0\r': command not found
When i use this command:
ssh -tt hostname.com -p 55222
I get:
SSH Connecting to hostname.com
SSH Proxy command Using ssh -tt hostname.com -p 55222
X Timed out while waiting for handshake
SSH X Remote rejected opening a shell channel: Error: Not connected
SSH hostname.com: session closed
Press any key to reconnect
I originally wanted to connect through a socks proxy, so I used “Proxy command”: ssh root@hostname.com -p 55222 -o “ProxyCommand nc -X 5 -x 127.0.0.1:9050 %h %p” And i get:
SSH Connecting to hostname.com
SSH Proxy command Using ssh -tt root@hostname.com -p 55222 -o "ProxyCommand nc -X 5 -x 127.0.0.1:9050 %h %p"
X Timed out while waiting for handshake
SSH X Remote rejected opening a shell channel: Error: Not connected
SSH hostname.com: session closed
Press any key to reconnect
I love Tabby, but please help make connection with Socks-proxy. I use it on Mac OS with M1 processor.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Proxy Command not working #3815 - iterative/dvc - GitHub
Hello! I have a decentralized setup with a distributed master dvc cache in a private server, it is behind a jump server (proxy)....
Read more >How the Windows Update client determines which proxy ...
To configure a proxy server by using the Netsh.exe tool · Click Start, click Run, type cmd, and then click OK. · At...
Read more >Troubleshooting the proxy server - IBM
The proxy server was created successfully, but I am unable to start it. Check the SYSOUT file for port conflicts. Use the netstat...
Read more >proxy - Problems with SSH ProxyCommand - Stack Overflow
The problem seems to be, that the proxy tries to login with my local rsa_key and not with the key stored on the...
Read more >Problems with SSH ProxyCommand execution - Server Fault
Problems with SSH ProxyCommand execution - Server Fault. Stack Overflow for Teams – Start collaborating and sharing organizational knowledge.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
ssh
as a ProxyCommand because it’s not how ProxyCommand works in general. Use a jump host which is already available in Tabby as a profile option (under Advanced)nc -X 5 -x 127.0.0.1:9050 hostname.com 55222
as your proxy command.In version 1.0.156-nightly.0 all works fine! Thank you!