I found some ways making most of google’s services working in my working place, but not for google docs, google drive, google plus…
I got a VPS somewhere, windows 2003, which is quite easy creating a port proxy.
Steps:
Make sure you have 443 port not in use.
Install IPv6
To make the portproxy work on windows 2003, IPv6 must be installed, even for a v4 to v4 proxy.
1 |
netsh intereface ipv6 install |
Create the portproxy
Syntax can be found here: Netsh commands for Interface Portproxy
1 |
netsh interface portproxy add v4tov4 listenport=443 connectaddress=74.125.204.101 connectport=443 |
Check if port is open
After the add operation, check if the 443 port is open using:
1 |
netstat -an | find ":443" |
Delete the portproxy
Same syntax as above.
1 |
netsh interface portproxy delete v4tov4 listenport=443 connectaddress=74.125.204.101 connectport=443 |
Create portproxy on Port 80
1 |
netsh interface portproxy add v4tov4 listenport=80 connectaddress=74.125.204.101 connectport=80 |
Set up Port Proxy for Google by @sskaje: https://sskaje.me/2014/06/set-port-proxy-for-google/
Link to this post!