vppagent

package module
v3.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 4, 2020 License: Apache-2.0 Imports: 0 Imported by: 0

README

VPP Agent

The VPP Agent is a Go implementation of a control/management plane for VPP based cloud-native Virtual Network Functions (VNFs). The VPP Agent is built on top of CN Infra, a framework for developing cloud-native VNFs (CNFs).

The VPP Agent can be used as-is as a management/control agent for VNFs based on off-the-shelf VPP (e.g. a VPP-based vswitch), or as a framework for developing management agents for VPP-based CNFs. An example of a custom VPP-based CNF is the Contiv-VPP vswitch.

Please note that the content of this repository is currently WORK IN PROGRESS!

Status

CI Docker Build Status Coverage Status Go Report Card

Releases

Release Release Date Info
stable Release date latest release

Have a look at the release notes for a complete list of changes.

Branches

Branch Info Last Commit
master has switched to v3 GitHub last commit (branch)
dev has been DEPRECATED GitHub last commit (branch)
v2 provides legacy v2 GitHub last commit (branch)

All development is done against master branch.

Images

Image Image Size/Layers Info
ligato/vpp-agent MicroBadger Size MicroBadger Layers pulls with minimal footprint
ligato/dev-vpp-agent MicroBadger Size MicroBadger Layers pulls prepared for developers

Quickstart

For a quick start with the VPP Agent, you can use the pre-built Docker images on DockerHub that contain the VPP Agent and VPP: ligato/vpp-agent (or for ARM64: ligato/vpp-agent-arm64).

  1. Start ETCD on your host (e.g. in Docker as described here).

    Note: for ARM64 see the information for etcd.

  2. Run VPP + VPP Agent in a Docker container:

docker run -it --rm --name agent1 --privileged ligato/vpp-agent
  1. Manage VPP agent using agentctl:
docker exec -it agent1 agentctl --help
docker exec -it agent1 agentctl status
  1. Check the configuration (via agentctl or in VPP console):
docker exec -it agent1 agentctl dump all
docker exec -it agent1 vppctl -s localhost:5002 show interface

Next Steps

See README of development docker image for more details.

Documentation

PkgGoDev

Extensive documentation for the VPP Agent can be found at docs.ligato.io.

Architecture

The VPP Agent is basically a set of VPP-specific plugins that use the CN-Infra framework to interact with other services/microservices in the cloud (e.g. a KV data store, messaging, log warehouse, etc.). The VPP Agent exposes VPP functionality to client apps via a higher-level model-driven API. Clients that consume this API may be either external (connecting to the VPP Agent via REST, gRPC API, Etcd or message bus transport), or local Apps and/or Extension plugins running on the same CN-Infra framework in the same Linux process.

The VNF Agent architecture is shown in the following figure:

vpp agent

Each (northbound) VPP API - L2, L3, ACL, ... - is implemented by a specific VNF Agent plugin, which translates northbound API calls/operations into (southbound) low level VPP Binary API calls. Northbound APIs are defined using protobufs, which allow for the same functionality to be accessible over multiple transport protocols (HTTP, gRPC, Etcd, ...). Plugins use the GoVPP library to interact with the VPP.

The following figure shows the VPP Agent in context of a cloud-native VNF, where the VNF's data plane is implemented using VPP/DPDK and its management/control planes are implemented using the VNF agent:

context

Contributing

GitHub contributors

If you are interested in contributing, please see the contribution guidelines.

License

GitHub license

Documentation

Overview

Package vppagent is the parent for vpp-specific packages used to build VPP Agent, a control/management plane for VPP-based cloud-native VNFs. VPP Agent is built on the cn-infra framework.

Directories

Path Synopsis
Package clientv2 provides clients for local and remote management of VPP and Linux configuration via VPP Agent plugins.
Package clientv2 provides clients for local and remote management of VPP and Linux configuration via VPP Agent plugins.
linux
Package linuxclient contains clients for local and remote management of both VPP and Linux configuration via Linux and default plugins.
Package linuxclient contains clients for local and remote management of both VPP and Linux configuration via Linux and default plugins.
linux/dbadapter
Package dbadapter implements Domain Specific Language (DSL) for resync and change of VPP and Linux configuration.
Package dbadapter implements Domain Specific Language (DSL) for resync and change of VPP and Linux configuration.
linux/localclient
Package localclient implements client for local management of VPP and Linux configuration.
Package localclient implements client for local management of VPP and Linux configuration.
linux/remoteclient
Package remoteclient implements client for remote management of VPP and Linux configuration.
Package remoteclient implements client for remote management of VPP and Linux configuration.
vpp
Package vppclient contains clients for local and remote management of VPP configuration via default plugins.
Package vppclient contains clients for local and remote management of VPP configuration via default plugins.
vpp/dbadapter
Package dbadapter implements Domain Specific Language (DSL) for resync and change of VPP configuration using Data Broker (by writing to key value store).
Package dbadapter implements Domain Specific Language (DSL) for resync and change of VPP configuration using Data Broker (by writing to key value store).
vpp/localclient
Package localclient implements client for local management of VPP configuration.
Package localclient implements client for local management of VPP configuration.
vpp/remoteclient
Package remoteclient implements the client for remote management of VPP configuration.
Package remoteclient implements the client for remote management of VPP configuration.
cmd
Package cmd is the parent of packages that are used to build various executables from VPP Agent sources.
Package cmd is the parent of packages that are used to build various executables from VPP Agent sources.
agentctl/client/tlsconfig
Package tlsconfig provides more convenient way to create "tls.Config".
Package tlsconfig provides more convenient way to create "tls.Config".
vpp-agent
Package vpp-agent implements the main entry point into the VPP Agent and it is used to build the VPP Agent executable.
Package vpp-agent implements the main entry point into the VPP Agent and it is used to build the VPP Agent executable.
Package examples contains several examples that illustrate various aspects of VPP Agent's functionality.
Package examples contains several examples that illustrate various aspects of VPP Agent's functionality.
customize/custom_vpp_plugin
Example Custom VPP plugin contains a working example of custom agent which adds support for a custom VPP plugin.
Example Custom VPP plugin contains a working example of custom agent which adds support for a custom VPP plugin.
customize/custom_vpp_plugin/binapi/syslog
Package syslog is a generated VPP binary API for 'syslog' module.
Package syslog is a generated VPP binary API for 'syslog' module.
govpp_call
Example govpp_call shows how to use govpp library to communicate with VPP over the binary API.
Example govpp_call shows how to use govpp library to communicate with VPP over the binary API.
grpc_vpp/notifications
Example statistics app demonstrates usage of grpc to stream vpp statistics.
Example statistics app demonstrates usage of grpc to stream vpp statistics.
grpc_vpp/remote_client
Example remote_client demonstrates remote VPP config management via clientv1 using GPRC transport.
Example remote_client demonstrates remote VPP config management via clientv1 using GPRC transport.
localclient_linux/tap
Example localclient_linux demonstrates local Linux (linux-tap) and VPP (tap) config management via clientv1.
Example localclient_linux demonstrates local Linux (linux-tap) and VPP (tap) config management via clientv1.
localclient_linux/veth
Example localclient_linux demonstrates local Linux (veth) and VPP (af-packet) config management via clientv1.
Example localclient_linux demonstrates local Linux (veth) and VPP (af-packet) config management via clientv1.
localclient_vpp/nat
Example localclient_vpp_nat demonstrates NAT VPP configuration managed via clientv1.
Example localclient_vpp_nat demonstrates NAT VPP configuration managed via clientv1.
localclient_vpp/plugins
Example localclient_vpp_plugins demonstrates local VPP config management via clientv1.
Example localclient_vpp_plugins demonstrates local VPP config management via clientv1.
vpp_proxy
The VPP Proxy example demonstrates how to use GoVPP proxy to access VPP binapi and stats API remotely via HTTP server.
The VPP Proxy example demonstrates how to use GoVPP proxy to access VPP binapi and stats API remotely via HTTP server.
pkg
idxvpp
Package idxvpp extends NamedMapping from cn-infra to provide a map between VPP/Linux items with integer handles and northbound string-based identifiers (logical names).
Package idxvpp extends NamedMapping from cn-infra to provide a map between VPP/Linux items with integer handles and northbound string-based identifiers (logical names).
version
Package version provides information about app version.
Package version provides information about app version.
plugins
govppmux
Package govppmux implements the GoVPPMux plugin that allows multiple plugins to share a single connection to VPP.
Package govppmux implements the GoVPPMux plugin that allows multiple plugins to share a single connection to VPP.
linux/ifplugin/ifaceidx
Package ifaceidx implements name-to-index mapping for Linux interfaces.
Package ifaceidx implements name-to-index mapping for Linux interfaces.
linux/ifplugin/linuxcalls
Package linuxcalls contains wrappers over Netlink APIs related to Linux VETH interfaces or Linux interfaces in general.
Package linuxcalls contains wrappers over Netlink APIs related to Linux VETH interfaces or Linux interfaces in general.
linux/nsplugin/linuxcalls
Package linuxcalls contains wrappers over Netlink & OS APIs related to Linux namespaces.
Package linuxcalls contains wrappers over Netlink & OS APIs related to Linux namespaces.
vpp
vpp/abfplugin/vppcalls
Package vppcalls contains wrappers over VPP ABF binary APIs and helpers to dump ABFs configured in VPP
Package vppcalls contains wrappers over VPP ABF binary APIs and helpers to dump ABFs configured in VPP
vpp/aclplugin/vppcalls
Package vppcalls contains wrappers over VPP ACL binary APIs and helpers to dump ACLs configured in VPP - per interface and total.
Package vppcalls contains wrappers over VPP ACL binary APIs and helpers to dump ACLs configured in VPP - per interface and total.
vpp/binapi/vpp1908/abf
Package abf is a generated VPP binary API for 'abf' module.
Package abf is a generated VPP binary API for 'abf' module.
vpp/binapi/vpp1908/acl
Package acl is a generated VPP binary API for 'acl' module.
Package acl is a generated VPP binary API for 'acl' module.
vpp/binapi/vpp1908/af_packet
Package af_packet is a generated VPP binary API for 'af_packet' module.
Package af_packet is a generated VPP binary API for 'af_packet' module.
vpp/binapi/vpp1908/bond
Package bond is a generated VPP binary API for 'bond' module.
Package bond is a generated VPP binary API for 'bond' module.
vpp/binapi/vpp1908/dhcp
Package dhcp is a generated VPP binary API for 'dhcp' module.
Package dhcp is a generated VPP binary API for 'dhcp' module.
vpp/binapi/vpp1908/ethernet_types
Package ethernet_types is a generated VPP binary API for 'ethernet_types' module.
Package ethernet_types is a generated VPP binary API for 'ethernet_types' module.
vpp/binapi/vpp1908/fib_types
Package fib_types is a generated VPP binary API for 'fib_types' module.
Package fib_types is a generated VPP binary API for 'fib_types' module.
vpp/binapi/vpp1908/flowprobe
Package flowprobe is a generated VPP binary API for 'flowprobe' module.
Package flowprobe is a generated VPP binary API for 'flowprobe' module.
vpp/binapi/vpp1908/gre
Package gre is a generated VPP binary API for 'gre' module.
Package gre is a generated VPP binary API for 'gre' module.
vpp/binapi/vpp1908/gtpu
Package gtpu is a generated VPP binary API for 'gtpu' module.
Package gtpu is a generated VPP binary API for 'gtpu' module.
vpp/binapi/vpp1908/interface_types
Package interface_types is a generated VPP binary API for 'interface_types' module.
Package interface_types is a generated VPP binary API for 'interface_types' module.
vpp/binapi/vpp1908/interfaces
Package interfaces is a generated VPP binary API for 'interface' module.
Package interfaces is a generated VPP binary API for 'interface' module.
vpp/binapi/vpp1908/ip
Package ip is a generated VPP binary API for 'ip' module.
Package ip is a generated VPP binary API for 'ip' module.
vpp/binapi/vpp1908/ip_types
Package ip_types is a generated VPP binary API for 'ip_types' module.
Package ip_types is a generated VPP binary API for 'ip_types' module.
vpp/binapi/vpp1908/ipfix_export
Package ipfix_export is a generated VPP binary API for 'ipfix_export' module.
Package ipfix_export is a generated VPP binary API for 'ipfix_export' module.
vpp/binapi/vpp1908/ipip
Package ipip is a generated VPP binary API for 'ipip' module.
Package ipip is a generated VPP binary API for 'ipip' module.
vpp/binapi/vpp1908/ipsec
Package ipsec is a generated VPP binary API for 'ipsec' module.
Package ipsec is a generated VPP binary API for 'ipsec' module.
vpp/binapi/vpp1908/l2
Package l2 is a generated VPP binary API for 'l2' module.
Package l2 is a generated VPP binary API for 'l2' module.
vpp/binapi/vpp1908/l3xc
Package l3xc is a generated VPP binary API for 'l3xc' module.
Package l3xc is a generated VPP binary API for 'l3xc' module.
vpp/binapi/vpp1908/memclnt
Package memclnt is a generated VPP binary API for 'memclnt' module.
Package memclnt is a generated VPP binary API for 'memclnt' module.
vpp/binapi/vpp1908/memif
Package memif is a generated VPP binary API for 'memif' module.
Package memif is a generated VPP binary API for 'memif' module.
vpp/binapi/vpp1908/mfib_types
Package mfib_types is a generated VPP binary API for 'mfib_types' module.
Package mfib_types is a generated VPP binary API for 'mfib_types' module.
vpp/binapi/vpp1908/nat
Package nat is a generated VPP binary API for 'nat' module.
Package nat is a generated VPP binary API for 'nat' module.
vpp/binapi/vpp1908/punt
Package punt is a generated VPP binary API for 'punt' module.
Package punt is a generated VPP binary API for 'punt' module.
vpp/binapi/vpp1908/span
Package span is a generated VPP binary API for 'span' module.
Package span is a generated VPP binary API for 'span' module.
vpp/binapi/vpp1908/sr
Package sr is a generated VPP binary API for 'sr' module.
Package sr is a generated VPP binary API for 'sr' module.
vpp/binapi/vpp1908/stn
Package stn is a generated VPP binary API for 'stn' module.
Package stn is a generated VPP binary API for 'stn' module.
vpp/binapi/vpp1908/tapv2
Package tapv2 is a generated VPP binary API for 'tapv2' module.
Package tapv2 is a generated VPP binary API for 'tapv2' module.
vpp/binapi/vpp1908/vmxnet3
Package vmxnet3 is a generated VPP binary API for 'vmxnet3' module.
Package vmxnet3 is a generated VPP binary API for 'vmxnet3' module.
vpp/binapi/vpp1908/vpe
Package vpe is a generated VPP binary API for 'vpe' module.
Package vpe is a generated VPP binary API for 'vpe' module.
vpp/binapi/vpp1908/vpe_types
Package vpe_types is a generated VPP binary API for 'vpe_types' module.
Package vpe_types is a generated VPP binary API for 'vpe_types' module.
vpp/binapi/vpp1908/vxlan
Package vxlan is a generated VPP binary API for 'vxlan' module.
Package vxlan is a generated VPP binary API for 'vxlan' module.
vpp/binapi/vpp1908/vxlan_gpe
Package vxlan_gpe is a generated VPP binary API for 'vxlan_gpe' module.
Package vxlan_gpe is a generated VPP binary API for 'vxlan_gpe' module.
vpp/binapi/vpp2001/abf
Package abf is a generated VPP binary API for 'abf' module.
Package abf is a generated VPP binary API for 'abf' module.
vpp/binapi/vpp2001/acl
Package acl is a generated VPP binary API for 'acl' module.
Package acl is a generated VPP binary API for 'acl' module.
vpp/binapi/vpp2001/af_packet
Package af_packet is a generated VPP binary API for 'af_packet' module.
Package af_packet is a generated VPP binary API for 'af_packet' module.
vpp/binapi/vpp2001/arp
Package arp is a generated VPP binary API for 'arp' module.
Package arp is a generated VPP binary API for 'arp' module.
vpp/binapi/vpp2001/bond
Package bond is a generated VPP binary API for 'bond' module.
Package bond is a generated VPP binary API for 'bond' module.
vpp/binapi/vpp2001/dhcp
Package dhcp is a generated VPP binary API for 'dhcp' module.
Package dhcp is a generated VPP binary API for 'dhcp' module.
vpp/binapi/vpp2001/ethernet_types
Package ethernet_types is a generated VPP binary API for 'ethernet_types' module.
Package ethernet_types is a generated VPP binary API for 'ethernet_types' module.
vpp/binapi/vpp2001/fib_types
Package fib_types is a generated VPP binary API for 'fib_types' module.
Package fib_types is a generated VPP binary API for 'fib_types' module.
vpp/binapi/vpp2001/flowprobe
Package flowprobe is a generated VPP binary API for 'flowprobe' module.
Package flowprobe is a generated VPP binary API for 'flowprobe' module.
vpp/binapi/vpp2001/gre
Package gre is a generated VPP binary API for 'gre' module.
Package gre is a generated VPP binary API for 'gre' module.
vpp/binapi/vpp2001/gtpu
Package gtpu is a generated VPP binary API for 'gtpu' module.
Package gtpu is a generated VPP binary API for 'gtpu' module.
vpp/binapi/vpp2001/interface_types
Package interface_types is a generated VPP binary API for 'interface_types' module.
Package interface_types is a generated VPP binary API for 'interface_types' module.
vpp/binapi/vpp2001/interfaces
Package interfaces is a generated VPP binary API for 'interface' module.
Package interfaces is a generated VPP binary API for 'interface' module.
vpp/binapi/vpp2001/ip
Package ip is a generated VPP binary API for 'ip' module.
Package ip is a generated VPP binary API for 'ip' module.
vpp/binapi/vpp2001/ip6_nd
Package ip6_nd is a generated VPP binary API for 'ip6_nd' module.
Package ip6_nd is a generated VPP binary API for 'ip6_nd' module.
vpp/binapi/vpp2001/ip_neighbor
Package ip_neighbor is a generated VPP binary API for 'ip_neighbor' module.
Package ip_neighbor is a generated VPP binary API for 'ip_neighbor' module.
vpp/binapi/vpp2001/ip_types
Package ip_types is a generated VPP binary API for 'ip_types' module.
Package ip_types is a generated VPP binary API for 'ip_types' module.
vpp/binapi/vpp2001/ipfix_export
Package ipfix_export is a generated VPP binary API for 'ipfix_export' module.
Package ipfix_export is a generated VPP binary API for 'ipfix_export' module.
vpp/binapi/vpp2001/ipip
Package ipip is a generated VPP binary API for 'ipip' module.
Package ipip is a generated VPP binary API for 'ipip' module.
vpp/binapi/vpp2001/ipsec
Package ipsec is a generated VPP binary API for 'ipsec' module.
Package ipsec is a generated VPP binary API for 'ipsec' module.
vpp/binapi/vpp2001/ipsec_types
Package ipsec_types is a generated VPP binary API for 'ipsec_types' module.
Package ipsec_types is a generated VPP binary API for 'ipsec_types' module.
vpp/binapi/vpp2001/l2
Package l2 is a generated VPP binary API for 'l2' module.
Package l2 is a generated VPP binary API for 'l2' module.
vpp/binapi/vpp2001/l3xc
Package l3xc is a generated VPP binary API for 'l3xc' module.
Package l3xc is a generated VPP binary API for 'l3xc' module.
vpp/binapi/vpp2001/memclnt
Package memclnt is a generated VPP binary API for 'memclnt' module.
Package memclnt is a generated VPP binary API for 'memclnt' module.
vpp/binapi/vpp2001/memif
Package memif is a generated VPP binary API for 'memif' module.
Package memif is a generated VPP binary API for 'memif' module.
vpp/binapi/vpp2001/nat
Package nat is a generated VPP binary API for 'nat' module.
Package nat is a generated VPP binary API for 'nat' module.
vpp/binapi/vpp2001/punt
Package punt is a generated VPP binary API for 'punt' module.
Package punt is a generated VPP binary API for 'punt' module.
vpp/binapi/vpp2001/rd_cp
Package rd_cp is a generated VPP binary API for 'rd_cp' module.
Package rd_cp is a generated VPP binary API for 'rd_cp' module.
vpp/binapi/vpp2001/span
Package span is a generated VPP binary API for 'span' module.
Package span is a generated VPP binary API for 'span' module.
vpp/binapi/vpp2001/sr
Package sr is a generated VPP binary API for 'sr' module.
Package sr is a generated VPP binary API for 'sr' module.
vpp/binapi/vpp2001/stn
Package stn is a generated VPP binary API for 'stn' module.
Package stn is a generated VPP binary API for 'stn' module.
vpp/binapi/vpp2001/tapv2
Package tapv2 is a generated VPP binary API for 'tapv2' module.
Package tapv2 is a generated VPP binary API for 'tapv2' module.
vpp/binapi/vpp2001/vmxnet3
Package vmxnet3 is a generated VPP binary API for 'vmxnet3' module.
Package vmxnet3 is a generated VPP binary API for 'vmxnet3' module.
vpp/binapi/vpp2001/vpe
Package vpe is a generated VPP binary API for 'vpe' module.
Package vpe is a generated VPP binary API for 'vpe' module.
vpp/binapi/vpp2001/vpe_types
Package vpe_types is a generated VPP binary API for 'vpe_types' module.
Package vpe_types is a generated VPP binary API for 'vpe_types' module.
vpp/binapi/vpp2001/vxlan
Package vxlan is a generated VPP binary API for 'vxlan' module.
Package vxlan is a generated VPP binary API for 'vxlan' module.
vpp/binapi/vpp2001/vxlan_gpe
Package vxlan_gpe is a generated VPP binary API for 'vxlan_gpe' module.
Package vxlan_gpe is a generated VPP binary API for 'vxlan_gpe' module.
vpp/binapi/vpp2005/abf
Package abf contains generated bindings for API file abf.api.
Package abf contains generated bindings for API file abf.api.
vpp/binapi/vpp2005/acl
Package acl contains generated bindings for API file acl.api.
Package acl contains generated bindings for API file acl.api.
vpp/binapi/vpp2005/acl_types
Package acl_types contains generated bindings for API file acl_types.api.
Package acl_types contains generated bindings for API file acl_types.api.
vpp/binapi/vpp2005/af_packet
Package af_packet contains generated bindings for API file af_packet.api.
Package af_packet contains generated bindings for API file af_packet.api.
vpp/binapi/vpp2005/arp
Package arp contains generated bindings for API file arp.api.
Package arp contains generated bindings for API file arp.api.
vpp/binapi/vpp2005/bond
Package bond contains generated bindings for API file bond.api.
Package bond contains generated bindings for API file bond.api.
vpp/binapi/vpp2005/dhcp
Package dhcp contains generated bindings for API file dhcp.api.
Package dhcp contains generated bindings for API file dhcp.api.
vpp/binapi/vpp2005/ethernet_types
Package ethernet_types contains generated bindings for API file ethernet_types.api.
Package ethernet_types contains generated bindings for API file ethernet_types.api.
vpp/binapi/vpp2005/fib_types
Package fib_types contains generated bindings for API file fib_types.api.
Package fib_types contains generated bindings for API file fib_types.api.
vpp/binapi/vpp2005/flowprobe
Package flowprobe contains generated bindings for API file flowprobe.api.
Package flowprobe contains generated bindings for API file flowprobe.api.
vpp/binapi/vpp2005/gre
Package gre contains generated bindings for API file gre.api.
Package gre contains generated bindings for API file gre.api.
vpp/binapi/vpp2005/gtpu
Package gtpu contains generated bindings for API file gtpu.api.
Package gtpu contains generated bindings for API file gtpu.api.
vpp/binapi/vpp2005/interface
Package interfaces contains generated bindings for API file interface.api.
Package interfaces contains generated bindings for API file interface.api.
vpp/binapi/vpp2005/interface_types
Package interface_types contains generated bindings for API file interface_types.api.
Package interface_types contains generated bindings for API file interface_types.api.
vpp/binapi/vpp2005/ip
Package ip contains generated bindings for API file ip.api.
Package ip contains generated bindings for API file ip.api.
vpp/binapi/vpp2005/ip6_nd
Package ip6_nd contains generated bindings for API file ip6_nd.api.
Package ip6_nd contains generated bindings for API file ip6_nd.api.
vpp/binapi/vpp2005/ip_neighbor
Package ip_neighbor contains generated bindings for API file ip_neighbor.api.
Package ip_neighbor contains generated bindings for API file ip_neighbor.api.
vpp/binapi/vpp2005/ip_types
Package ip_types contains generated bindings for API file ip_types.api.
Package ip_types contains generated bindings for API file ip_types.api.
vpp/binapi/vpp2005/ipfix_export
Package ipfix_export contains generated bindings for API file ipfix_export.api.
Package ipfix_export contains generated bindings for API file ipfix_export.api.
vpp/binapi/vpp2005/ipip
Package ipip contains generated bindings for API file ipip.api.
Package ipip contains generated bindings for API file ipip.api.
vpp/binapi/vpp2005/ipsec
Package ipsec contains generated bindings for API file ipsec.api.
Package ipsec contains generated bindings for API file ipsec.api.
vpp/binapi/vpp2005/ipsec_types
Package ipsec_types contains generated bindings for API file ipsec_types.api.
Package ipsec_types contains generated bindings for API file ipsec_types.api.
vpp/binapi/vpp2005/l2
Package l2 contains generated bindings for API file l2.api.
Package l2 contains generated bindings for API file l2.api.
vpp/binapi/vpp2005/l3xc
Package l3xc contains generated bindings for API file l3xc.api.
Package l3xc contains generated bindings for API file l3xc.api.
vpp/binapi/vpp2005/memclnt
Package memclnt contains generated bindings for API file memclnt.api.
Package memclnt contains generated bindings for API file memclnt.api.
vpp/binapi/vpp2005/memif
Package memif contains generated bindings for API file memif.api.
Package memif contains generated bindings for API file memif.api.
vpp/binapi/vpp2005/mfib_types
Package mfib_types contains generated bindings for API file mfib_types.api.
Package mfib_types contains generated bindings for API file mfib_types.api.
vpp/binapi/vpp2005/nat
Package nat contains generated bindings for API file nat.api.
Package nat contains generated bindings for API file nat.api.
vpp/binapi/vpp2005/punt
Package punt contains generated bindings for API file punt.api.
Package punt contains generated bindings for API file punt.api.
vpp/binapi/vpp2005/rd_cp
Package rd_cp contains generated bindings for API file rd_cp.api.
Package rd_cp contains generated bindings for API file rd_cp.api.
vpp/binapi/vpp2005/span
Package span contains generated bindings for API file span.api.
Package span contains generated bindings for API file span.api.
vpp/binapi/vpp2005/sr
Package sr contains generated bindings for API file sr.api.
Package sr contains generated bindings for API file sr.api.
vpp/binapi/vpp2005/sr_types
Package sr_types contains generated bindings for API file sr_types.api.
Package sr_types contains generated bindings for API file sr_types.api.
vpp/binapi/vpp2005/stn
Package stn contains generated bindings for API file stn.api.
Package stn contains generated bindings for API file stn.api.
vpp/binapi/vpp2005/tapv2
Package tapv2 contains generated bindings for API file tapv2.api.
Package tapv2 contains generated bindings for API file tapv2.api.
vpp/binapi/vpp2005/teib
Package teib contains generated bindings for API file teib.api.
Package teib contains generated bindings for API file teib.api.
vpp/binapi/vpp2005/tunnel_types
Package tunnel_types contains generated bindings for API file tunnel_types.api.
Package tunnel_types contains generated bindings for API file tunnel_types.api.
vpp/binapi/vpp2005/vmxnet3
Package vmxnet3 contains generated bindings for API file vmxnet3.api.
Package vmxnet3 contains generated bindings for API file vmxnet3.api.
vpp/binapi/vpp2005/vpe
Package vpe contains generated bindings for API file vpe.api.
Package vpe contains generated bindings for API file vpe.api.
vpp/binapi/vpp2005/vpe_types
Package vpe_types contains generated bindings for API file vpe_types.api.
Package vpe_types contains generated bindings for API file vpe_types.api.
vpp/binapi/vpp2005/vrrp
Package vrrp contains generated bindings for API file vrrp.api.
Package vrrp contains generated bindings for API file vrrp.api.
vpp/binapi/vpp2005/vxlan
Package vxlan contains generated bindings for API file vxlan.api.
Package vxlan contains generated bindings for API file vxlan.api.
vpp/binapi/vpp2005/vxlan_gpe
Package vxlan_gpe contains generated bindings for API file vxlan_gpe.api.
Package vxlan_gpe contains generated bindings for API file vxlan_gpe.api.
vpp/binapi/vpp2009/abf
Package abf contains generated bindings for API file abf.api.
Package abf contains generated bindings for API file abf.api.
vpp/binapi/vpp2009/acl
Package acl contains generated bindings for API file acl.api.
Package acl contains generated bindings for API file acl.api.
vpp/binapi/vpp2009/acl_types
Package acl_types contains generated bindings for API file acl_types.api.
Package acl_types contains generated bindings for API file acl_types.api.
vpp/binapi/vpp2009/af_packet
Package af_packet contains generated bindings for API file af_packet.api.
Package af_packet contains generated bindings for API file af_packet.api.
vpp/binapi/vpp2009/arp
Package arp contains generated bindings for API file arp.api.
Package arp contains generated bindings for API file arp.api.
vpp/binapi/vpp2009/bond
Package bond contains generated bindings for API file bond.api.
Package bond contains generated bindings for API file bond.api.
vpp/binapi/vpp2009/dhcp
Package dhcp contains generated bindings for API file dhcp.api.
Package dhcp contains generated bindings for API file dhcp.api.
vpp/binapi/vpp2009/ethernet_types
Package ethernet_types contains generated bindings for API file ethernet_types.api.
Package ethernet_types contains generated bindings for API file ethernet_types.api.
vpp/binapi/vpp2009/fib_types
Package fib_types contains generated bindings for API file fib_types.api.
Package fib_types contains generated bindings for API file fib_types.api.
vpp/binapi/vpp2009/flowprobe
Package flowprobe contains generated bindings for API file flowprobe.api.
Package flowprobe contains generated bindings for API file flowprobe.api.
vpp/binapi/vpp2009/gre
Package gre contains generated bindings for API file gre.api.
Package gre contains generated bindings for API file gre.api.
vpp/binapi/vpp2009/gtpu
Package gtpu contains generated bindings for API file gtpu.api.
Package gtpu contains generated bindings for API file gtpu.api.
vpp/binapi/vpp2009/interface
Package interfaces contains generated bindings for API file interface.api.
Package interfaces contains generated bindings for API file interface.api.
vpp/binapi/vpp2009/interface_types
Package interface_types contains generated bindings for API file interface_types.api.
Package interface_types contains generated bindings for API file interface_types.api.
vpp/binapi/vpp2009/ip
Package ip contains generated bindings for API file ip.api.
Package ip contains generated bindings for API file ip.api.
vpp/binapi/vpp2009/ip6_nd
Package ip6_nd contains generated bindings for API file ip6_nd.api.
Package ip6_nd contains generated bindings for API file ip6_nd.api.
vpp/binapi/vpp2009/ip_neighbor
Package ip_neighbor contains generated bindings for API file ip_neighbor.api.
Package ip_neighbor contains generated bindings for API file ip_neighbor.api.
vpp/binapi/vpp2009/ip_types
Package ip_types contains generated bindings for API file ip_types.api.
Package ip_types contains generated bindings for API file ip_types.api.
vpp/binapi/vpp2009/ipfix_export
Package ipfix_export contains generated bindings for API file ipfix_export.api.
Package ipfix_export contains generated bindings for API file ipfix_export.api.
vpp/binapi/vpp2009/ipip
Package ipip contains generated bindings for API file ipip.api.
Package ipip contains generated bindings for API file ipip.api.
vpp/binapi/vpp2009/ipsec
Package ipsec contains generated bindings for API file ipsec.api.
Package ipsec contains generated bindings for API file ipsec.api.
vpp/binapi/vpp2009/ipsec_types
Package ipsec_types contains generated bindings for API file ipsec_types.api.
Package ipsec_types contains generated bindings for API file ipsec_types.api.
vpp/binapi/vpp2009/l2
Package l2 contains generated bindings for API file l2.api.
Package l2 contains generated bindings for API file l2.api.
vpp/binapi/vpp2009/l3xc
Package l3xc contains generated bindings for API file l3xc.api.
Package l3xc contains generated bindings for API file l3xc.api.
vpp/binapi/vpp2009/memclnt
Package memclnt contains generated bindings for API file memclnt.api.
Package memclnt contains generated bindings for API file memclnt.api.
vpp/binapi/vpp2009/memif
Package memif contains generated bindings for API file memif.api.
Package memif contains generated bindings for API file memif.api.
vpp/binapi/vpp2009/mfib_types
Package mfib_types contains generated bindings for API file mfib_types.api.
Package mfib_types contains generated bindings for API file mfib_types.api.
vpp/binapi/vpp2009/nat
Package nat contains generated bindings for API file nat.api.
Package nat contains generated bindings for API file nat.api.
vpp/binapi/vpp2009/nat_types
Package nat_types contains generated bindings for API file nat_types.api.
Package nat_types contains generated bindings for API file nat_types.api.
vpp/binapi/vpp2009/punt
Package punt contains generated bindings for API file punt.api.
Package punt contains generated bindings for API file punt.api.
vpp/binapi/vpp2009/rd_cp
Package rd_cp contains generated bindings for API file rd_cp.api.
Package rd_cp contains generated bindings for API file rd_cp.api.
vpp/binapi/vpp2009/span
Package span contains generated bindings for API file span.api.
Package span contains generated bindings for API file span.api.
vpp/binapi/vpp2009/sr
Package sr contains generated bindings for API file sr.api.
Package sr contains generated bindings for API file sr.api.
vpp/binapi/vpp2009/sr_types
Package sr_types contains generated bindings for API file sr_types.api.
Package sr_types contains generated bindings for API file sr_types.api.
vpp/binapi/vpp2009/stn
Package stn contains generated bindings for API file stn.api.
Package stn contains generated bindings for API file stn.api.
vpp/binapi/vpp2009/tapv2
Package tapv2 contains generated bindings for API file tapv2.api.
Package tapv2 contains generated bindings for API file tapv2.api.
vpp/binapi/vpp2009/teib
Package teib contains generated bindings for API file teib.api.
Package teib contains generated bindings for API file teib.api.
vpp/binapi/vpp2009/tunnel_types
Package tunnel_types contains generated bindings for API file tunnel_types.api.
Package tunnel_types contains generated bindings for API file tunnel_types.api.
vpp/binapi/vpp2009/vmxnet3
Package vmxnet3 contains generated bindings for API file vmxnet3.api.
Package vmxnet3 contains generated bindings for API file vmxnet3.api.
vpp/binapi/vpp2009/vpe
Package vpe contains generated bindings for API file vpe.api.
Package vpe contains generated bindings for API file vpe.api.
vpp/binapi/vpp2009/vpe_types
Package vpe_types contains generated bindings for API file vpe_types.api.
Package vpe_types contains generated bindings for API file vpe_types.api.
vpp/binapi/vpp2009/vrrp
Package vrrp contains generated bindings for API file vrrp.api.
Package vrrp contains generated bindings for API file vrrp.api.
vpp/binapi/vpp2009/vxlan
Package vxlan contains generated bindings for API file vxlan.api.
Package vxlan contains generated bindings for API file vxlan.api.
vpp/binapi/vpp2009/vxlan_gpe
Package vxlan_gpe contains generated bindings for API file vxlan_gpe.api.
Package vxlan_gpe contains generated bindings for API file vxlan_gpe.api.
vpp/binapi/vpp2009/wireguard
Package wireguard contains generated bindings for API file wireguard.api.
Package wireguard contains generated bindings for API file wireguard.api.
vpp/ifplugin/ifaceidx
Package ifaceidx implements name-to-index mapping registry and cache for VPP interfaces.
Package ifaceidx implements name-to-index mapping registry and cache for VPP interfaces.
vpp/ifplugin/vppcalls/vpp1908
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
vpp/ifplugin/vppcalls/vpp2001
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
vpp/ifplugin/vppcalls/vpp2005
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
vpp/ifplugin/vppcalls/vpp2009
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
Package vppcalls contains wrappers over VPP binary APIs for all supported interface types and for dumping all interfaces configured in VPP.
vpp/ipfixplugin/vppcalls
Package vppcalls contains wrappers over VPP IPFIX and VPP Flowprobe binary APIs.
Package vppcalls contains wrappers over VPP IPFIX and VPP Flowprobe binary APIs.
vpp/l2plugin/vppcalls/vpp1908
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
vpp/l2plugin/vppcalls/vpp2001
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
vpp/l2plugin/vppcalls/vpp2005
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
vpp/l2plugin/vppcalls/vpp2009
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
vpp/l3plugin/vppcalls/vpp1908
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
vpp/l3plugin/vppcalls/vpp2001
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
vpp/l3plugin/vppcalls/vpp2005
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
vpp/l3plugin/vppcalls/vpp2009
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
Package vppcalls contains wrappers over VPP binary APIs for ARPs, proxy ARPs, L3 FIBs and helpers for dumping them.
vpp/l3plugin/vrfidx
Package vrfidx implements name-to-index mapping registry and cache for VPP VRFs.
Package vrfidx implements name-to-index mapping registry and cache for VPP VRFs.
vpp/natplugin/vppcalls
Package vppcalls contains wrappers over VPP binary APIs for NAT configuration.
Package vppcalls contains wrappers over VPP binary APIs for NAT configuration.
vpp/srplugin/vppcalls/vpp1908
Package vpp1908 contains wrappers over VPP (version 19.01) binary APIs to simplify their usage
Package vpp1908 contains wrappers over VPP (version 19.01) binary APIs to simplify their usage
vpp/srplugin/vppcalls/vpp2001
Package vpp2001_379 contains wrappers over VPP (version 20.01) binary APIs to simplify their usage
Package vpp2001_379 contains wrappers over VPP (version 20.01) binary APIs to simplify their usage
vpp/srplugin/vppcalls/vpp2005
Package vpp2005_379 contains wrappers over VPP (version 20.01) binary APIs to simplify their usage
Package vpp2005_379 contains wrappers over VPP (version 20.01) binary APIs to simplify their usage
vpp/srplugin/vppcalls/vpp2009
Package vpp2009_379 contains wrappers over VPP (version 20.01) binary APIs to simplify their usage
Package vpp2009_379 contains wrappers over VPP (version 20.01) binary APIs to simplify their usage
proto
tests
e2e
Package e2e contains end-to-end tests.
Package e2e contains end-to-end tests.
integration/vpp
Package vpp contains integration tests for VPP.
Package vpp contains integration tests for VPP.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL