summaryrefslogtreecommitdiffstats
path: root/vpp-integration
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-12-20 12:54:11 +0100
committerMarek Gradzki <mgradzki@cisco.com>2017-12-20 13:03:58 +0100
commit6bb01993fda9b927923ba351d5509ed741ad616e (patch)
treeb91d34c63c552cf3923bde5cf9d55c4eaa52b2ef /vpp-integration
parent5b59e1bd3009a2d9a37c5df86bf34b3d3673f0ea (diff)
HC2VPP-268: BGP prefix SID translation
Missing features (to be addressed in subsequent commits): - non eos VPP FIB entry - push label entry Change-Id: I17ca7e3ce85ebb55aaa4438db34305ec30352798 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'vpp-integration')
-rw-r--r--vpp-integration/minimal-distribution/pom.xml12
1 files changed, 9 insertions, 3 deletions
diff --git a/vpp-integration/minimal-distribution/pom.xml b/vpp-integration/minimal-distribution/pom.xml
index 96abc6958..29a3970c0 100644
--- a/vpp-integration/minimal-distribution/pom.xml
+++ b/vpp-integration/minimal-distribution/pom.xml
@@ -66,12 +66,13 @@
io.fd.hc2vpp.dhcp.DhcpModule,
io.fd.hc2vpp.policer.PolicerModule,
io.fd.hc2vpp.mpls.MplsModule,
- // io.fd.hc2vpp.vppnsh.impl.VppNshModule,
<!-- Nsh module by default disabled, because it needs vpp-nsh plugin, which is not part of vpp codebase.-->
- // io.fd.hc2vpp.vppioam.impl.VppIoamModule,
+ // io.fd.hc2vpp.vppnsh.impl.VppNshModule,
<!-- iOAM module by default disabled, because it needs ioam plugin (not part of vpp codebase.)-->
+ // io.fd.hc2vpp.vppioam.impl.VppIoamModule,
+ <!-- Bgp modules disabled by default, because it BGP northbound interface is not enabled by default -->
// io.fd.hc2vpp.bgp.inet.BgpInetModule
- <!-- BgpInetModule by default disabled, because it BGP northbound interface is not enabled by default -->
+ // io.fd.hc2vpp.bgp.prefix.sid.BgpPrefixSidModule
</distribution.modules>
</properties>
@@ -179,5 +180,10 @@
<artifactId>mpls-impl</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>io.fd.hc2vpp.bgp</groupId>
+ <artifactId>bgp-prefix-sid</artifactId>
+ <version>${hc2vpp.bgp.version}</version>
+ </dependency>
</dependencies>
</project>