diff options
author | Klement Sekera <ksekera@cisco.com> | 2021-03-03 22:14:55 +0100 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2021-03-07 17:57:32 +0000 |
commit | 76401c5767ecdf701f4c77beee0b721c485321d5 (patch) | |
tree | 0c0c80f4362aabdb6a3565f77e6395724a6cb2fc /src/plugins/nat/nat44-ei/nat44_ei.c | |
parent | e79bbe918b2afa12943ea99b8323dd8f3aef73ab (diff) |
nat: fix worker selection
Use correct ports from SVR. Perform lookup of existing session for all
cases to pick any created bypasses and derive correct thread indexes.
Type: fix
Change-Id: I1e3814c9e13cd4d9b8d65f514f7e9ab42df3c22e
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'src/plugins/nat/nat44-ei/nat44_ei.c')
-rw-r--r-- | src/plugins/nat/nat44-ei/nat44_ei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/nat/nat44-ei/nat44_ei.c b/src/plugins/nat/nat44-ei/nat44_ei.c index d361060a42e..67757015b1d 100644 --- a/src/plugins/nat/nat44-ei/nat44_ei.c +++ b/src/plugins/nat/nat44-ei/nat44_ei.c @@ -1407,7 +1407,7 @@ nat44_ei_get_out2in_worker_index (vlib_buffer_t *b, ip4_header_t *ip0, proto = ip_proto_to_nat_proto (ip0->protocol); udp = ip4_next_header (ip0); - port = udp->dst_port; + port = vnet_buffer (b)->ip.reass.l4_dst_port; /* unknown protocol */ if (PREDICT_FALSE (proto == NAT_PROTOCOL_OTHER)) |