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 (*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 ben executed and exited with an error.
type OVSCtlClient ¶
type OVSCtlClient interface { // 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) // RunOfctlCmd executes "ovs-ofctl" command and returns the outputs. RunOfctlCmd(cmd string, args ...string) ([]byte, 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) // RunAppctlCmd executes "ovs-appctl" command and returns the outputs. // Some commands are bridge specific and some are not. Passing a bool to distinguish that. RunAppctlCmd(cmd string, needsBridge bool, args ...string) ([]byte, *ExecError) // GetDPFeatures executes "ovs-appctl dpif/show-dp-features" to check supported DP features. GetDPFeatures() (map[DPFeature]bool, error) }
OVSCtlClient is an interface for executing OVS "ovs-ofctl" and "ovs-appctl" commands.
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.