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
2017-03-30 15:17:01 +02:00
committed by Florin Coras
parent 20e1f2acd5
commit 1e8d01f423
2 changed files with 6 additions and 0 deletions

View File

@ -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 */

View File

@ -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) ||