From d0661538a15bc26c10b47ddd56f349b2d38a1638 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 21 Sep 2014 22:11:57 +0100 Subject: [PATCH] DNS port --- install-freedombone.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install-freedombone.sh b/install-freedombone.sh index c08dac76..ac4ca5d8 100755 --- a/install-freedombone.sh +++ b/install-freedombone.sh @@ -442,6 +442,15 @@ function save_firewall_settings { chmod +x /etc/network/if-up.d/iptables } +function configure_firewall_for_dns { + if grep -Fxq "configure_firewall_for_ftp" $COMPLETION_FILE; then + return + fi + iptables -A INPUT -i eth0 -p tcp --dport 53 -j ACCEPT + save_firewall_settings + echo 'configure_firewall_for_ftp' >> $COMPLETION_FILE +} + function configure_firewall_for_ftp { if grep -Fxq "configure_firewall_for_ftp" $COMPLETION_FILE; then return @@ -961,6 +970,7 @@ update_the_kernel enable_zram random_number_generator configure_firewall +configure_firewall_for_dns configure_firewall_for_web configure_firewall_for_ftp configure_firewall_ephemeral_ports