Commit eaaf5c39 authored by Anton Babenko's avatar Anton Babenko

Fixed all-icmp ports (closes #7)

parent a920d8c4
...@@ -105,8 +105,8 @@ variable "rules" { ...@@ -105,8 +105,8 @@ variable "rules" {
all-all = [-1, -1, "-1", "All protocols"] all-all = [-1, -1, "-1", "All protocols"]
all-tcp = [0, 65535, "tcp", "All TCP ports"] all-tcp = [0, 65535, "tcp", "All TCP ports"]
all-udp = [0, 65535, "udp", "All UDP ports"] all-udp = [0, 65535, "udp", "All UDP ports"]
all-icmp = [0, 65535, "icmp", "All IPV4 ICMP"] all-icmp = [-1, -1, "icmp", "All IPV4 ICMP"]
all-ipv6-icmp = [0, 65535, 58, "All IPV6 ICMP"] all-ipv6-icmp = [-1, -1, 58, "All IPV6 ICMP"]
# This is a fallback rule to pass to lookup() as default. It does not open anything, because it should never be used. # This is a fallback rule to pass to lookup() as default. It does not open anything, because it should never be used.
_ = ["", "", ""] _ = ["", "", ""]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment