Force programs to use & go through proxy [closed]

My school requires a proxy for all internet access. If you want to use the internet, it is impossible to not use a proxy. This makes it a problem for many programs that don't seem to let you enter proxy settings.

How can I use Steam when I am behind a proxy? Is it possible to somehow enter the details into a configuration file, or force it to get the settings from Internet Explorer?

If not, does software exist for creating a 'virtual' network adapter which will pass all traffic (or all protocol x traffic) through the proxy?

Although I am facing this specific problem on Windows 7, solutions for all operating systems are welcome.


Check out Proxifier. Combined with an SSH tunnel, you should be able to get most programs through any proxy.

My school (and all the others in my state) have a quite elaborate web filtering proxy set up which blocks most ports on the other side of the proxy. I managed to get around it using a combination of the programs mentioned above on Windows.

Just create an SSH tunnel using Putty as necessary, and then set Proxifier to use the tunnel as its proxy. This should route traffic of all ports through the proxies.


My tun2socks software (Linux, Windows) creates a virtual network interface that forwards all incoming TCP connections through a specified proxy server. It can only use a SOCKS proxy, and by default can only forward TCP, though UDP can be forwarded too if you are able to run my udpgw forwarder somewhere behind the SOCKS. Assuming you meet those requirements, here's how you can set it up:

First create the virtual interface and configure it. On Linux:

openvpn --mktun --dev tun0 --user <your_user>
ifconfig tun0 10.0.0.1/24

Or, on Windows, just install OpenVPN to get the TAP-Win32 virtual interface, and assign it IP 10.0.0.1, netmask 255.255.255.0.

Then start tun2socks, which does the actual forwarding:

badvpn-tun2socks --tundev tun0
  --netif-ipaddr 10.0.0.2 --netif-netmask 255.255.255.0
  --socks-server-addr <socks_server_address>:<socks_port>

Here, 10.0.0.2 is the IP of the virtual router inside the virtual interface. It must be in the same subnet as, and different from, the one assigned to the virtual interface itself (10.0.0.1/24). On Windows, instead of tun0, use:

--tundev "tap0901:<display_name_of_TAP-Win32_device>:10.0.0.1:10.0.0.0:255.255.255.0"

At this point you should be able to ping the virtual router 10.0.0.2 (in which case the running tun2socks program will be the one to respond). To forward connections through the proxy, all you have to do is route them through the virtual device. On Linux:

route add default gw 10.0.0.2 metric 0

Or on Windows:

route add 0.0.0.0 mask 0.0.0.0 10.0.0.2 metric 0

The critical part here is that the route overrides any existing default route. Also, if your SOCKS server is not on the local network, you have to add an exception route with higher metric to prevent connections from being routed back into the virtual interface. See the link at the top for more information.


To the best of my knowledge, Steam uses the default proxy settings in Internet Explorer. You can run into issues if you use a proxy script, but they're easy to work around. Just dig around in the script for the proxy addresses and set them up as your proxies, and Steam should work just fine.

If you continue to have issues, you should look on the Steam forums. Valve's Steam developers typically troll the tech support/help forums and provide assistance where necessary.

If you're having issues with individual Steam games, you're probably out of luck, since they tend to use specific ports.


Your best bet is to set the proxy info in Internet Settings in control panel, if your Uni uses a proxy configuration script then you can navigate to that file in your web browser and check out the manual settings or you can run with the script and hope for the best. Steam should work after that. My uni only recently prevented non-proxy steam access so that they could throttle steam download speeds... :(


For Windows there is a free utility, called KKcap:

KKCap, a free proxy software Providing support to SOCKS5, Shadowsocks, etc. A free alternative to proxy software like Proxifier or SSTap. Also a light-weight alternative to VPN. Supports from Windows XP to Windows 10. Redirect connections from of any internet app.

You should configure it for programs which you want to go through your proxy.