←back to thread

532 points tempaccount420 | 1 comments | | HN request time: 0s | source
Show context
she46BiOmUerPVj ◴[] No.45396551[source]
So with HTTP requests you can see the domain name in the header and forward it to the correct host. That was never a thing you could do with SSH, does this allow that to work?
replies(3): >>45396631 #>>45396916 #>>45397431 #
finaard ◴[] No.45396916[source]
But that wasn't really a thing that was an issue with SSH.

Host *.internal.example.com

  ProxyCommand ssh -q -W %h:%p hop.internal.example.com

in the SSH client config would make everything in that domain hop over that hop server. It's one extra connection - but with everything correctly configured that should be barely noticeable. Auth is also proxied through.
replies(4): >>45397065 #>>45397084 #>>45397359 #>>45397400 #
1. she46BiOmUerPVj ◴[] No.45397359[source]
I'm aware of proxy jump and other client side config but I'd rather that not every single client need to do this configuration.