summaryrefslogtreecommitdiffstats
path: root/vpp-integration
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-10-26 13:44:41 +0200
committerMarek Gradzki <mgradzki@cisco.com>2017-11-07 08:36:09 +0100
commitbaee9a73ebcf4db04d80f454094496a24595e142 (patch)
treec29691cb253e1d497ee08b75220950882de0a708 /vpp-integration
parentcacb95739aed54605b6c89fa0f58898aadaece2f (diff)
HC2VPP-257: MPLS interface management
Translates /hc2vpp-ietf-routing:routing/hc2vpp-ietf-mpls:mpls/interface to sw_interface_set_mpls_enable which is equivalent to: set interface mpls [...] enable MPLS table is created before configuring MPLS using mpls_table_add_del (required since VPP 17.10). Reading MPLS configuration state is not supported (VPP API is missing). Change-Id: I3f1b987c3669b0836a27649a711e75d0dc37a779 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'vpp-integration')
-rw-r--r--vpp-integration/minimal-distribution/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/vpp-integration/minimal-distribution/pom.xml b/vpp-integration/minimal-distribution/pom.xml
index 0cc3a85ba..96abc6958 100644
--- a/vpp-integration/minimal-distribution/pom.xml
+++ b/vpp-integration/minimal-distribution/pom.xml
@@ -65,6 +65,7 @@
io.fd.hc2vpp.acl.AclModule,
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,
@@ -173,5 +174,10 @@
<artifactId>bgp-inet</artifactId>
<version>${hc2vpp.bgp.version}</version>
</dependency>
+ <dependency>
+ <groupId>io.fd.hc2vpp.mpls</groupId>
+ <artifactId>mpls-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>
</project>