summaryrefslogtreecommitdiff
path: root/pkg/iptables/iptables.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/iptables/iptables.go')
-rw-r--r--pkg/iptables/iptables.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/iptables/iptables.go b/pkg/iptables/iptables.go
index 4cdd67ef7c..1f25952bd9 100644
--- a/pkg/iptables/iptables.go
+++ b/pkg/iptables/iptables.go
@@ -66,7 +66,6 @@ func (c *Chain) Forward(action Action, ip net.IP, port int, proto, dest_addr str
"-p", proto,
"-d", daddr,
"--dport", strconv.Itoa(port),
- "!", "-i", c.Bridge,
"-j", "DNAT",
"--to-destination", net.JoinHostPort(dest_addr, strconv.Itoa(dest_port))); err != nil {
return err