Documentation ¶
Index ¶
- Variables
- func AddHandlerVersion(version vpp.Version, msgs []govppapi.Message, h NewHandlerFunc)
- type BridgeDomainDetails
- type BridgeDomainMeta
- type BridgeDomainVppAPI
- type BridgeDomainVppRead
- type FIBVppAPI
- type FIBVppRead
- type FibMeta
- type FibTableDetails
- type L2VppAPI
- type NewHandlerFunc
- type XConnectDetails
- type XConnectVppAPI
- type XConnectVppRead
- type XcMeta
Constants ¶
This section is empty.
Variables ¶
var Handler = vpp.RegisterHandler(vpp.HandlerDesc{ Name: "l2", HandlerAPI: (*L2VppAPI)(nil), })
Functions ¶
func AddHandlerVersion ¶
func AddHandlerVersion(version vpp.Version, msgs []govppapi.Message, h NewHandlerFunc)
Types ¶
type BridgeDomainDetails ¶
type BridgeDomainDetails struct { Bd *l2.BridgeDomain `json:"bridge_domain"` Meta *BridgeDomainMeta `json:"bridge_domain_meta"` }
BridgeDomainDetails is the wrapper structure for the bridge domain northbound API structure. NOTE: Interfaces in BridgeDomains_BridgeDomain is overridden by the local Interfaces member.
type BridgeDomainMeta ¶
type BridgeDomainMeta struct {
BdID uint32 `json:"bridge_domain_id"`
}
BridgeDomainMeta contains bridge domain interface name/index map
type BridgeDomainVppAPI ¶
type BridgeDomainVppAPI interface { BridgeDomainVppRead // AddBridgeDomain adds new bridge domain. AddBridgeDomain(bdIdx uint32, bd *l2.BridgeDomain) error // DeleteBridgeDomain removes existing bridge domain. DeleteBridgeDomain(bdIdx uint32) error // AddInterfaceToBridgeDomain puts interface into bridge domain. AddInterfaceToBridgeDomain(bdIdx uint32, ifaceCfg *l2.BridgeDomain_Interface) error // DeleteInterfaceFromBridgeDomain removes interface from bridge domain. DeleteInterfaceFromBridgeDomain(bdIdx uint32, ifaceCfg *l2.BridgeDomain_Interface) error // AddArpTerminationTableEntry creates ARP termination entry for bridge domain. AddArpTerminationTableEntry(bdID uint32, mac string, ip string) error // RemoveArpTerminationTableEntry removes ARP termination entry from bridge domain. RemoveArpTerminationTableEntry(bdID uint32, mac string, ip string) error }
BridgeDomainVppAPI provides methods for managing bridge domains.
type BridgeDomainVppRead ¶
type BridgeDomainVppRead interface { // DumpBridgeDomains dumps VPP bridge domain data into the northbound API data structure // map indexed by bridge domain ID. DumpBridgeDomains() ([]*BridgeDomainDetails, error) }
BridgeDomainVppRead provides read methods for bridge domains.
type FIBVppAPI ¶
type FIBVppAPI interface { FIBVppRead // AddL2FIB creates L2 FIB table entry. AddL2FIB(fib *l2.FIBEntry) error // DeleteL2FIB removes existing L2 FIB table entry. DeleteL2FIB(fib *l2.FIBEntry) error }
FIBVppAPI provides methods for managing FIBs.
type FIBVppRead ¶
type FIBVppRead interface { // DumpL2FIBs dumps VPP L2 FIB table entries into the northbound API // data structure map indexed by destination MAC address. DumpL2FIBs() (map[string]*FibTableDetails, error) }
FIBVppRead provides read methods for FIBs.
type FibMeta ¶
type FibMeta struct { BdID uint32 `json:"bridge_domain_id"` IfIdx uint32 `json:"outgoing_interface_sw_if_idx"` }
FibMeta contains FIB interface and bridge domain name/index map
type FibTableDetails ¶
FibTableDetails is the wrapper structure for the FIB table entry northbound API structure.
type L2VppAPI ¶
type L2VppAPI interface { BridgeDomainVppAPI FIBVppAPI XConnectVppAPI }
L2VppAPI groups L2 Vpp APIs.
func CompatibleL2VppHandler ¶
func CompatibleL2VppHandler(c vpp.Client, ifIdx ifaceidx.IfaceMetadataIndex, bdIdx idxvpp.NameToIndex, log logging.Logger) L2VppAPI
type NewHandlerFunc ¶
type NewHandlerFunc func(ch govppapi.Channel, ifDdx ifaceidx.IfaceMetadataIndex, bdIdx idxvpp.NameToIndex, log logging.Logger) L2VppAPI
type XConnectDetails ¶
type XConnectDetails struct { Xc *l2.XConnectPair `json:"x_connect"` Meta *XcMeta `json:"x_connect_meta"` }
XConnectDetails is the wrapper structure for the l2 xconnect northbound API structure.
type XConnectVppAPI ¶
type XConnectVppAPI interface { XConnectVppRead // AddL2XConnect creates xConnect between two existing interfaces. AddL2XConnect(rxIface, txIface string) error // DeleteL2XConnect removes xConnect between two interfaces. DeleteL2XConnect(rxIface, txIface string) error }
XConnectVppAPI provides methods for managing cross connects.
type XConnectVppRead ¶
type XConnectVppRead interface { // DumpXConnectPairs dumps VPP xconnect pair data into the northbound API // data structure map indexed by rx interface index. DumpXConnectPairs() (map[uint32]*XConnectDetails, error) }
XConnectVppRead provides read methods for cross connects.
Directories ¶
Path | Synopsis |
---|---|
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. |
Package vpp2106 contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
|
Package vpp2106 contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them. |
Package vpp2202 contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
|
Package vpp2202 contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them. |
Package vpp2210 contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them.
|
Package vpp2210 contains wrappers over VPP binary APIs for bridge-domains, and L2 FIBs and XConnect pairs and helpers for dumping them. |