diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-18 15:24:59 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-18 15:25:51 -0800 |
commit | 247843bbc51d459b279db24a262f68b4dac1cc01 (patch) | |
tree | 4d7b0790894b8076296b602fba08ab1079b3f674 /test/iptables/iptables_util.go | |
parent | 55c553ae8c7937be4a7e10e0c7a727d132317e89 (diff) |
iptables: use "-t nat" for NAT tests
PiperOrigin-RevId: 295835807
Diffstat (limited to 'test/iptables/iptables_util.go')
-rw-r--r-- | test/iptables/iptables_util.go | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/iptables/iptables_util.go b/test/iptables/iptables_util.go index 293c4e6ed..32cf5a417 100644 --- a/test/iptables/iptables_util.go +++ b/test/iptables/iptables_util.go @@ -27,7 +27,16 @@ const iptablesBinary = "iptables" // filterTable calls `iptables -t filter` with the given args. func filterTable(args ...string) error { - args = append([]string{"-t", "filter"}, args...) + return tableCmd("filter", args) +} + +// natTable calls `iptables -t nat` with the given args. +func natTable(args ...string) error { + return tableCmd("nat", args) +} + +func tableCmd(table string, args []string) error { + args = append([]string{"-t", table}, args...) cmd := exec.Command(iptablesBinary, args...) if out, err := cmd.CombinedOutput(); err != nil { return fmt.Errorf("error running iptables with args %v\nerror: %v\noutput: %s", args, err, string(out)) |