diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-10-26 13:44:41 +0200 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-11-07 08:36:09 +0100 |
commit | baee9a73ebcf4db04d80f454094496a24595e142 (patch) | |
tree | c29691cb253e1d497ee08b75220950882de0a708 /vpp-integration/minimal-distribution | |
parent | cacb95739aed54605b6c89fa0f58898aadaece2f (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/minimal-distribution')
-rw-r--r-- | vpp-integration/minimal-distribution/pom.xml | 6 |
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> |