From: Chirag Shah Date: Mon, 4 Feb 2019 01:24:59 +0000 (-0800) Subject: lib: advertise svi ip as macip opcode X-Git-Tag: 7.1_pulled~264^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=fc08a52fee4eab87f1aeb6bc1295ca11144a22e5;p=matthieu%2Ffrr.git lib: advertise svi ip as macip opcode This change is used to send configue changes for advertise svi address as macip (type-2) route. Ticket:CM-23782 Signed-off-by: Chirag Shah --- diff --git a/lib/log.c b/lib/log.c index f936957611..c424a5bc98 100644 --- a/lib/log.c +++ b/lib/log.c @@ -1027,6 +1027,7 @@ static const struct zebra_desc_table command_types[] = { DESC_ENTRY(ZEBRA_RELEASE_LABEL_CHUNK), DESC_ENTRY(ZEBRA_ADVERTISE_ALL_VNI), DESC_ENTRY(ZEBRA_ADVERTISE_DEFAULT_GW), + DESC_ENTRY(ZEBRA_ADVERTISE_SVI_MACIP), DESC_ENTRY(ZEBRA_ADVERTISE_SUBNET), DESC_ENTRY(ZEBRA_LOCAL_ES_ADD), DESC_ENTRY(ZEBRA_LOCAL_ES_DEL), diff --git a/lib/zclient.h b/lib/zclient.h index e00821f2f6..3a054e5e72 100644 --- a/lib/zclient.h +++ b/lib/zclient.h @@ -125,6 +125,7 @@ typedef enum { ZEBRA_FEC_UNREGISTER, ZEBRA_FEC_UPDATE, ZEBRA_ADVERTISE_DEFAULT_GW, + ZEBRA_ADVERTISE_SVI_MACIP, ZEBRA_ADVERTISE_SUBNET, ZEBRA_ADVERTISE_ALL_VNI, ZEBRA_LOCAL_ES_ADD,