cnat: Fix backend LB

Type: fix

Change-Id: I4ea263270bcc38e505e88d512acacef7439f3823
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
This commit is contained in:
Nathan Skrzypczak
2020-10-14 13:26:57 +02:00
committed by Dave Barach
parent 858856df16
commit 41b5ed63c2

View File

@@ -160,7 +160,7 @@ cnat_vip_inline (vlib_main_t * vm,
hash_c0 = (AF_IP4 == ctx->af ?
ip4_compute_flow_hash (ip4, lb0->lb_hash_config) :
ip6_compute_flow_hash (ip6, lb0->lb_hash_config));
bucket0 = hash_c0 & lb0->lb_n_buckets_minus_1;
bucket0 = hash_c0 % lb0->lb_n_buckets;
dpo0 = load_balance_get_fwd_bucket (lb0, bucket0);
/* add the session */