connect

Adds SOCKS and HTTPS proxy support to SSH connections

brewmacoslinux
Try with needOr install directly
Source

About

Provides SOCKS and HTTPS proxy support to SSH

Commands

connect

Examples

Connect through a SOCKS5 proxy to a remote SSH server$ ssh -o ProxyCommand="connect -S proxy.example.com:1080 %h %p" user@remote.example.com
Connect through an HTTPS proxy to reach an SSH host$ ssh -o ProxyCommand="connect -H proxy.example.com:8080 %h %p" user@remote.example.com
Use connect with authentication credentials for the proxy$ connect -S proxy.example.com:1080 -a username:password remote.example.com 22