File tree 1 file changed +4
-4
lines changed
files/image_config/caclmgrd
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -284,12 +284,12 @@ class ControlPlaneAclManager(object):
284
284
iptables_cmds .append ("ip6tables -A INPUT -p icmpv6 --icmpv6-type router-advertisement -j ACCEPT" )
285
285
286
286
# Add iptables/ip6tables commands to allow all incoming IPv4 DHCP packets
287
- iptables_cmds .append ("iptables -A INPUT -p udp --dport 67:68 --sport 67:68 - j ACCEPT" )
288
- iptables_cmds .append ("ip6tables -A INPUT -p udp --dport 67:68 --sport 67:68 - j ACCEPT" )
287
+ iptables_cmds .append ("iptables -A INPUT -p udp --dport 67:68 -j ACCEPT" )
288
+ iptables_cmds .append ("ip6tables -A INPUT -p udp --dport 67:68 -j ACCEPT" )
289
289
290
290
# Add iptables/ip6tables commands to allow all incoming IPv6 DHCP packets
291
- iptables_cmds .append ("iptables -A INPUT -p udp --dport 546:547 --sport 546:547 - j ACCEPT" )
292
- iptables_cmds .append ("ip6tables -A INPUT -p udp --dport 546:547 --sport 546:547 - j ACCEPT" )
291
+ iptables_cmds .append ("iptables -A INPUT -p udp --dport 546:547 -j ACCEPT" )
292
+ iptables_cmds .append ("ip6tables -A INPUT -p udp --dport 546:547 -j ACCEPT" )
293
293
294
294
# Add iptables/ip6tables commands to allow all incoming BGP traffic
295
295
# TODO: Determine BGP ACLs based on configured device sessions, and remove this blanket acceptance
You can’t perform that action at this time.
0 commit comments