Narrow this forward to only valid ips at site.

This commit is contained in:
Kevin Fenzi 2014-07-05 21:33:31 +00:00
parent 692458e19e
commit 2032b6396a

View file

@ -60,7 +60,8 @@
# otherwise kick everything out
-A INPUT -j REJECT --reject-with icmp-host-prohibited
{% if virthost is defined %}
-A FORWARD -j ACCEPT
-A FORWARD -s 67.203.2.64/29 -j ACCEPT
-A FORWARD -d 67.203.2.64/29 -j ACCEPT
{% else %}
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
{% endif %}