diff --git a/acls.go b/acls.go index 71395791..6d31066c 100644 --- a/acls.go +++ b/acls.go @@ -386,12 +386,7 @@ func generateACLPolicyDest( func parseProtocol(protocol string) ([]int, bool, error) { switch protocol { case "": - return []int{ - protocolICMP, - protocolIPv6ICMP, - protocolTCP, - protocolUDP, - }, false, nil + return nil, false, nil case "igmp": return []int{protocolIGMP}, true, nil case "ipv4", "ip-in-ip":