diff --git a/gestion/gen_confs/firewall.py b/gestion/gen_confs/firewall.py index f03c1d75..0bd4a259 100644 --- a/gestion/gen_confs/firewall.py +++ b/gestion/gen_confs/firewall.py @@ -1211,8 +1211,8 @@ class firewall_sable(firewall_rouge): if_radin = "eth0.%d" % vlans["radin"] # forward pour le https pour le vlan radin - iptables("-t filter -A FORWARD -i %s -p tcp -m tcp --dport 443 -j ACCEPT" % if_radin) - iptables("-t filter -A FORWARD -o %s -p tcp -m tcp --sport 443 -j ACCEPT" % if_radin) + iptables("-t filter -A FORWARD -i %s -p tcp -m tcp --dport https -j ACCEPT" % if_radin) + iptables("-t filter -A FORWARD -o %s -p tcp -m tcp --sport https -j ACCEPT" % if_radin) def nat_table(self): firewall_rouge.nat_table(self)