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?