Ich versuche, eine SSH über https-Verbindung mit Nginx einzurichten. Ich habe keine funktionierenden Beispiele gefunden, daher wäre jede Hilfe dankbar!
~$ cat .ssh/config
Host example.net
Hostname example.net
ProtocolKeepAlives 30
DynamicForward 8118
ProxyCommand /usr/bin/proxytunnel -p ssh.example.net:443 -d localhost:22 -E -v -H "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Win32)"
~$ ssh [email protected]
Local proxy ssh.example.net resolves to 115.xxx.xxx.xxx
Connected to ssh.example.net:443 (local proxy)
Tunneling to localhost:22 (destination)
Communication with local proxy:
-> CONNECT localhost:22 HTTP/1.0
-> Proxy-Connection: Keep-Alive
-> User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Win32)
<- <html>
<- <head><title>400 Bad Request</title></head>
<- <body bgcolor="white">
<- <center><h1>400 Bad Request</h1></center>
<- <hr><center>nginx/1.0.5</center>
<- </body>
<- </html>
analyze_HTTP: readline failed: Connection closed by remote host
ssh_exchange_identification: Connection closed by remote host
Nginx-Konfiguration auf dem Server;
~$ cat /etc/nginx/sites-enabled/ssh
upstream tunnel {
server localhost:22;
}
server {
listen 443;
server_name ssh.example.net;
location / {
proxy_pass http://tunnel;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect off;
}
ssl on;
ssl_certificate /etc/ssl/certs/server.cer;
ssl_certificate_key /etc/ssl/private/server.key;
}
~$ tail /var/log/nginx/access.log
203.xxx.xxx.xxx - - [08/Feb/2012:15:17:39 +1100] "CONNECT localhost:22 HTTP/1.0" 400 173 "-" "-"
Das ist eine alte Frage, aber immer noch aktuell :-)
Wie bereits erwähnt, ist dieses Setup aufgrund der fehlenden HTTP CONNECT-Methode in Nginx kaum verfügbar.
HINWEIS: Der Apache-Webserver unterstützt dieses Setup.
Aber für Nginx gibt es eine Lösung ohne SSL, denke ich in Form eines benutzerdefinierten Nginx-Moduls, das HTTP CONNECT implementiert: https://github.com/chobits/ngx_http_proxy_connect_module
Wenn Sie dies verwenden, sollten Sie in der Lage sein, in Ihrer ssh-Konfiguration nur ProxyCommand ordnungsgemäß zu verwenden.
quelle