LISP: Do not show P-ITR generated mapping
Change-Id: I1aa25ef11dc75002cb9b6aac0981af00026e57ce Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
This commit is contained in:
Filip Tehlar
committed by
Florin Coras
parent
20e1f2acd5
commit
1e8d01f423
@ -772,6 +772,9 @@ send_one_eid_table_details (mapping_t * mapit,
|
||||
u8 *mac = 0;
|
||||
ip_prefix_t *ip_prefix = NULL;
|
||||
|
||||
if (mapit->pitr_set)
|
||||
return;
|
||||
|
||||
switch (filter)
|
||||
{
|
||||
case 0: /* all mappings */
|
||||
|
@ -822,6 +822,9 @@ lisp_show_eid_table_command_fn (vlib_main_t * vm,
|
||||
/* *INDENT-OFF* */
|
||||
pool_foreach (mapit, lcm->mapping_pool,
|
||||
({
|
||||
if (mapit->pitr_set)
|
||||
continue;
|
||||
|
||||
locator_set_t * ls = pool_elt_at_index (lcm->locator_set_pool,
|
||||
mapit->locator_set_index);
|
||||
if (filter && !((1 == filter && ls->local) ||
|
||||
|
Reference in New Issue
Block a user