From 2d2fded0acfe259fa82be2cfb782563cda4973a1 Mon Sep 17 00:00:00 2001 From: Gregory Colpart Date: Mon, 12 Jan 2015 20:54:17 +0100 Subject: [PATCH] use same syntax for all ip6tables rules --- firewall.rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firewall.rc b/firewall.rc index e5a45e8..167aec4 100644 --- a/firewall.rc +++ b/firewall.rc @@ -89,8 +89,8 @@ NTPOK='0.0.0.0/0' #/sbin/ip6tables -A OUTPUT -o $INT -p udp --dport 33434:33523 --match state --state NEW -j ACCEPT # Allow DHCPv6 -/sbin/ip6tables -t filter -A INPUT -i $INT -p udp --dport 546 -d fe80::/64 -j ACCEPT -/sbin/ip6tables -t filter -A OUTPUT -o $INT -p udp --dport 547 -j ACCEPT +/sbin/ip6tables -A INPUT -i $INT -p udp --dport 546 -d fe80::/64 -j ACCEPT +/sbin/ip6tables -A OUTPUT -o $INT -p udp --dport 547 -j ACCEPT ################### IPv4 Specific rules # /sbin/iptables ...