Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
IPAndNWProtos = []string{"ip", "icmp", "tcp", "udp", "sctp", "ipv6", "icmp6", "tcp6", "udp6", "sctp6"}
)
Functions ¶
Types ¶
type BadRequestError ¶
type BadRequestError string
func (BadRequestError) Error ¶
func (e BadRequestError) Error() string
type ExecError ¶
type ExecError struct {
// contains filtered or unexported fields
}
ExecError is for errors happened in command execution.
func NewExecError ¶ added in v1.13.3
func (*ExecError) CommandExecuted ¶
CommandExecuted returns whether the OVS command has been executed.
func (*ExecError) GetErrorOutput ¶
GetErrorOutput returns the command's output to stderr if it has been executed and exited with an error.
type OVSAppctlRunner ¶ added in v1.11.0
type OVSCtlClient ¶
type OVSCtlClient interface { OVSOfctlRunner OVSAppctlRunner // DumpFlows returns flows of the bridge. DumpFlows(args ...string) ([]string, error) // DumpFlowsWithoutTableNames returns flows of the bridge, and the table is shown as uint8 value in the result. // This function is only used in test. DumpFlowsWithoutTableNames(args ...string) ([]string, error) // DumpMatchedFlows returns the flow which exactly matches the matchStr. DumpMatchedFlow(matchStr string) (string, error) // DumpTableFlows returns all flows in the table. DumpTableFlows(table uint8) ([]string, error) // DumpGroup returns the OpenFlow group if it exists on the bridge. DumpGroup(groupID uint32) (string, error) // DumpGroups returns OpenFlow groups of the bridge. DumpGroups() ([]string, error) // DumpPortsDesc returns OpenFlow ports descriptions of the bridge. DumpPortsDesc() ([][]string, error) // SetPortNoFlood sets the given port with config "no-flood". This configuration must work with OpenFlow10. SetPortNoFlood(ofport int) error // Trace executes "ovs-appctl ofproto/trace" to perform OVS packet tracing. Trace(req *TracingRequest) (string, error) // GetDPFeatures executes "ovs-appctl dpif/show-dp-features" to check supported DP features. GetDPFeatures() (map[DPFeature]bool, error) // DeleteDPInterface executes "ovs-appctl dpctl/del-if ovs-system $name" to delete OVS datapath interface. DeleteDPInterface(name string) error }
type OVSOfctlRunner ¶ added in v1.11.0
type TracingRequest ¶
type TracingRequest struct { InPort string // Input port. SrcIP net.IP DstIP net.IP SrcMAC net.HardwareAddr DstMAC net.HardwareAddr Flow string // Whether in_port field in Flow can override InPort. AllowOverrideInPort bool }
TracingRequest defines tracing request parameters.
Click to show internal directories.
Click to hide internal directories.