diff --git a/internal/firewall/iptables/list.go b/internal/firewall/iptables/list.go index c6f8168e..8c9a8b73 100644 --- a/internal/firewall/iptables/list.go +++ b/internal/firewall/iptables/list.go @@ -222,10 +222,6 @@ func parseChainRuleField(fieldIndex int, field string, rule *chainRule) (err err return fmt.Errorf("parsing bytes: %w", err) } case targetIndex: - err = checkTarget(field) - if err != nil { - return fmt.Errorf("checking target: %w", err) - } rule.target = field case protocolIndex: rule.protocol, err = parseProtocol(field)