summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChirag Shah <chirag@cumulusnetworks.com>2019-02-04 02:24:59 +0100
committerChirag Shah <chirag@cumulusnetworks.com>2019-02-07 04:57:00 +0100
commitfc08a52fee4eab87f1aeb6bc1295ca11144a22e5 (patch)
treea0de009da8b42813d85bc8f5d16127dd29f5f166
parentMerge pull request #3684 from mjstapp/dplane_pw (diff)
downloadfrr-fc08a52fee4eab87f1aeb6bc1295ca11144a22e5.tar.xz
frr-fc08a52fee4eab87f1aeb6bc1295ca11144a22e5.zip
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 <chirag@cumulusnetworks.com>
-rw-r--r--lib/log.c1
-rw-r--r--lib/zclient.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/log.c b/lib/log.c
index f93695761..c424a5bc9 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 e00821f2f..3a054e5e7 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,