Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A server has OpenVPN and Squid installed. OpenVPN clients now have the access to the internet thanks to push "route 172.16.0.1 255.255.255.0", push "redirect-gateway def1 bypass-dhcp" in OpenVPN server config and the following iptables rules:

/sbin/iptables -t nat -A POSTROUTING -o venet0 -j MASQUERADE
/sbin/iptables -A FORWARD -i venet0 -o tun0 -m state --state RELATED,ESTABLISHED -j ACCEPT
/sbin/iptables -A FORWARD -i tun0 -o venet0 -j ACCEPT

Can I add one more link in this chain between OpenVPN Server and Internet to limit the list of allowed sites by means of Squid (that is the aim)?

How can I insert Squid here?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.