diff options
author | Filip Varga <fivarga@cisco.com> | 2020-08-30 21:19:55 +0200 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2020-09-02 16:42:41 +0000 |
commit | 6484f4b9cbaf19062444cfe09b39ce1514dd146f (patch) | |
tree | ad70ca1ed7815b0899ba24e962de02a0501908f1 /src/plugins/nat/in2out_ed.c | |
parent | 42845dd56e0694a88a6318f5974724adee8312fe (diff) |
nat: twice-nat static mapping pool address
Let twice-nat static mapping pick specific
address from the twice-nat pool.
Type: improvement
Change-Id: Iadaa036af2fa3b0e6e9a68ff6e68b4bbe1650eb1
Signed-off-by: Filip Varga <fivarga@cisco.com>
Diffstat (limited to 'src/plugins/nat/in2out_ed.c')
-rw-r--r-- | src/plugins/nat/in2out_ed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/nat/in2out_ed.c b/src/plugins/nat/in2out_ed.c index a1f5e5bbc71..448e967b8ae 100644 --- a/src/plugins/nat/in2out_ed.c +++ b/src/plugins/nat/in2out_ed.c @@ -370,7 +370,7 @@ slow_path_ed (snat_main_t * sm, /* First try to match static mapping by local address and port */ if (snat_static_mapping_match (sm, l_addr, l_port, rx_fib_index, nat_proto, &sm_addr, &sm_port, - &sm_fib_index, 0, 0, 0, &lb, 0, &identity_nat)) + &sm_fib_index, 0, 0, 0, &lb, 0, &identity_nat, 0)) { s = nat_ed_session_alloc (sm, thread_index, now, proto); ASSERT (s); @@ -514,7 +514,7 @@ nat44_ed_not_translate (snat_main_t * sm, vlib_node_runtime_t * node, if (!snat_static_mapping_match (sm, ip->dst_address, udp->dst_port, sm->outside_fib_index, proto, &placeholder_addr, &placeholder_port, &placeholder_fib_index, 1, 0, - 0, 0, 0, 0)) + 0, 0, 0, 0, 0)) return 0; } else |