diff options
author | Neale Ranns <nranns@cisco.com> | 2019-03-27 05:06:47 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-03-27 13:40:50 +0000 |
commit | 4dd4cf4f9c02953f8ce7df0b2912e4da7c6786ed (patch) | |
tree | a576b3aec3b37fdc32b132ac554bbf7b20697559 /src/plugins/gbp/gbp_classify_node.c | |
parent | d709cbcb1ef80633af657c5427608831e5bbd919 (diff) |
GBP: fixes for l3-out routing
Change-Id: I4d73b712da911588d511a8401b73cdc3c66346fe
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/plugins/gbp/gbp_classify_node.c')
-rw-r--r-- | src/plugins/gbp/gbp_classify_node.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/gbp/gbp_classify_node.c b/src/plugins/gbp/gbp_classify_node.c index 9d9e29303e6..1179076a4c7 100644 --- a/src/plugins/gbp/gbp_classify_node.c +++ b/src/plugins/gbp/gbp_classify_node.c @@ -516,6 +516,10 @@ gbp_lpm_classify_inline (vlib_main_t * vm, lb0 = load_balance_get (lbi0); dpo0 = load_balance_get_bucket_i (lb0, 0); + /* all packets from an external network should not be learned by the + * reciever. so set the Do-not-learn bit here */ + vnet_buffer2 (b0)->gbp.flags = VXLAN_GBP_GPFLAGS_D; + if (gbp_policy_dpo_type == dpo0->dpoi_type) { gpd0 = gbp_policy_dpo_get (dpo0->dpoi_index); |