Firewall: now it is possible to connect from one ipfire to a green network of another openvpn connected ipfire

Please take care to put this into the docu! One can create DROP rules if
the remote ipfire should NOT be able to connect to the others internal
networks. Therefor you have to take the green interface IP as SOURCE!
This commit is contained in:
Alexander Marx
2013-12-23 11:05:04 +01:00
parent 454d47a994
commit c0f99754df

View File

@@ -99,7 +99,7 @@ iptables_init() {
# Block OpenVPN transfer networks
/sbin/iptables -N OVPNBLOCK
for i in INPUT FORWARD OUTPUT; do
for i in INPUT FORWARD; do
/sbin/iptables -A ${i} -j OVPNBLOCK
done