How to deal with redirect traffic in widows2003
Posted
by
Huiyu
on Super User
See other posts from Super User
or by Huiyu
Published on 2012-10-10T01:06:33Z
Indexed on
2012/10/10
3:41 UTC
Read the original article
Hit count: 162
I have set up an OpenVPN server on Windows 2003, and I want to route all client traffic through the VPN, so that my clients can connect to the Internet through the VPN server. In the server configuration, I added push "redirect-gateway def1"
. I know the server needs to be configured to deal with the traffic somehow: for example, on Linux, I can use iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE
. The problem is, I don't know how to deal with the traffic on Windows Server 2003. Is there any way to accomplish this?
© Super User or respective owner