From 40ed6646e902830881fe2c530ce110d73f5a5a0b Mon Sep 17 00:00:00 2001 From: cassio Date: Thu, 10 Sep 2015 12:36:10 +0100 Subject: updated firewall rules --- tools/etc/network/if-up.d/boca | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tools') diff --git a/tools/etc/network/if-up.d/boca b/tools/etc/network/if-up.d/boca index 0f31ee0..20ff38f 100644 --- a/tools/etc/network/if-up.d/boca +++ b/tools/etc/network/if-up.d/boca @@ -6,9 +6,22 @@ fi /sbin/iptables -F INPUT /sbin/iptables -A INPUT -i lo -j ACCEPT /sbin/iptables -A INPUT -s 143.107.255.15 -j ACCEPT + +# just to make things easier, let's allow communication to/from BOCA servers +/sbin/iptables -A INPUT -s 45.33.30.235 -j ACCEPT +/sbin/iptables -A INPUT -s 50.116.19.221 -j ACCEPT + if [ "$BOCASERVER" != "" ]; then /sbin/iptables -A INPUT -s $BOCASERVER -j ACCEPT fi +if [ "$BOCASERVERS" != "" ]; then + for i in `echo $BOCASERVERS | tr ';' ' '`; do + /sbin/iptables -A INPUT -s $i -j ACCEPT + done +fi +/sbin/iptables -A INPUT -m udp -p udp -s 0/0 --sport 67:68 --dport 67:68 -j ACCEPT +/sbin/iptables -A INPUT -m udp -p udp -s 0/0 --sport 53 --dport 53 -j ACCEPT +/sbin/iptables -A INPUT -m tcp -p tcp -s 0/0 --sport 53 --dport 53 -j ACCEPT /sbin/iptables -A INPUT -j REJECT else if [ -x /etc/icpc/bocaserver.iptables ]; then -- cgit v1.2.3