Show / Hide Table of Contents

Class VtapCaptureFilterRuleDetails

This resource contains the rules governing what traffic a VTAP mirrors.

Inheritance
object
VtapCaptureFilterRuleDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VnmonitoringService.Models
Assembly: OCI.DotNetSDK.Vnmonitoring.dll
Syntax
public class VtapCaptureFilterRuleDetails

Properties

DestinationCidr

Declaration
[JsonProperty(PropertyName = "destinationCidr")]
public string DestinationCidr { get; set; }
Property Value
Type Description
string

Traffic sent to this CIDR block through the VTAP source will be mirrored to the VTAP target.

IcmpOptions

Declaration
[JsonProperty(PropertyName = "icmpOptions")]
public IcmpOptions IcmpOptions { get; set; }
Property Value
Type Description
IcmpOptions

Protocol

Declaration
[JsonProperty(PropertyName = "protocol")]
public string Protocol { get; set; }
Property Value
Type Description
string

The transport protocol used in the filter. If do not choose a protocol, all protocols will be used in the filter. Supported options are:

  • 1 = ICMP
  • 6 = TCP
  • 17 = UDP

RuleAction

Declaration
[JsonProperty(PropertyName = "ruleAction")]
[JsonConverter(typeof(StringEnumConverter))]
public VtapCaptureFilterRuleDetails.RuleActionEnum? RuleAction { get; set; }
Property Value
Type Description
VtapCaptureFilterRuleDetails.RuleActionEnum?

Include or exclude packets meeting this definition from mirrored traffic.

SourceCidr

Declaration
[JsonProperty(PropertyName = "sourceCidr")]
public string SourceCidr { get; set; }
Property Value
Type Description
string

Traffic from this CIDR block to the VTAP source will be mirrored to the VTAP target.

TcpOptions

Declaration
[JsonProperty(PropertyName = "tcpOptions")]
public TcpOptions TcpOptions { get; set; }
Property Value
Type Description
TcpOptions

TrafficDirection

Declaration
[Required(ErrorMessage = "TrafficDirection is required.")]
[JsonProperty(PropertyName = "trafficDirection")]
[JsonConverter(typeof(StringEnumConverter))]
public VtapCaptureFilterRuleDetails.TrafficDirectionEnum? TrafficDirection { get; set; }
Property Value
Type Description
VtapCaptureFilterRuleDetails.TrafficDirectionEnum?

The traffic direction the VTAP is configured to mirror.

Remarks

Required

UdpOptions

Declaration
[JsonProperty(PropertyName = "udpOptions")]
public UdpOptions UdpOptions { get; set; }
Property Value
Type Description
UdpOptions
In this article
Back to top