Skip to content

Commit 1587889

Browse files
authoredJul 24, 2020
[caclmgrd] remove default DROP rule on FORWARD chain (#5034)
1 parent 55d3ecd commit 1587889

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎files/image_config/caclmgrd/caclmgrd

-2
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,7 @@ class ControlPlaneAclManager(object):
378378
# add iptables/ip6tables commands to drop all other incoming packets
379379
if num_ctrl_plane_acl_rules > 0:
380380
iptables_cmds.append("iptables -A INPUT -j DROP")
381-
iptables_cmds.append("iptables -A FORWARD -j DROP")
382381
iptables_cmds.append("ip6tables -A INPUT -j DROP")
383-
iptables_cmds.append("ip6tables -A FORWARD -j DROP")
384382

385383
return iptables_cmds
386384

0 commit comments

Comments
 (0)
Please sign in to comment.