In my case some of proxy servers from USA block connection to Russian websites. Not so frequent like 5%, but I have to open macrolab website and check connection before I use new proxy for anything. You may, in principle,
edit routing table and bypass VPN in case of connection to macrolab webserver. Need to open command prompt and add a route
Code: |
route -p ADD 212.109.222.98 MASK 255.255.255.0 gateway_ip
|
To figure out your gateway_ip you can run additional command:
and find IP of your default gateway. It is IP address of your router in your local network, e.g. 192.168.0.1
To delete route use
Code: |
route delete 212.109.222.98
|