i would like to know if there is a way to configure openvpn client to pass traffic for http port 80 and https port 443 not through openvpn , but through the regular default gateway the clients have. all other traffic should go through openvpn.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If your clients are Linux you can do it with Iproute2 and netfilter. Set the default gateway to the VPN Use Netfilter to "mark" paquets going to HTTP or HTTPS:
Now, you can add a new routing table for the "marked" paquets:
And define a rule to send the "marked" packets through this new table:
And a route to send paquets to the default gateway
|
|||
|
|