diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-04-10 04:15:39 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-04-10 04:15:39 +0000 |
commit | c3865938b55782b5c33f36e6e03b63971753cda1 (patch) | |
tree | 1bc48d528bc9046496d5c69057d270bca8ff389c /pkg/tcpip/stack/iptables.go | |
parent | f3f5f4c1e5bdd6d9340b3349beaae668f970ab07 (diff) | |
parent | d1edabdca016b9d80295855a3ce6d2816486d65c (diff) |
Merge release-20210408.0-17-gd1edabdca (automated)
Diffstat (limited to 'pkg/tcpip/stack/iptables.go')
-rw-r--r-- | pkg/tcpip/stack/iptables.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkg/tcpip/stack/iptables.go b/pkg/tcpip/stack/iptables.go index 52890f6eb..7ea87d325 100644 --- a/pkg/tcpip/stack/iptables.go +++ b/pkg/tcpip/stack/iptables.go @@ -175,9 +175,10 @@ func DefaultTables() *IPTables { }, }, priorities: [NumHooks][]TableID{ - Prerouting: {MangleID, NATID}, - Input: {NATID, FilterID}, - Output: {MangleID, NATID, FilterID}, + Prerouting: {MangleID, NATID}, + Input: {NATID, FilterID}, + Output: {MangleID, NATID, FilterID}, + Postrouting: {MangleID, NATID}, }, connections: ConnTrack{ seed: generateRandUint32(), |