Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 1.31 KB

File metadata and controls

25 lines (22 loc) · 1.31 KB

PortMirroringFilter

Properties

Name Type Description Notes
filterAction FilterActionEnum If set to MIRROR, packets will be mirrored. If set to DO_NOT_MIRROR, packets will not be mirrored. [optional]
ipProtocol IpProtocolEnum The transport protocols of TCP or UDP, used to match the transport protocol of a packet. If not provided, no filtering by IP protocols is performed. [optional]
srcIps IPAddresses [optional]
dstIps IPAddresses [optional]
dstPorts String Destination port in the form of a port or port range, used to match the destination port of a packet. If not provided, no filtering by destination port is performed. [optional]
srcPorts String Source port in the form of a port or port range, used to match the source port of a packet. If not provided, no filtering by source port is performed. [optional]

Enum: FilterActionEnum

Name Value
MIRROR "MIRROR"
DO_NOT_MIRROR "DO_NOT_MIRROR"

Enum: IpProtocolEnum

Name Value
TCP "TCP"
UDP "UDP"