Displaying 1 result from an estimated 1 matches for "httpsproxy".
Did you mean:
http_proxy
2001 Oct 18
1
Patch for SSH-tunneling via HTTPS-proxy
...e new call is now:
ssh -p 3128 -H host.on.internet.org:443 myuser at local.proxy
All you need is a SSH-Server running on port 443 on
host.on.internet.org, or if the proxy allows (squid doesn't) port 22.
Cheers
Leif
diff --unified --recursive openssh-2.9.9p2.orig/readconf.c openssh-2.9.9p2.httpsproxy/readconf.c
--- openssh-2.9.9p2.orig/readconf.c Thu Oct 18 11:53:43 2001
+++ openssh-2.9.9p2.httpsproxy/readconf.c Thu Oct 18 11:55:48 2001
@@ -789,6 +789,7 @@
options->num_local_forwards = 0;
options->num_remote_forwards = 0;
options->clear_forwardings = -1;
+ options->https_proxy...