summaryrefslogtreecommitdiffhomepage
path: root/api/gobgp.proto
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-06-27 23:28:54 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-07-01 21:24:40 +0900
commitccfded2fee746664b576df0a068aec727cb5fae5 (patch)
treec52f10638ad74bca773a7e6120a2edf507670221 /api/gobgp.proto
parent8a3724c7fdd6f02311e669f2aa0fc28190faaf66 (diff)
server/cli: support add/delete EVPN_INCLUSIVE_MULTICAST_ETHERNET_TAG route
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r--api/gobgp.proto9
1 files changed, 8 insertions, 1 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto
index 1467ab51..1e789502 100644
--- a/api/gobgp.proto
+++ b/api/gobgp.proto
@@ -210,7 +210,7 @@ message EVPNNlri {
EVPN_TYPE type = 1;
// EvpnAutoDiscoveryRoute = 2;
EvpnMacIpAdvertisement mac_ip_adv = 3;
-// EvpnInclusiveMulticastEthernetTag = 4;
+ EvpnInclusiveMulticastEthernetTag multicast_etag = 4;
// EvpnEthernetSegmentRoute = 5;
}
@@ -225,6 +225,13 @@ message EvpnMacIpAdvertisement {
repeated uint32 labels = 8;
}
+message EvpnInclusiveMulticastEthernetTag {
+ string rd = 1;
+ uint32 etag = 2;
+ string ip_addr = 3;
+ uint32 ip_addr_len = 4;
+}
+
message RTNlri {
uint32 asn = 1;
ExtendedCommunity target = 2;