2009-09-25 23:25:23 UTC
Hello all.
I am running a OpenVpn server on a Windows machine, and it has the next configuration:
server.ovpn
port 1194
proto udp
dev tun
ca ca.crt
cert widget.crt
key widget.key
dh dh1024.pem
server 10.10.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option WINS 192.168.0.1"
push "dhcp-option DNS 192.168.0.1"
push "dhcp-option DOMAIN acme.com.local"
keepalive 10 120
comp-lzo
max-clients 4
persist-key
persist-tun
status openvpn-status.log
verb 3
I can easily connect with the generated certificades, but the problem that it passes all the traffic throught the server, and i just want to have it passing only connections that are being done to 10.10.0.* .
Thanks in advance.