Hacker News new | ask | show | jobs
by leftcenterright 905 days ago
This is interesting insight, would you care to share some parts of your ssh config indicating how you use ssh over a proxy here, most likely through a VPN?
1 comments

```

Host github.com

    ProxyCommand connect -H localhost:54321 %h %p
```

localhost:54321 is a SOCK5 proxy, which forwards the traffic through TLS to my VPS server.