published on Tuesday, Apr 28, 2026 by paloaltonetworks
published on Tuesday, Apr 28, 2026 by paloaltonetworks
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as panos from "@pulumi/panos";
const example = new panos.ZoneProtectionProfile("example", {
location: {
ngfw: {},
},
name: "zpp1",
description: "test description",
asymmetricPath: "bypass",
discardIcmpError: true,
discardIcmpFrag: true,
discardIcmpLargePacket: true,
discardIcmpPingZeroId: true,
discardIpFrag: true,
discardIpSpoof: true,
discardLooseSourceRouting: true,
discardMalformedOption: true,
discardOverlappingTcpSegmentMismatch: true,
discardRecordRoute: true,
discardSecurity: true,
discardStreamId: true,
discardStrictSourceRouting: true,
discardTcpSplitHandshake: true,
discardTcpSynWithData: true,
discardTcpSynackWithData: true,
discardTimestamp: true,
discardUnknownOption: true,
flood: {
icmp: {
enable: true,
red: {
activateRate: 100,
alarmRate: 200,
maximalRate: 300,
},
},
icmpv6: {
enable: true,
red: {
activateRate: 100,
alarmRate: 200,
maximalRate: 300,
},
},
otherIp: {
enable: true,
red: {
activateRate: 100,
alarmRate: 200,
maximalRate: 300,
},
},
tcpSyn: {
enable: true,
synCookies: {
activateRate: 100,
alarmRate: 200,
maximalRate: 300,
},
},
udp: {
enable: true,
red: {
activateRate: 100,
alarmRate: 200,
maximalRate: 300,
},
},
},
});
import pulumi
import pulumi_panos as panos
example = panos.ZoneProtectionProfile("example",
location={
"ngfw": {},
},
name="zpp1",
description="test description",
asymmetric_path="bypass",
discard_icmp_error=True,
discard_icmp_frag=True,
discard_icmp_large_packet=True,
discard_icmp_ping_zero_id=True,
discard_ip_frag=True,
discard_ip_spoof=True,
discard_loose_source_routing=True,
discard_malformed_option=True,
discard_overlapping_tcp_segment_mismatch=True,
discard_record_route=True,
discard_security=True,
discard_stream_id=True,
discard_strict_source_routing=True,
discard_tcp_split_handshake=True,
discard_tcp_syn_with_data=True,
discard_tcp_synack_with_data=True,
discard_timestamp=True,
discard_unknown_option=True,
flood={
"icmp": {
"enable": True,
"red": {
"activate_rate": 100,
"alarm_rate": 200,
"maximal_rate": 300,
},
},
"icmpv6": {
"enable": True,
"red": {
"activate_rate": 100,
"alarm_rate": 200,
"maximal_rate": 300,
},
},
"other_ip": {
"enable": True,
"red": {
"activate_rate": 100,
"alarm_rate": 200,
"maximal_rate": 300,
},
},
"tcp_syn": {
"enable": True,
"syn_cookies": {
"activate_rate": 100,
"alarm_rate": 200,
"maximal_rate": 300,
},
},
"udp": {
"enable": True,
"red": {
"activate_rate": 100,
"alarm_rate": 200,
"maximal_rate": 300,
},
},
})
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/panos/v2/panos"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := panos.NewZoneProtectionProfile(ctx, "example", &panos.ZoneProtectionProfileArgs{
Location: &panos.ZoneProtectionProfileLocationArgs{
Ngfw: &panos.ZoneProtectionProfileLocationNgfwArgs{},
},
Name: pulumi.String("zpp1"),
Description: pulumi.String("test description"),
AsymmetricPath: pulumi.String("bypass"),
DiscardIcmpError: pulumi.Bool(true),
DiscardIcmpFrag: pulumi.Bool(true),
DiscardIcmpLargePacket: pulumi.Bool(true),
DiscardIcmpPingZeroId: pulumi.Bool(true),
DiscardIpFrag: pulumi.Bool(true),
DiscardIpSpoof: pulumi.Bool(true),
DiscardLooseSourceRouting: pulumi.Bool(true),
DiscardMalformedOption: pulumi.Bool(true),
DiscardOverlappingTcpSegmentMismatch: pulumi.Bool(true),
DiscardRecordRoute: pulumi.Bool(true),
DiscardSecurity: pulumi.Bool(true),
DiscardStreamId: pulumi.Bool(true),
DiscardStrictSourceRouting: pulumi.Bool(true),
DiscardTcpSplitHandshake: pulumi.Bool(true),
DiscardTcpSynWithData: pulumi.Bool(true),
DiscardTcpSynackWithData: pulumi.Bool(true),
DiscardTimestamp: pulumi.Bool(true),
DiscardUnknownOption: pulumi.Bool(true),
Flood: &panos.ZoneProtectionProfileFloodArgs{
Icmp: &panos.ZoneProtectionProfileFloodIcmpArgs{
Enable: pulumi.Bool(true),
Red: &panos.ZoneProtectionProfileFloodIcmpRedArgs{
ActivateRate: pulumi.Float64(100),
AlarmRate: pulumi.Float64(200),
MaximalRate: pulumi.Float64(300),
},
},
Icmpv6: &panos.ZoneProtectionProfileFloodIcmpv6Args{
Enable: pulumi.Bool(true),
Red: &panos.ZoneProtectionProfileFloodIcmpv6RedArgs{
ActivateRate: pulumi.Float64(100),
AlarmRate: pulumi.Float64(200),
MaximalRate: pulumi.Float64(300),
},
},
OtherIp: &panos.ZoneProtectionProfileFloodOtherIpArgs{
Enable: pulumi.Bool(true),
Red: &panos.ZoneProtectionProfileFloodOtherIpRedArgs{
ActivateRate: pulumi.Float64(100),
AlarmRate: pulumi.Float64(200),
MaximalRate: pulumi.Float64(300),
},
},
TcpSyn: &panos.ZoneProtectionProfileFloodTcpSynArgs{
Enable: pulumi.Bool(true),
SynCookies: &panos.ZoneProtectionProfileFloodTcpSynSynCookiesArgs{
ActivateRate: pulumi.Float64(100),
AlarmRate: pulumi.Float64(200),
MaximalRate: pulumi.Float64(300),
},
},
Udp: &panos.ZoneProtectionProfileFloodUdpArgs{
Enable: pulumi.Bool(true),
Red: &panos.ZoneProtectionProfileFloodUdpRedArgs{
ActivateRate: pulumi.Float64(100),
AlarmRate: pulumi.Float64(200),
MaximalRate: pulumi.Float64(300),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Panos = Pulumi.Panos;
return await Deployment.RunAsync(() =>
{
var example = new Panos.ZoneProtectionProfile("example", new()
{
Location = new Panos.Inputs.ZoneProtectionProfileLocationArgs
{
Ngfw = null,
},
Name = "zpp1",
Description = "test description",
AsymmetricPath = "bypass",
DiscardIcmpError = true,
DiscardIcmpFrag = true,
DiscardIcmpLargePacket = true,
DiscardIcmpPingZeroId = true,
DiscardIpFrag = true,
DiscardIpSpoof = true,
DiscardLooseSourceRouting = true,
DiscardMalformedOption = true,
DiscardOverlappingTcpSegmentMismatch = true,
DiscardRecordRoute = true,
DiscardSecurity = true,
DiscardStreamId = true,
DiscardStrictSourceRouting = true,
DiscardTcpSplitHandshake = true,
DiscardTcpSynWithData = true,
DiscardTcpSynackWithData = true,
DiscardTimestamp = true,
DiscardUnknownOption = true,
Flood = new Panos.Inputs.ZoneProtectionProfileFloodArgs
{
Icmp = new Panos.Inputs.ZoneProtectionProfileFloodIcmpArgs
{
Enable = true,
Red = new Panos.Inputs.ZoneProtectionProfileFloodIcmpRedArgs
{
ActivateRate = 100,
AlarmRate = 200,
MaximalRate = 300,
},
},
Icmpv6 = new Panos.Inputs.ZoneProtectionProfileFloodIcmpv6Args
{
Enable = true,
Red = new Panos.Inputs.ZoneProtectionProfileFloodIcmpv6RedArgs
{
ActivateRate = 100,
AlarmRate = 200,
MaximalRate = 300,
},
},
OtherIp = new Panos.Inputs.ZoneProtectionProfileFloodOtherIpArgs
{
Enable = true,
Red = new Panos.Inputs.ZoneProtectionProfileFloodOtherIpRedArgs
{
ActivateRate = 100,
AlarmRate = 200,
MaximalRate = 300,
},
},
TcpSyn = new Panos.Inputs.ZoneProtectionProfileFloodTcpSynArgs
{
Enable = true,
SynCookies = new Panos.Inputs.ZoneProtectionProfileFloodTcpSynSynCookiesArgs
{
ActivateRate = 100,
AlarmRate = 200,
MaximalRate = 300,
},
},
Udp = new Panos.Inputs.ZoneProtectionProfileFloodUdpArgs
{
Enable = true,
Red = new Panos.Inputs.ZoneProtectionProfileFloodUdpRedArgs
{
ActivateRate = 100,
AlarmRate = 200,
MaximalRate = 300,
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.panos.ZoneProtectionProfile;
import com.pulumi.panos.ZoneProtectionProfileArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileLocationArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileLocationNgfwArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodIcmpArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodIcmpRedArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodIcmpv6Args;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodIcmpv6RedArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodOtherIpArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodOtherIpRedArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodTcpSynArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodTcpSynSynCookiesArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodUdpArgs;
import com.pulumi.panos.inputs.ZoneProtectionProfileFloodUdpRedArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ZoneProtectionProfile("example", ZoneProtectionProfileArgs.builder()
.location(ZoneProtectionProfileLocationArgs.builder()
.ngfw(ZoneProtectionProfileLocationNgfwArgs.builder()
.build())
.build())
.name("zpp1")
.description("test description")
.asymmetricPath("bypass")
.discardIcmpError(true)
.discardIcmpFrag(true)
.discardIcmpLargePacket(true)
.discardIcmpPingZeroId(true)
.discardIpFrag(true)
.discardIpSpoof(true)
.discardLooseSourceRouting(true)
.discardMalformedOption(true)
.discardOverlappingTcpSegmentMismatch(true)
.discardRecordRoute(true)
.discardSecurity(true)
.discardStreamId(true)
.discardStrictSourceRouting(true)
.discardTcpSplitHandshake(true)
.discardTcpSynWithData(true)
.discardTcpSynackWithData(true)
.discardTimestamp(true)
.discardUnknownOption(true)
.flood(ZoneProtectionProfileFloodArgs.builder()
.icmp(ZoneProtectionProfileFloodIcmpArgs.builder()
.enable(true)
.red(ZoneProtectionProfileFloodIcmpRedArgs.builder()
.activateRate(100.0)
.alarmRate(200.0)
.maximalRate(300.0)
.build())
.build())
.icmpv6(ZoneProtectionProfileFloodIcmpv6Args.builder()
.enable(true)
.red(ZoneProtectionProfileFloodIcmpv6RedArgs.builder()
.activateRate(100.0)
.alarmRate(200.0)
.maximalRate(300.0)
.build())
.build())
.otherIp(ZoneProtectionProfileFloodOtherIpArgs.builder()
.enable(true)
.red(ZoneProtectionProfileFloodOtherIpRedArgs.builder()
.activateRate(100.0)
.alarmRate(200.0)
.maximalRate(300.0)
.build())
.build())
.tcpSyn(ZoneProtectionProfileFloodTcpSynArgs.builder()
.enable(true)
.synCookies(ZoneProtectionProfileFloodTcpSynSynCookiesArgs.builder()
.activateRate(100.0)
.alarmRate(200.0)
.maximalRate(300.0)
.build())
.build())
.udp(ZoneProtectionProfileFloodUdpArgs.builder()
.enable(true)
.red(ZoneProtectionProfileFloodUdpRedArgs.builder()
.activateRate(100.0)
.alarmRate(200.0)
.maximalRate(300.0)
.build())
.build())
.build())
.build());
}
}
resources:
example:
type: panos:ZoneProtectionProfile
properties:
location:
ngfw: {}
name: zpp1
description: test description
asymmetricPath: bypass
discardIcmpError: true
discardIcmpFrag: true
discardIcmpLargePacket: true
discardIcmpPingZeroId: true
discardIpFrag: true
discardIpSpoof: true
discardLooseSourceRouting: true
discardMalformedOption: true
discardOverlappingTcpSegmentMismatch: true
discardRecordRoute: true
discardSecurity: true
discardStreamId: true
discardStrictSourceRouting: true
discardTcpSplitHandshake: true
discardTcpSynWithData: true
discardTcpSynackWithData: true
discardTimestamp: true
discardUnknownOption: true
flood:
icmp:
enable: true
red:
activateRate: 100
alarmRate: 200
maximalRate: 300
icmpv6:
enable: true
red:
activateRate: 100
alarmRate: 200
maximalRate: 300
otherIp:
enable: true
red:
activateRate: 100
alarmRate: 200
maximalRate: 300
tcpSyn:
enable: true
synCookies:
activateRate: 100
alarmRate: 200
maximalRate: 300
udp:
enable: true
red:
activateRate: 100
alarmRate: 200
maximalRate: 300
Create ZoneProtectionProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ZoneProtectionProfile(name: string, args: ZoneProtectionProfileArgs, opts?: CustomResourceOptions);@overload
def ZoneProtectionProfile(resource_name: str,
args: ZoneProtectionProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ZoneProtectionProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[ZoneProtectionProfileLocationArgs] = None,
discard_timestamp: Optional[bool] = None,
asymmetric_path: Optional[str] = None,
discard_icmp_frag: Optional[bool] = None,
discard_icmp_large_packet: Optional[bool] = None,
discard_icmp_ping_zero_id: Optional[bool] = None,
discard_ip_frag: Optional[bool] = None,
discard_ip_spoof: Optional[bool] = None,
discard_loose_source_routing: Optional[bool] = None,
discard_malformed_option: Optional[bool] = None,
discard_overlapping_tcp_segment_mismatch: Optional[bool] = None,
discard_record_route: Optional[bool] = None,
discard_security: Optional[bool] = None,
discard_stream_id: Optional[bool] = None,
discard_strict_source_routing: Optional[bool] = None,
discard_tcp_split_handshake: Optional[bool] = None,
discard_tcp_syn_with_data: Optional[bool] = None,
discard_icmp_error: Optional[bool] = None,
discard_tcp_synack_with_data: Optional[bool] = None,
discard_unknown_option: Optional[bool] = None,
flood: Optional[ZoneProtectionProfileFloodArgs] = None,
ipv6: Optional[ZoneProtectionProfileIpv6Args] = None,
l2_sec_group_tag_protection: Optional[ZoneProtectionProfileL2SecGroupTagProtectionArgs] = None,
description: Optional[str] = None,
name: Optional[str] = None,
net_inspection: Optional[ZoneProtectionProfileNetInspectionArgs] = None,
non_ip_protocol: Optional[ZoneProtectionProfileNonIpProtocolArgs] = None,
remove_tcp_timestamp: Optional[bool] = None,
scan_white_lists: Optional[Sequence[ZoneProtectionProfileScanWhiteListArgs]] = None,
scans: Optional[Sequence[ZoneProtectionProfileScanArgs]] = None,
strict_ip_check: Optional[bool] = None,
strip_mptcp_option: Optional[str] = None,
strip_tcp_fast_open_and_data: Optional[bool] = None,
suppress_icmp_needfrag: Optional[bool] = None,
suppress_icmp_timeexceeded: Optional[bool] = None,
tcp_reject_non_syn: Optional[str] = None)func NewZoneProtectionProfile(ctx *Context, name string, args ZoneProtectionProfileArgs, opts ...ResourceOption) (*ZoneProtectionProfile, error)public ZoneProtectionProfile(string name, ZoneProtectionProfileArgs args, CustomResourceOptions? opts = null)
public ZoneProtectionProfile(String name, ZoneProtectionProfileArgs args)
public ZoneProtectionProfile(String name, ZoneProtectionProfileArgs args, CustomResourceOptions options)
type: panos:ZoneProtectionProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ZoneProtectionProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ZoneProtectionProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ZoneProtectionProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZoneProtectionProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZoneProtectionProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var zoneProtectionProfileResource = new Panos.ZoneProtectionProfile("zoneProtectionProfileResource", new()
{
Location = new Panos.Inputs.ZoneProtectionProfileLocationArgs
{
Ngfw = new Panos.Inputs.ZoneProtectionProfileLocationNgfwArgs
{
NgfwDevice = "string",
},
Template = new Panos.Inputs.ZoneProtectionProfileLocationTemplateArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.ZoneProtectionProfileLocationTemplateStackArgs
{
Name = "string",
NgfwDevice = "string",
PanoramaDevice = "string",
},
},
DiscardTimestamp = false,
AsymmetricPath = "string",
DiscardIcmpFrag = false,
DiscardIcmpLargePacket = false,
DiscardIcmpPingZeroId = false,
DiscardIpFrag = false,
DiscardIpSpoof = false,
DiscardLooseSourceRouting = false,
DiscardMalformedOption = false,
DiscardOverlappingTcpSegmentMismatch = false,
DiscardRecordRoute = false,
DiscardSecurity = false,
DiscardStreamId = false,
DiscardStrictSourceRouting = false,
DiscardTcpSplitHandshake = false,
DiscardTcpSynWithData = false,
DiscardIcmpError = false,
DiscardTcpSynackWithData = false,
DiscardUnknownOption = false,
Flood = new Panos.Inputs.ZoneProtectionProfileFloodArgs
{
Icmp = new Panos.Inputs.ZoneProtectionProfileFloodIcmpArgs
{
Enable = false,
Red = new Panos.Inputs.ZoneProtectionProfileFloodIcmpRedArgs
{
ActivateRate = 0,
AlarmRate = 0,
MaximalRate = 0,
},
},
Icmpv6 = new Panos.Inputs.ZoneProtectionProfileFloodIcmpv6Args
{
Enable = false,
Red = new Panos.Inputs.ZoneProtectionProfileFloodIcmpv6RedArgs
{
ActivateRate = 0,
AlarmRate = 0,
MaximalRate = 0,
},
},
OtherIp = new Panos.Inputs.ZoneProtectionProfileFloodOtherIpArgs
{
Enable = false,
Red = new Panos.Inputs.ZoneProtectionProfileFloodOtherIpRedArgs
{
ActivateRate = 0,
AlarmRate = 0,
MaximalRate = 0,
},
},
SctpInit = new Panos.Inputs.ZoneProtectionProfileFloodSctpInitArgs
{
Enable = false,
Red = new Panos.Inputs.ZoneProtectionProfileFloodSctpInitRedArgs
{
ActivateRate = 0,
AlarmRate = 0,
MaximalRate = 0,
},
},
TcpSyn = new Panos.Inputs.ZoneProtectionProfileFloodTcpSynArgs
{
Enable = false,
Red = new Panos.Inputs.ZoneProtectionProfileFloodTcpSynRedArgs
{
ActivateRate = 0,
AlarmRate = 0,
MaximalRate = 0,
},
SynCookies = new Panos.Inputs.ZoneProtectionProfileFloodTcpSynSynCookiesArgs
{
ActivateRate = 0,
AlarmRate = 0,
MaximalRate = 0,
},
},
Udp = new Panos.Inputs.ZoneProtectionProfileFloodUdpArgs
{
Enable = false,
Red = new Panos.Inputs.ZoneProtectionProfileFloodUdpRedArgs
{
ActivateRate = 0,
AlarmRate = 0,
MaximalRate = 0,
},
},
},
Ipv6 = new Panos.Inputs.ZoneProtectionProfileIpv6Args
{
AnycastSource = false,
FilterExtHdr = new Panos.Inputs.ZoneProtectionProfileIpv6FilterExtHdrArgs
{
DestOptionHdr = false,
HopByHopHdr = false,
RoutingHdr = false,
},
Icmpv6TooBigSmallMtuDiscard = false,
IgnoreInvPkt = new Panos.Inputs.ZoneProtectionProfileIpv6IgnoreInvPktArgs
{
DestUnreach = false,
ParamProblem = false,
PktTooBig = false,
Redirect = false,
TimeExceeded = false,
},
Ipv4CompatibleAddress = false,
MulticastSource = false,
NeedlessFragmentHdr = false,
OptionsInvalidIpv6Discard = false,
ReservedFieldSetDiscard = false,
RoutingHeader0 = false,
RoutingHeader1 = false,
RoutingHeader253 = false,
RoutingHeader254 = false,
RoutingHeader255 = false,
RoutingHeader3 = false,
RoutingHeader4252 = false,
},
L2SecGroupTagProtection = new Panos.Inputs.ZoneProtectionProfileL2SecGroupTagProtectionArgs
{
Tags = new[]
{
new Panos.Inputs.ZoneProtectionProfileL2SecGroupTagProtectionTagArgs
{
Name = "string",
Enable = false,
Tag = "string",
},
},
},
Description = "string",
Name = "string",
NetInspection = new Panos.Inputs.ZoneProtectionProfileNetInspectionArgs
{
PredefinedRule = new Panos.Inputs.ZoneProtectionProfileNetInspectionPredefinedRuleArgs
{
Enable = false,
ThreatId = 0,
},
Rules = new[]
{
new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleArgs
{
Name = "string",
LogInterval = 0,
Cves = new[]
{
"string",
},
Enable = false,
ExemptIps = new[]
{
new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleExemptIpArgs
{
Name = "string",
},
},
IcmpUnreachable = false,
Action = "string",
LogSeverity = "string",
Bugtraqs = new[]
{
"string",
},
PacketCapture = "string",
References = new[]
{
"string",
},
Signature = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureArgs
{
Comment = "string",
OrConditions = new[]
{
new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionArgs
{
Name = "string",
AndConditions = new[]
{
new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionArgs
{
Name = "string",
Operator = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorArgs
{
EqualTo = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToArgs
{
Context = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextArgs
{
Icmp6Checksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6ChecksumArgs
{
Mask = "string",
Value = 0,
},
Icmp6Code = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6CodeArgs
{
Mask = "string",
Value = 0,
},
Icmp6Type = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6TypeArgs
{
Mask = "string",
Value = 0,
},
Icmp6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6UserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
IcmpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpChecksumArgs
{
Mask = "string",
Value = 0,
},
IcmpCode = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpCodeArgs
{
Mask = "string",
Value = 0,
},
IcmpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpIdArgs
{
Mask = "string",
Value = 0,
},
IcmpSequence = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpSequenceArgs
{
Mask = "string",
Value = 0,
},
IcmpType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpTypeArgs
{
Mask = "string",
Value = 0,
},
IcmpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpUserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
Ip6DestinationAddress = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6DestinationAddressArgs
{
Mask = "string",
Prefix = 0,
Value = "string",
},
Ip6FlowLabel = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6FlowLabelArgs
{
Mask = "string",
Value = 0,
},
Ip6HopLimit = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6HopLimitArgs
{
Mask = "string",
Value = 0,
},
Ip6NextHeader = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6NextHeaderArgs
{
Mask = "string",
Value = 0,
},
Ip6PayloadLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6PayloadLengthArgs
{
Mask = "string",
Value = 0,
},
Ip6SourceAddress = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6SourceAddressArgs
{
Mask = "string",
Prefix = 0,
Value = "string",
},
Ip6TrafficClass = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6TrafficClassArgs
{
Mask = "string",
Value = 0,
},
Ip6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6UserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
Ip6Version = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6VersionArgs
{
Mask = "string",
Value = 0,
},
IpDestinationAddress = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpDestinationAddressArgs
{
Mask = "string",
Prefix = 0,
Value = "string",
},
IpFlagDf = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagDfArgs
{
Value = 0,
},
IpFlagMf = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagMfArgs
{
Value = 0,
},
IpFlagReserved = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagReservedArgs
{
Value = 0,
},
IpFragmentOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFragmentOffsetArgs
{
Mask = "string",
Value = 0,
},
IpHeaderChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderChecksumArgs
{
Mask = "string",
Value = 0,
},
IpHeaderLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderLengthArgs
{
Mask = "string",
Value = 0,
},
IpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpIdArgs
{
Mask = "string",
Value = 0,
},
IpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionLengthArgs
{
Mask = "string",
Value = 0,
},
IpOptionNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionNumberArgs
{
Mask = "string",
Value = 0,
},
IpOptionType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionTypeArgs
{
Mask = "string",
Value = 0,
},
IpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionUserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
IpProtocol = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpProtocolArgs
{
Mask = "string",
Value = 0,
},
IpSourceAddress = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpSourceAddressArgs
{
Mask = "string",
Prefix = 0,
Value = "string",
},
IpTos = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTosArgs
{
Mask = "string",
Value = 0,
},
IpTotalLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTotalLengthArgs
{
Mask = "string",
Value = 0,
},
IpTtl = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTtlArgs
{
Mask = "string",
Value = 0,
},
IpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpUserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
IpVersion = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpVersionArgs
{
Mask = "string",
Value = 0,
},
TcpAcknowledgeNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpAcknowledgeNumberArgs
{
Mask = "string",
Value = 0,
},
TcpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpChecksumArgs
{
Mask = "string",
Value = 0,
},
TcpDataOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDataOffsetArgs
{
Mask = "string",
Value = 0,
},
TcpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDestinationPortArgs
{
Mask = "string",
Value = 0,
},
TcpFlagAck = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagAckArgs
{
Value = 0,
},
TcpFlagCwr = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagCwrArgs
{
Value = 0,
},
TcpFlagEce = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagEceArgs
{
Value = 0,
},
TcpFlagFin = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagFinArgs
{
Value = 0,
},
TcpFlagPsh = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagPshArgs
{
Value = 0,
},
TcpFlagRst = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagRstArgs
{
Value = 0,
},
TcpFlagSyn = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagSynArgs
{
Value = 0,
},
TcpFlagUrg = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagUrgArgs
{
Value = 0,
},
TcpOptionKind = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionKindArgs
{
Mask = "string",
Value = 0,
},
TcpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionLengthArgs
{
Mask = "string",
Value = 0,
},
TcpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionUserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
TcpReserved = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpReservedArgs
{
Mask = "string",
Value = 0,
},
TcpSequenceNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSequenceNumberArgs
{
Mask = "string",
Value = 0,
},
TcpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSourcePortArgs
{
Mask = "string",
Value = 0,
},
TcpUrgentPointer = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUrgentPointerArgs
{
Mask = "string",
Value = 0,
},
TcpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
TcpWindowSize = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpWindowSizeArgs
{
Mask = "string",
Value = 0,
},
UdpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpChecksumArgs
{
Mask = "string",
Value = 0,
},
UdpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpDestinationPortArgs
{
Mask = "string",
Value = 0,
},
UdpLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpLengthArgs
{
Mask = "string",
Value = 0,
},
UdpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpSourcePortArgs
{
Mask = "string",
Value = 0,
},
UdpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpUserDefinedArgs
{
Mask = "string",
Offset = 0,
Value = 0,
Width = 0,
},
},
Negate = false,
},
Event = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventArgs
{
Context = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextArgs
{
Ip6SameAddress = null,
IpOptionAddext = null,
IpOptionCipso = null,
IpOptionDps = null,
IpOptionEip = null,
IpOptionEncode = null,
IpOptionEool = null,
IpOptionEsec = null,
IpOptionFinn = null,
IpOptionImitd = null,
IpOptionLsr = null,
IpOptionMtup = null,
IpOptionMtur = null,
IpOptionNop = null,
IpOptionQs = null,
IpOptionRr = null,
IpOptionRtralt = null,
IpOptionSdb = null,
IpOptionSec = null,
IpOptionSid = null,
IpOptionSsr = null,
IpOptionTr = null,
IpOptionTs = null,
IpOptionUmp = null,
IpOptionVisa = null,
IpOptionZsu = null,
IpSameAddress = null,
TcpOptionAltDat = null,
TcpOptionAltRst = null,
TcpOptionBubba = null,
TcpOptionCc = null,
TcpOptionCcEcho = null,
TcpOptionCcNew = null,
TcpOptionCompress = null,
TcpOptionCorrupt = null,
TcpOptionEcho = null,
TcpOptionEchoReply = null,
TcpOptionEno = null,
TcpOptionEool = null,
TcpOptionFast = null,
TcpOptionMd5 = null,
TcpOptionMptcp = null,
TcpOptionMss = null,
TcpOptionNop = null,
TcpOptionPartialPermit = null,
TcpOptionPartialProfile = null,
TcpOptionQsRes = null,
TcpOptionRecBd = null,
TcpOptionSack = null,
TcpOptionSackPermit = null,
TcpOptionScps = null,
TcpOptionSkeeter = null,
TcpOptionSnak = null,
TcpOptionSnap = null,
TcpOptionTcpAo = null,
TcpOptionTrailer = null,
TcpOptionTs = null,
TcpOptionUserTimeout = null,
TcpOptionWs = null,
},
},
GreaterThan = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanArgs
{
Context = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextArgs
{
Icmp6Checksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6ChecksumArgs
{
Value = 0,
},
Icmp6Code = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6CodeArgs
{
Value = 0,
},
Icmp6Type = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6TypeArgs
{
Value = 0,
},
Icmp6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6UserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
IcmpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpChecksumArgs
{
Value = 0,
},
IcmpCode = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpCodeArgs
{
Value = 0,
},
IcmpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpIdArgs
{
Value = 0,
},
IcmpSequence = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpSequenceArgs
{
Value = 0,
},
IcmpType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpTypeArgs
{
Value = 0,
},
IcmpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
Ip6FlowLabel = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6FlowLabelArgs
{
Value = 0,
},
Ip6HopLimit = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6HopLimitArgs
{
Value = 0,
},
Ip6NextHeader = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6NextHeaderArgs
{
Value = 0,
},
Ip6PayloadLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6PayloadLengthArgs
{
Value = 0,
},
Ip6TrafficClass = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6TrafficClassArgs
{
Value = 0,
},
Ip6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6UserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
Ip6Version = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6VersionArgs
{
Value = 0,
},
IpFragmentOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpFragmentOffsetArgs
{
Value = 0,
},
IpHeaderChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderChecksumArgs
{
Value = 0,
},
IpHeaderLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderLengthArgs
{
Value = 0,
},
IpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpIdArgs
{
Value = 0,
},
IpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionLengthArgs
{
Value = 0,
},
IpOptionNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionNumberArgs
{
Value = 0,
},
IpOptionType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionTypeArgs
{
Value = 0,
},
IpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
IpProtocol = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpProtocolArgs
{
Value = 0,
},
IpTos = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTosArgs
{
Value = 0,
},
IpTotalLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTotalLengthArgs
{
Value = 0,
},
IpTtl = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTtlArgs
{
Value = 0,
},
IpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
IpVersion = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpVersionArgs
{
Value = 0,
},
TcpAcknowledgeNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpAcknowledgeNumberArgs
{
Value = 0,
},
TcpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpChecksumArgs
{
Value = 0,
},
TcpDataOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDataOffsetArgs
{
Value = 0,
},
TcpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDestinationPortArgs
{
Value = 0,
},
TcpOptionKind = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionKindArgs
{
Value = 0,
},
TcpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionLengthArgs
{
Value = 0,
},
TcpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
TcpReserved = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpReservedArgs
{
Value = 0,
},
TcpSequenceNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSequenceNumberArgs
{
Value = 0,
},
TcpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSourcePortArgs
{
Value = 0,
},
TcpUrgentPointer = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUrgentPointerArgs
{
Value = 0,
},
TcpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
TcpWindowSize = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpWindowSizeArgs
{
Value = 0,
},
UdpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpChecksumArgs
{
Value = 0,
},
UdpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpDestinationPortArgs
{
Value = 0,
},
UdpLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpLengthArgs
{
Value = 0,
},
UdpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpSourcePortArgs
{
Value = 0,
},
UdpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
},
},
LessThan = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanArgs
{
Context = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextArgs
{
Icmp6Checksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6ChecksumArgs
{
Value = 0,
},
Icmp6Code = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6CodeArgs
{
Value = 0,
},
Icmp6Type = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6TypeArgs
{
Value = 0,
},
Icmp6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6UserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
IcmpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpChecksumArgs
{
Value = 0,
},
IcmpCode = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpCodeArgs
{
Value = 0,
},
IcmpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpIdArgs
{
Value = 0,
},
IcmpSequence = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpSequenceArgs
{
Value = 0,
},
IcmpType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpTypeArgs
{
Value = 0,
},
IcmpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
Ip6FlowLabel = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6FlowLabelArgs
{
Value = 0,
},
Ip6HopLimit = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6HopLimitArgs
{
Value = 0,
},
Ip6NextHeader = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6NextHeaderArgs
{
Value = 0,
},
Ip6PayloadLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6PayloadLengthArgs
{
Value = 0,
},
Ip6TrafficClass = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6TrafficClassArgs
{
Value = 0,
},
Ip6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6UserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
Ip6Version = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6VersionArgs
{
Value = 0,
},
IpFragmentOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpFragmentOffsetArgs
{
Value = 0,
},
IpHeaderChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderChecksumArgs
{
Value = 0,
},
IpHeaderLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderLengthArgs
{
Value = 0,
},
IpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpIdArgs
{
Value = 0,
},
IpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionLengthArgs
{
Value = 0,
},
IpOptionNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionNumberArgs
{
Value = 0,
},
IpOptionType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionTypeArgs
{
Value = 0,
},
IpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
IpProtocol = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpProtocolArgs
{
Value = 0,
},
IpTos = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTosArgs
{
Value = 0,
},
IpTotalLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTotalLengthArgs
{
Value = 0,
},
IpTtl = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTtlArgs
{
Value = 0,
},
IpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
IpVersion = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpVersionArgs
{
Value = 0,
},
TcpAcknowledgeNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpAcknowledgeNumberArgs
{
Value = 0,
},
TcpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpChecksumArgs
{
Value = 0,
},
TcpDataOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDataOffsetArgs
{
Value = 0,
},
TcpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDestinationPortArgs
{
Value = 0,
},
TcpOptionKind = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionKindArgs
{
Value = 0,
},
TcpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionLengthArgs
{
Value = 0,
},
TcpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
TcpReserved = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpReservedArgs
{
Value = 0,
},
TcpSequenceNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSequenceNumberArgs
{
Value = 0,
},
TcpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSourcePortArgs
{
Value = 0,
},
TcpUrgentPointer = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUrgentPointerArgs
{
Value = 0,
},
TcpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
TcpWindowSize = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpWindowSizeArgs
{
Value = 0,
},
UdpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpChecksumArgs
{
Value = 0,
},
UdpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpDestinationPortArgs
{
Value = 0,
},
UdpLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpLengthArgs
{
Value = 0,
},
UdpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpSourcePortArgs
{
Value = 0,
},
UdpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpUserDefinedArgs
{
Offset = 0,
Value = 0,
Width = 0,
},
},
},
Range = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeArgs
{
Context = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextArgs
{
Icmp6Checksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6ChecksumArgs
{
High = 0,
Low = 0,
},
Icmp6Code = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6CodeArgs
{
High = 0,
Low = 0,
},
Icmp6Type = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6TypeArgs
{
High = 0,
Low = 0,
},
Icmp6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6UserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
IcmpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpChecksumArgs
{
High = 0,
Low = 0,
},
IcmpCode = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpCodeArgs
{
High = 0,
Low = 0,
},
IcmpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpIdArgs
{
High = 0,
Low = 0,
},
IcmpSequence = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpSequenceArgs
{
High = 0,
Low = 0,
},
IcmpType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpTypeArgs
{
High = 0,
Low = 0,
},
IcmpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpUserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
Ip6FlowLabel = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6FlowLabelArgs
{
High = 0,
Low = 0,
},
Ip6HopLimit = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6HopLimitArgs
{
High = 0,
Low = 0,
},
Ip6NextHeader = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6NextHeaderArgs
{
High = 0,
Low = 0,
},
Ip6PayloadLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6PayloadLengthArgs
{
High = 0,
Low = 0,
},
Ip6TrafficClass = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6TrafficClassArgs
{
High = 0,
Low = 0,
},
Ip6UserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6UserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
Ip6Version = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6VersionArgs
{
High = 0,
Low = 0,
},
IpFragmentOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpFragmentOffsetArgs
{
High = 0,
Low = 0,
},
IpHeaderChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderChecksumArgs
{
High = 0,
Low = 0,
},
IpHeaderLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderLengthArgs
{
High = 0,
Low = 0,
},
IpId = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpIdArgs
{
High = 0,
Low = 0,
},
IpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionLengthArgs
{
High = 0,
Low = 0,
},
IpOptionNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionNumberArgs
{
High = 0,
Low = 0,
},
IpOptionType = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionTypeArgs
{
High = 0,
Low = 0,
},
IpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionUserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
IpProtocol = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpProtocolArgs
{
High = 0,
Low = 0,
},
IpTos = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTosArgs
{
High = 0,
Low = 0,
},
IpTotalLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTotalLengthArgs
{
High = 0,
Low = 0,
},
IpTtl = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTtlArgs
{
High = 0,
Low = 0,
},
IpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpUserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
IpVersion = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpVersionArgs
{
High = 0,
Low = 0,
},
TcpAcknowledgeNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpAcknowledgeNumberArgs
{
High = 0,
Low = 0,
},
TcpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpChecksumArgs
{
High = 0,
Low = 0,
},
TcpDataOffset = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDataOffsetArgs
{
High = 0,
Low = 0,
},
TcpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDestinationPortArgs
{
High = 0,
Low = 0,
},
TcpOptionKind = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionKindArgs
{
High = 0,
Low = 0,
},
TcpOptionLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionLengthArgs
{
High = 0,
Low = 0,
},
TcpOptionUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionUserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
TcpReserved = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpReservedArgs
{
High = 0,
Low = 0,
},
TcpSequenceNumber = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSequenceNumberArgs
{
High = 0,
Low = 0,
},
TcpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSourcePortArgs
{
High = 0,
Low = 0,
},
TcpUrgentPointer = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUrgentPointerArgs
{
High = 0,
Low = 0,
},
TcpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
TcpWindowSize = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpWindowSizeArgs
{
High = 0,
Low = 0,
},
UdpChecksum = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpChecksumArgs
{
High = 0,
Low = 0,
},
UdpDestinationPort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpDestinationPortArgs
{
High = 0,
Low = 0,
},
UdpLength = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpLengthArgs
{
High = 0,
Low = 0,
},
UdpSourcePort = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpSourcePortArgs
{
High = 0,
Low = 0,
},
UdpUserDefined = new Panos.Inputs.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpUserDefinedArgs
{
High = 0,
Low = 0,
Offset = 0,
Width = 0,
},
},
},
},
},
},
},
},
},
ThreatId = 0,
Vendors = new[]
{
"string",
},
},
},
},
NonIpProtocol = new Panos.Inputs.ZoneProtectionProfileNonIpProtocolArgs
{
ListType = "string",
Protocols = new[]
{
new Panos.Inputs.ZoneProtectionProfileNonIpProtocolProtocolArgs
{
Name = "string",
Enable = false,
EtherType = "string",
},
},
},
RemoveTcpTimestamp = false,
ScanWhiteLists = new[]
{
new Panos.Inputs.ZoneProtectionProfileScanWhiteListArgs
{
Name = "string",
Ipv4 = "string",
Ipv6 = "string",
},
},
Scans = new[]
{
new Panos.Inputs.ZoneProtectionProfileScanArgs
{
Name = "string",
Action = new Panos.Inputs.ZoneProtectionProfileScanActionArgs
{
Alert = null,
Allow = null,
Block = null,
BlockIp = new Panos.Inputs.ZoneProtectionProfileScanActionBlockIpArgs
{
Duration = 0,
TrackBy = "string",
},
},
Interval = 0,
Threshold = 0,
},
},
StrictIpCheck = false,
StripMptcpOption = "string",
StripTcpFastOpenAndData = false,
SuppressIcmpNeedfrag = false,
SuppressIcmpTimeexceeded = false,
TcpRejectNonSyn = "string",
});
example, err := panos.NewZoneProtectionProfile(ctx, "zoneProtectionProfileResource", &panos.ZoneProtectionProfileArgs{
Location: &panos.ZoneProtectionProfileLocationArgs{
Ngfw: &panos.ZoneProtectionProfileLocationNgfwArgs{
NgfwDevice: pulumi.String("string"),
},
Template: &panos.ZoneProtectionProfileLocationTemplateArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.ZoneProtectionProfileLocationTemplateStackArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
},
DiscardTimestamp: pulumi.Bool(false),
AsymmetricPath: pulumi.String("string"),
DiscardIcmpFrag: pulumi.Bool(false),
DiscardIcmpLargePacket: pulumi.Bool(false),
DiscardIcmpPingZeroId: pulumi.Bool(false),
DiscardIpFrag: pulumi.Bool(false),
DiscardIpSpoof: pulumi.Bool(false),
DiscardLooseSourceRouting: pulumi.Bool(false),
DiscardMalformedOption: pulumi.Bool(false),
DiscardOverlappingTcpSegmentMismatch: pulumi.Bool(false),
DiscardRecordRoute: pulumi.Bool(false),
DiscardSecurity: pulumi.Bool(false),
DiscardStreamId: pulumi.Bool(false),
DiscardStrictSourceRouting: pulumi.Bool(false),
DiscardTcpSplitHandshake: pulumi.Bool(false),
DiscardTcpSynWithData: pulumi.Bool(false),
DiscardIcmpError: pulumi.Bool(false),
DiscardTcpSynackWithData: pulumi.Bool(false),
DiscardUnknownOption: pulumi.Bool(false),
Flood: &panos.ZoneProtectionProfileFloodArgs{
Icmp: &panos.ZoneProtectionProfileFloodIcmpArgs{
Enable: pulumi.Bool(false),
Red: &panos.ZoneProtectionProfileFloodIcmpRedArgs{
ActivateRate: pulumi.Float64(0),
AlarmRate: pulumi.Float64(0),
MaximalRate: pulumi.Float64(0),
},
},
Icmpv6: &panos.ZoneProtectionProfileFloodIcmpv6Args{
Enable: pulumi.Bool(false),
Red: &panos.ZoneProtectionProfileFloodIcmpv6RedArgs{
ActivateRate: pulumi.Float64(0),
AlarmRate: pulumi.Float64(0),
MaximalRate: pulumi.Float64(0),
},
},
OtherIp: &panos.ZoneProtectionProfileFloodOtherIpArgs{
Enable: pulumi.Bool(false),
Red: &panos.ZoneProtectionProfileFloodOtherIpRedArgs{
ActivateRate: pulumi.Float64(0),
AlarmRate: pulumi.Float64(0),
MaximalRate: pulumi.Float64(0),
},
},
SctpInit: &panos.ZoneProtectionProfileFloodSctpInitArgs{
Enable: pulumi.Bool(false),
Red: &panos.ZoneProtectionProfileFloodSctpInitRedArgs{
ActivateRate: pulumi.Float64(0),
AlarmRate: pulumi.Float64(0),
MaximalRate: pulumi.Float64(0),
},
},
TcpSyn: &panos.ZoneProtectionProfileFloodTcpSynArgs{
Enable: pulumi.Bool(false),
Red: &panos.ZoneProtectionProfileFloodTcpSynRedArgs{
ActivateRate: pulumi.Float64(0),
AlarmRate: pulumi.Float64(0),
MaximalRate: pulumi.Float64(0),
},
SynCookies: &panos.ZoneProtectionProfileFloodTcpSynSynCookiesArgs{
ActivateRate: pulumi.Float64(0),
AlarmRate: pulumi.Float64(0),
MaximalRate: pulumi.Float64(0),
},
},
Udp: &panos.ZoneProtectionProfileFloodUdpArgs{
Enable: pulumi.Bool(false),
Red: &panos.ZoneProtectionProfileFloodUdpRedArgs{
ActivateRate: pulumi.Float64(0),
AlarmRate: pulumi.Float64(0),
MaximalRate: pulumi.Float64(0),
},
},
},
Ipv6: &panos.ZoneProtectionProfileIpv6Args{
AnycastSource: pulumi.Bool(false),
FilterExtHdr: &panos.ZoneProtectionProfileIpv6FilterExtHdrArgs{
DestOptionHdr: pulumi.Bool(false),
HopByHopHdr: pulumi.Bool(false),
RoutingHdr: pulumi.Bool(false),
},
Icmpv6TooBigSmallMtuDiscard: pulumi.Bool(false),
IgnoreInvPkt: &panos.ZoneProtectionProfileIpv6IgnoreInvPktArgs{
DestUnreach: pulumi.Bool(false),
ParamProblem: pulumi.Bool(false),
PktTooBig: pulumi.Bool(false),
Redirect: pulumi.Bool(false),
TimeExceeded: pulumi.Bool(false),
},
Ipv4CompatibleAddress: pulumi.Bool(false),
MulticastSource: pulumi.Bool(false),
NeedlessFragmentHdr: pulumi.Bool(false),
OptionsInvalidIpv6Discard: pulumi.Bool(false),
ReservedFieldSetDiscard: pulumi.Bool(false),
RoutingHeader0: pulumi.Bool(false),
RoutingHeader1: pulumi.Bool(false),
RoutingHeader253: pulumi.Bool(false),
RoutingHeader254: pulumi.Bool(false),
RoutingHeader255: pulumi.Bool(false),
RoutingHeader3: pulumi.Bool(false),
RoutingHeader4252: pulumi.Bool(false),
},
L2SecGroupTagProtection: &panos.ZoneProtectionProfileL2SecGroupTagProtectionArgs{
Tags: panos.ZoneProtectionProfileL2SecGroupTagProtectionTagArray{
&panos.ZoneProtectionProfileL2SecGroupTagProtectionTagArgs{
Name: pulumi.String("string"),
Enable: pulumi.Bool(false),
Tag: pulumi.String("string"),
},
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
NetInspection: &panos.ZoneProtectionProfileNetInspectionArgs{
PredefinedRule: &panos.ZoneProtectionProfileNetInspectionPredefinedRuleArgs{
Enable: pulumi.Bool(false),
ThreatId: pulumi.Float64(0),
},
Rules: panos.ZoneProtectionProfileNetInspectionRuleArray{
&panos.ZoneProtectionProfileNetInspectionRuleArgs{
Name: pulumi.String("string"),
LogInterval: pulumi.Float64(0),
Cves: pulumi.StringArray{
pulumi.String("string"),
},
Enable: pulumi.Bool(false),
ExemptIps: panos.ZoneProtectionProfileNetInspectionRuleExemptIpArray{
&panos.ZoneProtectionProfileNetInspectionRuleExemptIpArgs{
Name: pulumi.String("string"),
},
},
IcmpUnreachable: pulumi.Bool(false),
Action: pulumi.String("string"),
LogSeverity: pulumi.String("string"),
Bugtraqs: pulumi.StringArray{
pulumi.String("string"),
},
PacketCapture: pulumi.String("string"),
References: pulumi.StringArray{
pulumi.String("string"),
},
Signature: &panos.ZoneProtectionProfileNetInspectionRuleSignatureArgs{
Comment: pulumi.String("string"),
OrConditions: panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionArray{
&panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionArgs{
Name: pulumi.String("string"),
AndConditions: panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionArray{
&panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionArgs{
Name: pulumi.String("string"),
Operator: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorArgs{
EqualTo: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToArgs{
Context: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextArgs{
Icmp6Checksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6ChecksumArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Icmp6Code: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6CodeArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Icmp6Type: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6TypeArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Icmp6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6UserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IcmpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpChecksumArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IcmpCode: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpCodeArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IcmpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpIdArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IcmpSequence: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpSequenceArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IcmpType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpTypeArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IcmpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpUserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6DestinationAddress: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6DestinationAddressArgs{
Mask: pulumi.String("string"),
Prefix: pulumi.Float64(0),
Value: pulumi.String("string"),
},
Ip6FlowLabel: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6FlowLabelArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Ip6HopLimit: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6HopLimitArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Ip6NextHeader: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6NextHeaderArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Ip6PayloadLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6PayloadLengthArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Ip6SourceAddress: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6SourceAddressArgs{
Mask: pulumi.String("string"),
Prefix: pulumi.Float64(0),
Value: pulumi.String("string"),
},
Ip6TrafficClass: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6TrafficClassArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
Ip6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6UserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6Version: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6VersionArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpDestinationAddress: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpDestinationAddressArgs{
Mask: pulumi.String("string"),
Prefix: pulumi.Float64(0),
Value: pulumi.String("string"),
},
IpFlagDf: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagDfArgs{
Value: pulumi.Float64(0),
},
IpFlagMf: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagMfArgs{
Value: pulumi.Float64(0),
},
IpFlagReserved: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagReservedArgs{
Value: pulumi.Float64(0),
},
IpFragmentOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFragmentOffsetArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpHeaderChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderChecksumArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpHeaderLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderLengthArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpIdArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionLengthArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpOptionNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionNumberArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpOptionType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionTypeArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionUserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpProtocol: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpProtocolArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpSourceAddress: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpSourceAddressArgs{
Mask: pulumi.String("string"),
Prefix: pulumi.Float64(0),
Value: pulumi.String("string"),
},
IpTos: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTosArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpTotalLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTotalLengthArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpTtl: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTtlArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
IpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpUserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpVersion: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpVersionArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpAcknowledgeNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpAcknowledgeNumberArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpChecksumArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpDataOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDataOffsetArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDestinationPortArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpFlagAck: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagAckArgs{
Value: pulumi.Float64(0),
},
TcpFlagCwr: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagCwrArgs{
Value: pulumi.Float64(0),
},
TcpFlagEce: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagEceArgs{
Value: pulumi.Float64(0),
},
TcpFlagFin: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagFinArgs{
Value: pulumi.Float64(0),
},
TcpFlagPsh: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagPshArgs{
Value: pulumi.Float64(0),
},
TcpFlagRst: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagRstArgs{
Value: pulumi.Float64(0),
},
TcpFlagSyn: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagSynArgs{
Value: pulumi.Float64(0),
},
TcpFlagUrg: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagUrgArgs{
Value: pulumi.Float64(0),
},
TcpOptionKind: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionKindArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionLengthArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionUserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpReserved: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpReservedArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpSequenceNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSequenceNumberArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSourcePortArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpUrgentPointer: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUrgentPointerArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
TcpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpWindowSize: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpWindowSizeArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
UdpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpChecksumArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
UdpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpDestinationPortArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
UdpLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpLengthArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
UdpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpSourcePortArgs{
Mask: pulumi.String("string"),
Value: pulumi.Float64(0),
},
UdpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpUserDefinedArgs{
Mask: pulumi.String("string"),
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
},
Negate: pulumi.Bool(false),
},
Event: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventArgs{
Context: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextArgs{
Ip6SameAddress: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIp6SameAddressArgs{},
IpOptionAddext: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionAddextArgs{},
IpOptionCipso: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionCipsoArgs{},
IpOptionDps: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionDpsArgs{},
IpOptionEip: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEipArgs{},
IpOptionEncode: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEncodeArgs{},
IpOptionEool: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEoolArgs{},
IpOptionEsec: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEsecArgs{},
IpOptionFinn: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionFinnArgs{},
IpOptionImitd: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionImitdArgs{},
IpOptionLsr: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionLsrArgs{},
IpOptionMtup: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionMtupArgs{},
IpOptionMtur: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionMturArgs{},
IpOptionNop: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionNopArgs{},
IpOptionQs: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionQsArgs{},
IpOptionRr: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionRrArgs{},
IpOptionRtralt: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionRtraltArgs{},
IpOptionSdb: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSdbArgs{},
IpOptionSec: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSecArgs{},
IpOptionSid: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSidArgs{},
IpOptionSsr: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSsrArgs{},
IpOptionTr: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionTrArgs{},
IpOptionTs: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionTsArgs{},
IpOptionUmp: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionUmpArgs{},
IpOptionVisa: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionVisaArgs{},
IpOptionZsu: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionZsuArgs{},
IpSameAddress: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpSameAddressArgs{},
TcpOptionAltDat: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionAltDatArgs{},
TcpOptionAltRst: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionAltRstArgs{},
TcpOptionBubba: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionBubbaArgs{},
TcpOptionCc: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCcArgs{},
TcpOptionCcEcho: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCcEchoArgs{},
TcpOptionCcNew: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCcNewArgs{},
TcpOptionCompress: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCompressArgs{},
TcpOptionCorrupt: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCorruptArgs{},
TcpOptionEcho: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEchoArgs{},
TcpOptionEchoReply: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEchoReplyArgs{},
TcpOptionEno: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEnoArgs{},
TcpOptionEool: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEoolArgs{},
TcpOptionFast: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionFastArgs{},
TcpOptionMd5: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionMd5Args{},
TcpOptionMptcp: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionMptcpArgs{},
TcpOptionMss: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionMssArgs{},
TcpOptionNop: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionNopArgs{},
TcpOptionPartialPermit: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionPartialPermitArgs{},
TcpOptionPartialProfile: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionPartialProfileArgs{},
TcpOptionQsRes: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionQsResArgs{},
TcpOptionRecBd: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionRecBdArgs{},
TcpOptionSack: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSackArgs{},
TcpOptionSackPermit: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSackPermitArgs{},
TcpOptionScps: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionScpsArgs{},
TcpOptionSkeeter: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSkeeterArgs{},
TcpOptionSnak: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSnakArgs{},
TcpOptionSnap: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSnapArgs{},
TcpOptionTcpAo: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionTcpAoArgs{},
TcpOptionTrailer: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionTrailerArgs{},
TcpOptionTs: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionTsArgs{},
TcpOptionUserTimeout: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionUserTimeoutArgs{},
TcpOptionWs: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionWsArgs{},
},
},
GreaterThan: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanArgs{
Context: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextArgs{
Icmp6Checksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6ChecksumArgs{
Value: pulumi.Float64(0),
},
Icmp6Code: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6CodeArgs{
Value: pulumi.Float64(0),
},
Icmp6Type: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6TypeArgs{
Value: pulumi.Float64(0),
},
Icmp6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6UserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IcmpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpChecksumArgs{
Value: pulumi.Float64(0),
},
IcmpCode: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpCodeArgs{
Value: pulumi.Float64(0),
},
IcmpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpIdArgs{
Value: pulumi.Float64(0),
},
IcmpSequence: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpSequenceArgs{
Value: pulumi.Float64(0),
},
IcmpType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpTypeArgs{
Value: pulumi.Float64(0),
},
IcmpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6FlowLabel: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6FlowLabelArgs{
Value: pulumi.Float64(0),
},
Ip6HopLimit: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6HopLimitArgs{
Value: pulumi.Float64(0),
},
Ip6NextHeader: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6NextHeaderArgs{
Value: pulumi.Float64(0),
},
Ip6PayloadLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6PayloadLengthArgs{
Value: pulumi.Float64(0),
},
Ip6TrafficClass: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6TrafficClassArgs{
Value: pulumi.Float64(0),
},
Ip6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6UserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6Version: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6VersionArgs{
Value: pulumi.Float64(0),
},
IpFragmentOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpFragmentOffsetArgs{
Value: pulumi.Float64(0),
},
IpHeaderChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderChecksumArgs{
Value: pulumi.Float64(0),
},
IpHeaderLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderLengthArgs{
Value: pulumi.Float64(0),
},
IpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpIdArgs{
Value: pulumi.Float64(0),
},
IpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionLengthArgs{
Value: pulumi.Float64(0),
},
IpOptionNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionNumberArgs{
Value: pulumi.Float64(0),
},
IpOptionType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionTypeArgs{
Value: pulumi.Float64(0),
},
IpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpProtocol: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpProtocolArgs{
Value: pulumi.Float64(0),
},
IpTos: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTosArgs{
Value: pulumi.Float64(0),
},
IpTotalLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTotalLengthArgs{
Value: pulumi.Float64(0),
},
IpTtl: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTtlArgs{
Value: pulumi.Float64(0),
},
IpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpVersion: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpVersionArgs{
Value: pulumi.Float64(0),
},
TcpAcknowledgeNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpAcknowledgeNumberArgs{
Value: pulumi.Float64(0),
},
TcpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpChecksumArgs{
Value: pulumi.Float64(0),
},
TcpDataOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDataOffsetArgs{
Value: pulumi.Float64(0),
},
TcpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDestinationPortArgs{
Value: pulumi.Float64(0),
},
TcpOptionKind: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionKindArgs{
Value: pulumi.Float64(0),
},
TcpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionLengthArgs{
Value: pulumi.Float64(0),
},
TcpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpReserved: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpReservedArgs{
Value: pulumi.Float64(0),
},
TcpSequenceNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSequenceNumberArgs{
Value: pulumi.Float64(0),
},
TcpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSourcePortArgs{
Value: pulumi.Float64(0),
},
TcpUrgentPointer: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUrgentPointerArgs{
Value: pulumi.Float64(0),
},
TcpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpWindowSize: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpWindowSizeArgs{
Value: pulumi.Float64(0),
},
UdpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpChecksumArgs{
Value: pulumi.Float64(0),
},
UdpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpDestinationPortArgs{
Value: pulumi.Float64(0),
},
UdpLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpLengthArgs{
Value: pulumi.Float64(0),
},
UdpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpSourcePortArgs{
Value: pulumi.Float64(0),
},
UdpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
},
},
LessThan: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanArgs{
Context: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextArgs{
Icmp6Checksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6ChecksumArgs{
Value: pulumi.Float64(0),
},
Icmp6Code: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6CodeArgs{
Value: pulumi.Float64(0),
},
Icmp6Type: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6TypeArgs{
Value: pulumi.Float64(0),
},
Icmp6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6UserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IcmpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpChecksumArgs{
Value: pulumi.Float64(0),
},
IcmpCode: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpCodeArgs{
Value: pulumi.Float64(0),
},
IcmpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpIdArgs{
Value: pulumi.Float64(0),
},
IcmpSequence: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpSequenceArgs{
Value: pulumi.Float64(0),
},
IcmpType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpTypeArgs{
Value: pulumi.Float64(0),
},
IcmpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6FlowLabel: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6FlowLabelArgs{
Value: pulumi.Float64(0),
},
Ip6HopLimit: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6HopLimitArgs{
Value: pulumi.Float64(0),
},
Ip6NextHeader: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6NextHeaderArgs{
Value: pulumi.Float64(0),
},
Ip6PayloadLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6PayloadLengthArgs{
Value: pulumi.Float64(0),
},
Ip6TrafficClass: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6TrafficClassArgs{
Value: pulumi.Float64(0),
},
Ip6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6UserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6Version: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6VersionArgs{
Value: pulumi.Float64(0),
},
IpFragmentOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpFragmentOffsetArgs{
Value: pulumi.Float64(0),
},
IpHeaderChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderChecksumArgs{
Value: pulumi.Float64(0),
},
IpHeaderLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderLengthArgs{
Value: pulumi.Float64(0),
},
IpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpIdArgs{
Value: pulumi.Float64(0),
},
IpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionLengthArgs{
Value: pulumi.Float64(0),
},
IpOptionNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionNumberArgs{
Value: pulumi.Float64(0),
},
IpOptionType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionTypeArgs{
Value: pulumi.Float64(0),
},
IpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpProtocol: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpProtocolArgs{
Value: pulumi.Float64(0),
},
IpTos: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTosArgs{
Value: pulumi.Float64(0),
},
IpTotalLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTotalLengthArgs{
Value: pulumi.Float64(0),
},
IpTtl: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTtlArgs{
Value: pulumi.Float64(0),
},
IpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpVersion: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpVersionArgs{
Value: pulumi.Float64(0),
},
TcpAcknowledgeNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpAcknowledgeNumberArgs{
Value: pulumi.Float64(0),
},
TcpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpChecksumArgs{
Value: pulumi.Float64(0),
},
TcpDataOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDataOffsetArgs{
Value: pulumi.Float64(0),
},
TcpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDestinationPortArgs{
Value: pulumi.Float64(0),
},
TcpOptionKind: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionKindArgs{
Value: pulumi.Float64(0),
},
TcpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionLengthArgs{
Value: pulumi.Float64(0),
},
TcpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpReserved: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpReservedArgs{
Value: pulumi.Float64(0),
},
TcpSequenceNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSequenceNumberArgs{
Value: pulumi.Float64(0),
},
TcpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSourcePortArgs{
Value: pulumi.Float64(0),
},
TcpUrgentPointer: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUrgentPointerArgs{
Value: pulumi.Float64(0),
},
TcpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpWindowSize: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpWindowSizeArgs{
Value: pulumi.Float64(0),
},
UdpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpChecksumArgs{
Value: pulumi.Float64(0),
},
UdpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpDestinationPortArgs{
Value: pulumi.Float64(0),
},
UdpLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpLengthArgs{
Value: pulumi.Float64(0),
},
UdpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpSourcePortArgs{
Value: pulumi.Float64(0),
},
UdpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpUserDefinedArgs{
Offset: pulumi.Float64(0),
Value: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
},
},
Range: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeArgs{
Context: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextArgs{
Icmp6Checksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6ChecksumArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Icmp6Code: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6CodeArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Icmp6Type: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6TypeArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Icmp6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6UserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IcmpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpChecksumArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IcmpCode: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpCodeArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IcmpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpIdArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IcmpSequence: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpSequenceArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IcmpType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpTypeArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IcmpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpUserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6FlowLabel: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6FlowLabelArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Ip6HopLimit: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6HopLimitArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Ip6NextHeader: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6NextHeaderArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Ip6PayloadLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6PayloadLengthArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Ip6TrafficClass: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6TrafficClassArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
Ip6UserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6UserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
Ip6Version: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6VersionArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpFragmentOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpFragmentOffsetArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpHeaderChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderChecksumArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpHeaderLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderLengthArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpId: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpIdArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionLengthArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpOptionNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionNumberArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpOptionType: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionTypeArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionUserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpProtocol: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpProtocolArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpTos: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTosArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpTotalLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTotalLengthArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpTtl: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTtlArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
IpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpUserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
IpVersion: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpVersionArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpAcknowledgeNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpAcknowledgeNumberArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpChecksumArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpDataOffset: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDataOffsetArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDestinationPortArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpOptionKind: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionKindArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpOptionLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionLengthArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpOptionUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionUserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpReserved: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpReservedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpSequenceNumber: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSequenceNumberArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSourcePortArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpUrgentPointer: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUrgentPointerArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
TcpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
TcpWindowSize: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpWindowSizeArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
UdpChecksum: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpChecksumArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
UdpDestinationPort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpDestinationPortArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
UdpLength: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpLengthArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
UdpSourcePort: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpSourcePortArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
},
UdpUserDefined: &panos.ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpUserDefinedArgs{
High: pulumi.Float64(0),
Low: pulumi.Float64(0),
Offset: pulumi.Float64(0),
Width: pulumi.Float64(0),
},
},
},
},
},
},
},
},
},
ThreatId: pulumi.Float64(0),
Vendors: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
NonIpProtocol: &panos.ZoneProtectionProfileNonIpProtocolArgs{
ListType: pulumi.String("string"),
Protocols: panos.ZoneProtectionProfileNonIpProtocolProtocolArray{
&panos.ZoneProtectionProfileNonIpProtocolProtocolArgs{
Name: pulumi.String("string"),
Enable: pulumi.Bool(false),
EtherType: pulumi.String("string"),
},
},
},
RemoveTcpTimestamp: pulumi.Bool(false),
ScanWhiteLists: panos.ZoneProtectionProfileScanWhiteListArray{
&panos.ZoneProtectionProfileScanWhiteListArgs{
Name: pulumi.String("string"),
Ipv4: pulumi.String("string"),
Ipv6: pulumi.String("string"),
},
},
Scans: panos.ZoneProtectionProfileScanArray{
&panos.ZoneProtectionProfileScanArgs{
Name: pulumi.String("string"),
Action: &panos.ZoneProtectionProfileScanActionArgs{
Alert: &panos.ZoneProtectionProfileScanActionAlertArgs{},
Allow: &panos.ZoneProtectionProfileScanActionAllowArgs{},
Block: &panos.ZoneProtectionProfileScanActionBlockArgs{},
BlockIp: &panos.ZoneProtectionProfileScanActionBlockIpArgs{
Duration: pulumi.Float64(0),
TrackBy: pulumi.String("string"),
},
},
Interval: pulumi.Float64(0),
Threshold: pulumi.Float64(0),
},
},
StrictIpCheck: pulumi.Bool(false),
StripMptcpOption: pulumi.String("string"),
StripTcpFastOpenAndData: pulumi.Bool(false),
SuppressIcmpNeedfrag: pulumi.Bool(false),
SuppressIcmpTimeexceeded: pulumi.Bool(false),
TcpRejectNonSyn: pulumi.String("string"),
})
var zoneProtectionProfileResource = new ZoneProtectionProfile("zoneProtectionProfileResource", ZoneProtectionProfileArgs.builder()
.location(ZoneProtectionProfileLocationArgs.builder()
.ngfw(ZoneProtectionProfileLocationNgfwArgs.builder()
.ngfwDevice("string")
.build())
.template(ZoneProtectionProfileLocationTemplateArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.templateStack(ZoneProtectionProfileLocationTemplateStackArgs.builder()
.name("string")
.ngfwDevice("string")
.panoramaDevice("string")
.build())
.build())
.discardTimestamp(false)
.asymmetricPath("string")
.discardIcmpFrag(false)
.discardIcmpLargePacket(false)
.discardIcmpPingZeroId(false)
.discardIpFrag(false)
.discardIpSpoof(false)
.discardLooseSourceRouting(false)
.discardMalformedOption(false)
.discardOverlappingTcpSegmentMismatch(false)
.discardRecordRoute(false)
.discardSecurity(false)
.discardStreamId(false)
.discardStrictSourceRouting(false)
.discardTcpSplitHandshake(false)
.discardTcpSynWithData(false)
.discardIcmpError(false)
.discardTcpSynackWithData(false)
.discardUnknownOption(false)
.flood(ZoneProtectionProfileFloodArgs.builder()
.icmp(ZoneProtectionProfileFloodIcmpArgs.builder()
.enable(false)
.red(ZoneProtectionProfileFloodIcmpRedArgs.builder()
.activateRate(0.0)
.alarmRate(0.0)
.maximalRate(0.0)
.build())
.build())
.icmpv6(ZoneProtectionProfileFloodIcmpv6Args.builder()
.enable(false)
.red(ZoneProtectionProfileFloodIcmpv6RedArgs.builder()
.activateRate(0.0)
.alarmRate(0.0)
.maximalRate(0.0)
.build())
.build())
.otherIp(ZoneProtectionProfileFloodOtherIpArgs.builder()
.enable(false)
.red(ZoneProtectionProfileFloodOtherIpRedArgs.builder()
.activateRate(0.0)
.alarmRate(0.0)
.maximalRate(0.0)
.build())
.build())
.sctpInit(ZoneProtectionProfileFloodSctpInitArgs.builder()
.enable(false)
.red(ZoneProtectionProfileFloodSctpInitRedArgs.builder()
.activateRate(0.0)
.alarmRate(0.0)
.maximalRate(0.0)
.build())
.build())
.tcpSyn(ZoneProtectionProfileFloodTcpSynArgs.builder()
.enable(false)
.red(ZoneProtectionProfileFloodTcpSynRedArgs.builder()
.activateRate(0.0)
.alarmRate(0.0)
.maximalRate(0.0)
.build())
.synCookies(ZoneProtectionProfileFloodTcpSynSynCookiesArgs.builder()
.activateRate(0.0)
.alarmRate(0.0)
.maximalRate(0.0)
.build())
.build())
.udp(ZoneProtectionProfileFloodUdpArgs.builder()
.enable(false)
.red(ZoneProtectionProfileFloodUdpRedArgs.builder()
.activateRate(0.0)
.alarmRate(0.0)
.maximalRate(0.0)
.build())
.build())
.build())
.ipv6(ZoneProtectionProfileIpv6Args.builder()
.anycastSource(false)
.filterExtHdr(ZoneProtectionProfileIpv6FilterExtHdrArgs.builder()
.destOptionHdr(false)
.hopByHopHdr(false)
.routingHdr(false)
.build())
.icmpv6TooBigSmallMtuDiscard(false)
.ignoreInvPkt(ZoneProtectionProfileIpv6IgnoreInvPktArgs.builder()
.destUnreach(false)
.paramProblem(false)
.pktTooBig(false)
.redirect(false)
.timeExceeded(false)
.build())
.ipv4CompatibleAddress(false)
.multicastSource(false)
.needlessFragmentHdr(false)
.optionsInvalidIpv6Discard(false)
.reservedFieldSetDiscard(false)
.routingHeader0(false)
.routingHeader1(false)
.routingHeader253(false)
.routingHeader254(false)
.routingHeader255(false)
.routingHeader3(false)
.routingHeader4252(false)
.build())
.l2SecGroupTagProtection(ZoneProtectionProfileL2SecGroupTagProtectionArgs.builder()
.tags(ZoneProtectionProfileL2SecGroupTagProtectionTagArgs.builder()
.name("string")
.enable(false)
.tag("string")
.build())
.build())
.description("string")
.name("string")
.netInspection(ZoneProtectionProfileNetInspectionArgs.builder()
.predefinedRule(ZoneProtectionProfileNetInspectionPredefinedRuleArgs.builder()
.enable(false)
.threatId(0.0)
.build())
.rules(ZoneProtectionProfileNetInspectionRuleArgs.builder()
.name("string")
.logInterval(0.0)
.cves("string")
.enable(false)
.exemptIps(ZoneProtectionProfileNetInspectionRuleExemptIpArgs.builder()
.name("string")
.build())
.icmpUnreachable(false)
.action("string")
.logSeverity("string")
.bugtraqs("string")
.packetCapture("string")
.references("string")
.signature(ZoneProtectionProfileNetInspectionRuleSignatureArgs.builder()
.comment("string")
.orConditions(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionArgs.builder()
.name("string")
.andConditions(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionArgs.builder()
.name("string")
.operator(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorArgs.builder()
.equalTo(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToArgs.builder()
.context(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextArgs.builder()
.icmp6Checksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6ChecksumArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmp6Code(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6CodeArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmp6Type(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6TypeArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmp6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6UserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.icmpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpChecksumArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmpCode(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpCodeArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmpId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpIdArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmpSequence(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpSequenceArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmpType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpTypeArgs.builder()
.mask("string")
.value(0.0)
.build())
.icmpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpUserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ip6DestinationAddress(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6DestinationAddressArgs.builder()
.mask("string")
.prefix(0.0)
.value("string")
.build())
.ip6FlowLabel(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6FlowLabelArgs.builder()
.mask("string")
.value(0.0)
.build())
.ip6HopLimit(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6HopLimitArgs.builder()
.mask("string")
.value(0.0)
.build())
.ip6NextHeader(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6NextHeaderArgs.builder()
.mask("string")
.value(0.0)
.build())
.ip6PayloadLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6PayloadLengthArgs.builder()
.mask("string")
.value(0.0)
.build())
.ip6SourceAddress(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6SourceAddressArgs.builder()
.mask("string")
.prefix(0.0)
.value("string")
.build())
.ip6TrafficClass(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6TrafficClassArgs.builder()
.mask("string")
.value(0.0)
.build())
.ip6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6UserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ip6Version(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6VersionArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipDestinationAddress(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpDestinationAddressArgs.builder()
.mask("string")
.prefix(0.0)
.value("string")
.build())
.ipFlagDf(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagDfArgs.builder()
.value(0.0)
.build())
.ipFlagMf(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagMfArgs.builder()
.value(0.0)
.build())
.ipFlagReserved(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagReservedArgs.builder()
.value(0.0)
.build())
.ipFragmentOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFragmentOffsetArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipHeaderChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderChecksumArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipHeaderLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderLengthArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpIdArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionLengthArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipOptionNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionNumberArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipOptionType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionTypeArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionUserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ipProtocol(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpProtocolArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipSourceAddress(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpSourceAddressArgs.builder()
.mask("string")
.prefix(0.0)
.value("string")
.build())
.ipTos(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTosArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipTotalLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTotalLengthArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipTtl(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTtlArgs.builder()
.mask("string")
.value(0.0)
.build())
.ipUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpUserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ipVersion(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpVersionArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpAcknowledgeNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpAcknowledgeNumberArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpChecksumArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpDataOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDataOffsetArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDestinationPortArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpFlagAck(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagAckArgs.builder()
.value(0.0)
.build())
.tcpFlagCwr(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagCwrArgs.builder()
.value(0.0)
.build())
.tcpFlagEce(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagEceArgs.builder()
.value(0.0)
.build())
.tcpFlagFin(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagFinArgs.builder()
.value(0.0)
.build())
.tcpFlagPsh(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagPshArgs.builder()
.value(0.0)
.build())
.tcpFlagRst(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagRstArgs.builder()
.value(0.0)
.build())
.tcpFlagSyn(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagSynArgs.builder()
.value(0.0)
.build())
.tcpFlagUrg(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagUrgArgs.builder()
.value(0.0)
.build())
.tcpOptionKind(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionKindArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionLengthArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionUserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.tcpReserved(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpReservedArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpSequenceNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSequenceNumberArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSourcePortArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpUrgentPointer(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUrgentPointerArgs.builder()
.mask("string")
.value(0.0)
.build())
.tcpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.tcpWindowSize(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpWindowSizeArgs.builder()
.mask("string")
.value(0.0)
.build())
.udpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpChecksumArgs.builder()
.mask("string")
.value(0.0)
.build())
.udpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpDestinationPortArgs.builder()
.mask("string")
.value(0.0)
.build())
.udpLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpLengthArgs.builder()
.mask("string")
.value(0.0)
.build())
.udpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpSourcePortArgs.builder()
.mask("string")
.value(0.0)
.build())
.udpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpUserDefinedArgs.builder()
.mask("string")
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.build())
.negate(false)
.build())
.event(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventArgs.builder()
.context(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextArgs.builder()
.ip6SameAddress(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIp6SameAddressArgs.builder()
.build())
.ipOptionAddext(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionAddextArgs.builder()
.build())
.ipOptionCipso(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionCipsoArgs.builder()
.build())
.ipOptionDps(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionDpsArgs.builder()
.build())
.ipOptionEip(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEipArgs.builder()
.build())
.ipOptionEncode(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEncodeArgs.builder()
.build())
.ipOptionEool(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEoolArgs.builder()
.build())
.ipOptionEsec(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionEsecArgs.builder()
.build())
.ipOptionFinn(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionFinnArgs.builder()
.build())
.ipOptionImitd(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionImitdArgs.builder()
.build())
.ipOptionLsr(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionLsrArgs.builder()
.build())
.ipOptionMtup(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionMtupArgs.builder()
.build())
.ipOptionMtur(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionMturArgs.builder()
.build())
.ipOptionNop(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionNopArgs.builder()
.build())
.ipOptionQs(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionQsArgs.builder()
.build())
.ipOptionRr(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionRrArgs.builder()
.build())
.ipOptionRtralt(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionRtraltArgs.builder()
.build())
.ipOptionSdb(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSdbArgs.builder()
.build())
.ipOptionSec(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSecArgs.builder()
.build())
.ipOptionSid(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSidArgs.builder()
.build())
.ipOptionSsr(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionSsrArgs.builder()
.build())
.ipOptionTr(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionTrArgs.builder()
.build())
.ipOptionTs(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionTsArgs.builder()
.build())
.ipOptionUmp(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionUmpArgs.builder()
.build())
.ipOptionVisa(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionVisaArgs.builder()
.build())
.ipOptionZsu(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpOptionZsuArgs.builder()
.build())
.ipSameAddress(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextIpSameAddressArgs.builder()
.build())
.tcpOptionAltDat(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionAltDatArgs.builder()
.build())
.tcpOptionAltRst(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionAltRstArgs.builder()
.build())
.tcpOptionBubba(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionBubbaArgs.builder()
.build())
.tcpOptionCc(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCcArgs.builder()
.build())
.tcpOptionCcEcho(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCcEchoArgs.builder()
.build())
.tcpOptionCcNew(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCcNewArgs.builder()
.build())
.tcpOptionCompress(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCompressArgs.builder()
.build())
.tcpOptionCorrupt(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionCorruptArgs.builder()
.build())
.tcpOptionEcho(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEchoArgs.builder()
.build())
.tcpOptionEchoReply(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEchoReplyArgs.builder()
.build())
.tcpOptionEno(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEnoArgs.builder()
.build())
.tcpOptionEool(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionEoolArgs.builder()
.build())
.tcpOptionFast(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionFastArgs.builder()
.build())
.tcpOptionMd5(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionMd5Args.builder()
.build())
.tcpOptionMptcp(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionMptcpArgs.builder()
.build())
.tcpOptionMss(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionMssArgs.builder()
.build())
.tcpOptionNop(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionNopArgs.builder()
.build())
.tcpOptionPartialPermit(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionPartialPermitArgs.builder()
.build())
.tcpOptionPartialProfile(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionPartialProfileArgs.builder()
.build())
.tcpOptionQsRes(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionQsResArgs.builder()
.build())
.tcpOptionRecBd(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionRecBdArgs.builder()
.build())
.tcpOptionSack(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSackArgs.builder()
.build())
.tcpOptionSackPermit(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSackPermitArgs.builder()
.build())
.tcpOptionScps(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionScpsArgs.builder()
.build())
.tcpOptionSkeeter(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSkeeterArgs.builder()
.build())
.tcpOptionSnak(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSnakArgs.builder()
.build())
.tcpOptionSnap(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionSnapArgs.builder()
.build())
.tcpOptionTcpAo(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionTcpAoArgs.builder()
.build())
.tcpOptionTrailer(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionTrailerArgs.builder()
.build())
.tcpOptionTs(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionTsArgs.builder()
.build())
.tcpOptionUserTimeout(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionUserTimeoutArgs.builder()
.build())
.tcpOptionWs(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextTcpOptionWsArgs.builder()
.build())
.build())
.build())
.greaterThan(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanArgs.builder()
.context(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextArgs.builder()
.icmp6Checksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6ChecksumArgs.builder()
.value(0.0)
.build())
.icmp6Code(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6CodeArgs.builder()
.value(0.0)
.build())
.icmp6Type(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6TypeArgs.builder()
.value(0.0)
.build())
.icmp6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6UserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.icmpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpChecksumArgs.builder()
.value(0.0)
.build())
.icmpCode(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpCodeArgs.builder()
.value(0.0)
.build())
.icmpId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpIdArgs.builder()
.value(0.0)
.build())
.icmpSequence(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpSequenceArgs.builder()
.value(0.0)
.build())
.icmpType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpTypeArgs.builder()
.value(0.0)
.build())
.icmpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ip6FlowLabel(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6FlowLabelArgs.builder()
.value(0.0)
.build())
.ip6HopLimit(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6HopLimitArgs.builder()
.value(0.0)
.build())
.ip6NextHeader(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6NextHeaderArgs.builder()
.value(0.0)
.build())
.ip6PayloadLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6PayloadLengthArgs.builder()
.value(0.0)
.build())
.ip6TrafficClass(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6TrafficClassArgs.builder()
.value(0.0)
.build())
.ip6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6UserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ip6Version(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6VersionArgs.builder()
.value(0.0)
.build())
.ipFragmentOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpFragmentOffsetArgs.builder()
.value(0.0)
.build())
.ipHeaderChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderChecksumArgs.builder()
.value(0.0)
.build())
.ipHeaderLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderLengthArgs.builder()
.value(0.0)
.build())
.ipId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpIdArgs.builder()
.value(0.0)
.build())
.ipOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionLengthArgs.builder()
.value(0.0)
.build())
.ipOptionNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionNumberArgs.builder()
.value(0.0)
.build())
.ipOptionType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionTypeArgs.builder()
.value(0.0)
.build())
.ipOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ipProtocol(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpProtocolArgs.builder()
.value(0.0)
.build())
.ipTos(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTosArgs.builder()
.value(0.0)
.build())
.ipTotalLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTotalLengthArgs.builder()
.value(0.0)
.build())
.ipTtl(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTtlArgs.builder()
.value(0.0)
.build())
.ipUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ipVersion(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpVersionArgs.builder()
.value(0.0)
.build())
.tcpAcknowledgeNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpAcknowledgeNumberArgs.builder()
.value(0.0)
.build())
.tcpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpChecksumArgs.builder()
.value(0.0)
.build())
.tcpDataOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDataOffsetArgs.builder()
.value(0.0)
.build())
.tcpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDestinationPortArgs.builder()
.value(0.0)
.build())
.tcpOptionKind(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionKindArgs.builder()
.value(0.0)
.build())
.tcpOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionLengthArgs.builder()
.value(0.0)
.build())
.tcpOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.tcpReserved(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpReservedArgs.builder()
.value(0.0)
.build())
.tcpSequenceNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSequenceNumberArgs.builder()
.value(0.0)
.build())
.tcpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSourcePortArgs.builder()
.value(0.0)
.build())
.tcpUrgentPointer(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUrgentPointerArgs.builder()
.value(0.0)
.build())
.tcpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.tcpWindowSize(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpWindowSizeArgs.builder()
.value(0.0)
.build())
.udpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpChecksumArgs.builder()
.value(0.0)
.build())
.udpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpDestinationPortArgs.builder()
.value(0.0)
.build())
.udpLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpLengthArgs.builder()
.value(0.0)
.build())
.udpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpSourcePortArgs.builder()
.value(0.0)
.build())
.udpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.build())
.build())
.lessThan(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanArgs.builder()
.context(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextArgs.builder()
.icmp6Checksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6ChecksumArgs.builder()
.value(0.0)
.build())
.icmp6Code(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6CodeArgs.builder()
.value(0.0)
.build())
.icmp6Type(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6TypeArgs.builder()
.value(0.0)
.build())
.icmp6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6UserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.icmpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpChecksumArgs.builder()
.value(0.0)
.build())
.icmpCode(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpCodeArgs.builder()
.value(0.0)
.build())
.icmpId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpIdArgs.builder()
.value(0.0)
.build())
.icmpSequence(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpSequenceArgs.builder()
.value(0.0)
.build())
.icmpType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpTypeArgs.builder()
.value(0.0)
.build())
.icmpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ip6FlowLabel(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6FlowLabelArgs.builder()
.value(0.0)
.build())
.ip6HopLimit(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6HopLimitArgs.builder()
.value(0.0)
.build())
.ip6NextHeader(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6NextHeaderArgs.builder()
.value(0.0)
.build())
.ip6PayloadLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6PayloadLengthArgs.builder()
.value(0.0)
.build())
.ip6TrafficClass(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6TrafficClassArgs.builder()
.value(0.0)
.build())
.ip6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6UserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ip6Version(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6VersionArgs.builder()
.value(0.0)
.build())
.ipFragmentOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpFragmentOffsetArgs.builder()
.value(0.0)
.build())
.ipHeaderChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderChecksumArgs.builder()
.value(0.0)
.build())
.ipHeaderLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderLengthArgs.builder()
.value(0.0)
.build())
.ipId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpIdArgs.builder()
.value(0.0)
.build())
.ipOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionLengthArgs.builder()
.value(0.0)
.build())
.ipOptionNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionNumberArgs.builder()
.value(0.0)
.build())
.ipOptionType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionTypeArgs.builder()
.value(0.0)
.build())
.ipOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ipProtocol(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpProtocolArgs.builder()
.value(0.0)
.build())
.ipTos(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTosArgs.builder()
.value(0.0)
.build())
.ipTotalLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTotalLengthArgs.builder()
.value(0.0)
.build())
.ipTtl(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTtlArgs.builder()
.value(0.0)
.build())
.ipUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.ipVersion(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpVersionArgs.builder()
.value(0.0)
.build())
.tcpAcknowledgeNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpAcknowledgeNumberArgs.builder()
.value(0.0)
.build())
.tcpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpChecksumArgs.builder()
.value(0.0)
.build())
.tcpDataOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDataOffsetArgs.builder()
.value(0.0)
.build())
.tcpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDestinationPortArgs.builder()
.value(0.0)
.build())
.tcpOptionKind(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionKindArgs.builder()
.value(0.0)
.build())
.tcpOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionLengthArgs.builder()
.value(0.0)
.build())
.tcpOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.tcpReserved(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpReservedArgs.builder()
.value(0.0)
.build())
.tcpSequenceNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSequenceNumberArgs.builder()
.value(0.0)
.build())
.tcpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSourcePortArgs.builder()
.value(0.0)
.build())
.tcpUrgentPointer(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUrgentPointerArgs.builder()
.value(0.0)
.build())
.tcpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.tcpWindowSize(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpWindowSizeArgs.builder()
.value(0.0)
.build())
.udpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpChecksumArgs.builder()
.value(0.0)
.build())
.udpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpDestinationPortArgs.builder()
.value(0.0)
.build())
.udpLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpLengthArgs.builder()
.value(0.0)
.build())
.udpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpSourcePortArgs.builder()
.value(0.0)
.build())
.udpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpUserDefinedArgs.builder()
.offset(0.0)
.value(0.0)
.width(0.0)
.build())
.build())
.build())
.range(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeArgs.builder()
.context(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextArgs.builder()
.icmp6Checksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6ChecksumArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmp6Code(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6CodeArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmp6Type(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6TypeArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmp6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6UserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.icmpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpChecksumArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmpCode(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpCodeArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmpId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpIdArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmpSequence(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpSequenceArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmpType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpTypeArgs.builder()
.high(0.0)
.low(0.0)
.build())
.icmpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpUserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.ip6FlowLabel(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6FlowLabelArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ip6HopLimit(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6HopLimitArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ip6NextHeader(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6NextHeaderArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ip6PayloadLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6PayloadLengthArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ip6TrafficClass(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6TrafficClassArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ip6UserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6UserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.ip6Version(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6VersionArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipFragmentOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpFragmentOffsetArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipHeaderChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderChecksumArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipHeaderLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderLengthArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipId(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpIdArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionLengthArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipOptionNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionNumberArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipOptionType(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionTypeArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionUserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.ipProtocol(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpProtocolArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipTos(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTosArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipTotalLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTotalLengthArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipTtl(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTtlArgs.builder()
.high(0.0)
.low(0.0)
.build())
.ipUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpUserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.ipVersion(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpVersionArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpAcknowledgeNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpAcknowledgeNumberArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpChecksumArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpDataOffset(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDataOffsetArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDestinationPortArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpOptionKind(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionKindArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpOptionLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionLengthArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpOptionUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionUserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.tcpReserved(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpReservedArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpSequenceNumber(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSequenceNumberArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSourcePortArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpUrgentPointer(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUrgentPointerArgs.builder()
.high(0.0)
.low(0.0)
.build())
.tcpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.tcpWindowSize(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpWindowSizeArgs.builder()
.high(0.0)
.low(0.0)
.build())
.udpChecksum(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpChecksumArgs.builder()
.high(0.0)
.low(0.0)
.build())
.udpDestinationPort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpDestinationPortArgs.builder()
.high(0.0)
.low(0.0)
.build())
.udpLength(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpLengthArgs.builder()
.high(0.0)
.low(0.0)
.build())
.udpSourcePort(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpSourcePortArgs.builder()
.high(0.0)
.low(0.0)
.build())
.udpUserDefined(ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpUserDefinedArgs.builder()
.high(0.0)
.low(0.0)
.offset(0.0)
.width(0.0)
.build())
.build())
.build())
.build())
.build())
.build())
.build())
.threatId(0.0)
.vendors("string")
.build())
.build())
.nonIpProtocol(ZoneProtectionProfileNonIpProtocolArgs.builder()
.listType("string")
.protocols(ZoneProtectionProfileNonIpProtocolProtocolArgs.builder()
.name("string")
.enable(false)
.etherType("string")
.build())
.build())
.removeTcpTimestamp(false)
.scanWhiteLists(ZoneProtectionProfileScanWhiteListArgs.builder()
.name("string")
.ipv4("string")
.ipv6("string")
.build())
.scans(ZoneProtectionProfileScanArgs.builder()
.name("string")
.action(ZoneProtectionProfileScanActionArgs.builder()
.alert(ZoneProtectionProfileScanActionAlertArgs.builder()
.build())
.allow(ZoneProtectionProfileScanActionAllowArgs.builder()
.build())
.block(ZoneProtectionProfileScanActionBlockArgs.builder()
.build())
.blockIp(ZoneProtectionProfileScanActionBlockIpArgs.builder()
.duration(0.0)
.trackBy("string")
.build())
.build())
.interval(0.0)
.threshold(0.0)
.build())
.strictIpCheck(false)
.stripMptcpOption("string")
.stripTcpFastOpenAndData(false)
.suppressIcmpNeedfrag(false)
.suppressIcmpTimeexceeded(false)
.tcpRejectNonSyn("string")
.build());
zone_protection_profile_resource = panos.ZoneProtectionProfile("zoneProtectionProfileResource",
location={
"ngfw": {
"ngfw_device": "string",
},
"template": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"ngfw_device": "string",
"panorama_device": "string",
},
},
discard_timestamp=False,
asymmetric_path="string",
discard_icmp_frag=False,
discard_icmp_large_packet=False,
discard_icmp_ping_zero_id=False,
discard_ip_frag=False,
discard_ip_spoof=False,
discard_loose_source_routing=False,
discard_malformed_option=False,
discard_overlapping_tcp_segment_mismatch=False,
discard_record_route=False,
discard_security=False,
discard_stream_id=False,
discard_strict_source_routing=False,
discard_tcp_split_handshake=False,
discard_tcp_syn_with_data=False,
discard_icmp_error=False,
discard_tcp_synack_with_data=False,
discard_unknown_option=False,
flood={
"icmp": {
"enable": False,
"red": {
"activate_rate": float(0),
"alarm_rate": float(0),
"maximal_rate": float(0),
},
},
"icmpv6": {
"enable": False,
"red": {
"activate_rate": float(0),
"alarm_rate": float(0),
"maximal_rate": float(0),
},
},
"other_ip": {
"enable": False,
"red": {
"activate_rate": float(0),
"alarm_rate": float(0),
"maximal_rate": float(0),
},
},
"sctp_init": {
"enable": False,
"red": {
"activate_rate": float(0),
"alarm_rate": float(0),
"maximal_rate": float(0),
},
},
"tcp_syn": {
"enable": False,
"red": {
"activate_rate": float(0),
"alarm_rate": float(0),
"maximal_rate": float(0),
},
"syn_cookies": {
"activate_rate": float(0),
"alarm_rate": float(0),
"maximal_rate": float(0),
},
},
"udp": {
"enable": False,
"red": {
"activate_rate": float(0),
"alarm_rate": float(0),
"maximal_rate": float(0),
},
},
},
ipv6={
"anycast_source": False,
"filter_ext_hdr": {
"dest_option_hdr": False,
"hop_by_hop_hdr": False,
"routing_hdr": False,
},
"icmpv6_too_big_small_mtu_discard": False,
"ignore_inv_pkt": {
"dest_unreach": False,
"param_problem": False,
"pkt_too_big": False,
"redirect": False,
"time_exceeded": False,
},
"ipv4_compatible_address": False,
"multicast_source": False,
"needless_fragment_hdr": False,
"options_invalid_ipv6_discard": False,
"reserved_field_set_discard": False,
"routing_header0": False,
"routing_header1": False,
"routing_header253": False,
"routing_header254": False,
"routing_header255": False,
"routing_header3": False,
"routing_header4252": False,
},
l2_sec_group_tag_protection={
"tags": [{
"name": "string",
"enable": False,
"tag": "string",
}],
},
description="string",
name="string",
net_inspection={
"predefined_rule": {
"enable": False,
"threat_id": float(0),
},
"rules": [{
"name": "string",
"log_interval": float(0),
"cves": ["string"],
"enable": False,
"exempt_ips": [{
"name": "string",
}],
"icmp_unreachable": False,
"action": "string",
"log_severity": "string",
"bugtraqs": ["string"],
"packet_capture": "string",
"references": ["string"],
"signature": {
"comment": "string",
"or_conditions": [{
"name": "string",
"and_conditions": [{
"name": "string",
"operator": {
"equal_to": {
"context": {
"icmp6_checksum": {
"mask": "string",
"value": float(0),
},
"icmp6_code": {
"mask": "string",
"value": float(0),
},
"icmp6_type": {
"mask": "string",
"value": float(0),
},
"icmp6_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
"icmp_checksum": {
"mask": "string",
"value": float(0),
},
"icmp_code": {
"mask": "string",
"value": float(0),
},
"icmp_id": {
"mask": "string",
"value": float(0),
},
"icmp_sequence": {
"mask": "string",
"value": float(0),
},
"icmp_type": {
"mask": "string",
"value": float(0),
},
"icmp_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip6_destination_address": {
"mask": "string",
"prefix": float(0),
"value": "string",
},
"ip6_flow_label": {
"mask": "string",
"value": float(0),
},
"ip6_hop_limit": {
"mask": "string",
"value": float(0),
},
"ip6_next_header": {
"mask": "string",
"value": float(0),
},
"ip6_payload_length": {
"mask": "string",
"value": float(0),
},
"ip6_source_address": {
"mask": "string",
"prefix": float(0),
"value": "string",
},
"ip6_traffic_class": {
"mask": "string",
"value": float(0),
},
"ip6_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip6_version": {
"mask": "string",
"value": float(0),
},
"ip_destination_address": {
"mask": "string",
"prefix": float(0),
"value": "string",
},
"ip_flag_df": {
"value": float(0),
},
"ip_flag_mf": {
"value": float(0),
},
"ip_flag_reserved": {
"value": float(0),
},
"ip_fragment_offset": {
"mask": "string",
"value": float(0),
},
"ip_header_checksum": {
"mask": "string",
"value": float(0),
},
"ip_header_length": {
"mask": "string",
"value": float(0),
},
"ip_id": {
"mask": "string",
"value": float(0),
},
"ip_option_length": {
"mask": "string",
"value": float(0),
},
"ip_option_number": {
"mask": "string",
"value": float(0),
},
"ip_option_type": {
"mask": "string",
"value": float(0),
},
"ip_option_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip_protocol": {
"mask": "string",
"value": float(0),
},
"ip_source_address": {
"mask": "string",
"prefix": float(0),
"value": "string",
},
"ip_tos": {
"mask": "string",
"value": float(0),
},
"ip_total_length": {
"mask": "string",
"value": float(0),
},
"ip_ttl": {
"mask": "string",
"value": float(0),
},
"ip_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip_version": {
"mask": "string",
"value": float(0),
},
"tcp_acknowledge_number": {
"mask": "string",
"value": float(0),
},
"tcp_checksum": {
"mask": "string",
"value": float(0),
},
"tcp_data_offset": {
"mask": "string",
"value": float(0),
},
"tcp_destination_port": {
"mask": "string",
"value": float(0),
},
"tcp_flag_ack": {
"value": float(0),
},
"tcp_flag_cwr": {
"value": float(0),
},
"tcp_flag_ece": {
"value": float(0),
},
"tcp_flag_fin": {
"value": float(0),
},
"tcp_flag_psh": {
"value": float(0),
},
"tcp_flag_rst": {
"value": float(0),
},
"tcp_flag_syn": {
"value": float(0),
},
"tcp_flag_urg": {
"value": float(0),
},
"tcp_option_kind": {
"mask": "string",
"value": float(0),
},
"tcp_option_length": {
"mask": "string",
"value": float(0),
},
"tcp_option_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
"tcp_reserved": {
"mask": "string",
"value": float(0),
},
"tcp_sequence_number": {
"mask": "string",
"value": float(0),
},
"tcp_source_port": {
"mask": "string",
"value": float(0),
},
"tcp_urgent_pointer": {
"mask": "string",
"value": float(0),
},
"tcp_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
"tcp_window_size": {
"mask": "string",
"value": float(0),
},
"udp_checksum": {
"mask": "string",
"value": float(0),
},
"udp_destination_port": {
"mask": "string",
"value": float(0),
},
"udp_length": {
"mask": "string",
"value": float(0),
},
"udp_source_port": {
"mask": "string",
"value": float(0),
},
"udp_user_defined": {
"mask": "string",
"offset": float(0),
"value": float(0),
"width": float(0),
},
},
"negate": False,
},
"event": {
"context": {
"ip6_same_address": {},
"ip_option_addext": {},
"ip_option_cipso": {},
"ip_option_dps": {},
"ip_option_eip": {},
"ip_option_encode": {},
"ip_option_eool": {},
"ip_option_esec": {},
"ip_option_finn": {},
"ip_option_imitd": {},
"ip_option_lsr": {},
"ip_option_mtup": {},
"ip_option_mtur": {},
"ip_option_nop": {},
"ip_option_qs": {},
"ip_option_rr": {},
"ip_option_rtralt": {},
"ip_option_sdb": {},
"ip_option_sec": {},
"ip_option_sid": {},
"ip_option_ssr": {},
"ip_option_tr": {},
"ip_option_ts": {},
"ip_option_ump": {},
"ip_option_visa": {},
"ip_option_zsu": {},
"ip_same_address": {},
"tcp_option_alt_dat": {},
"tcp_option_alt_rst": {},
"tcp_option_bubba": {},
"tcp_option_cc": {},
"tcp_option_cc_echo": {},
"tcp_option_cc_new": {},
"tcp_option_compress": {},
"tcp_option_corrupt": {},
"tcp_option_echo": {},
"tcp_option_echo_reply": {},
"tcp_option_eno": {},
"tcp_option_eool": {},
"tcp_option_fast": {},
"tcp_option_md5": {},
"tcp_option_mptcp": {},
"tcp_option_mss": {},
"tcp_option_nop": {},
"tcp_option_partial_permit": {},
"tcp_option_partial_profile": {},
"tcp_option_qs_res": {},
"tcp_option_rec_bd": {},
"tcp_option_sack": {},
"tcp_option_sack_permit": {},
"tcp_option_scps": {},
"tcp_option_skeeter": {},
"tcp_option_snak": {},
"tcp_option_snap": {},
"tcp_option_tcp_ao": {},
"tcp_option_trailer": {},
"tcp_option_ts": {},
"tcp_option_user_timeout": {},
"tcp_option_ws": {},
},
},
"greater_than": {
"context": {
"icmp6_checksum": {
"value": float(0),
},
"icmp6_code": {
"value": float(0),
},
"icmp6_type": {
"value": float(0),
},
"icmp6_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"icmp_checksum": {
"value": float(0),
},
"icmp_code": {
"value": float(0),
},
"icmp_id": {
"value": float(0),
},
"icmp_sequence": {
"value": float(0),
},
"icmp_type": {
"value": float(0),
},
"icmp_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip6_flow_label": {
"value": float(0),
},
"ip6_hop_limit": {
"value": float(0),
},
"ip6_next_header": {
"value": float(0),
},
"ip6_payload_length": {
"value": float(0),
},
"ip6_traffic_class": {
"value": float(0),
},
"ip6_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip6_version": {
"value": float(0),
},
"ip_fragment_offset": {
"value": float(0),
},
"ip_header_checksum": {
"value": float(0),
},
"ip_header_length": {
"value": float(0),
},
"ip_id": {
"value": float(0),
},
"ip_option_length": {
"value": float(0),
},
"ip_option_number": {
"value": float(0),
},
"ip_option_type": {
"value": float(0),
},
"ip_option_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip_protocol": {
"value": float(0),
},
"ip_tos": {
"value": float(0),
},
"ip_total_length": {
"value": float(0),
},
"ip_ttl": {
"value": float(0),
},
"ip_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip_version": {
"value": float(0),
},
"tcp_acknowledge_number": {
"value": float(0),
},
"tcp_checksum": {
"value": float(0),
},
"tcp_data_offset": {
"value": float(0),
},
"tcp_destination_port": {
"value": float(0),
},
"tcp_option_kind": {
"value": float(0),
},
"tcp_option_length": {
"value": float(0),
},
"tcp_option_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"tcp_reserved": {
"value": float(0),
},
"tcp_sequence_number": {
"value": float(0),
},
"tcp_source_port": {
"value": float(0),
},
"tcp_urgent_pointer": {
"value": float(0),
},
"tcp_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"tcp_window_size": {
"value": float(0),
},
"udp_checksum": {
"value": float(0),
},
"udp_destination_port": {
"value": float(0),
},
"udp_length": {
"value": float(0),
},
"udp_source_port": {
"value": float(0),
},
"udp_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
},
},
"less_than": {
"context": {
"icmp6_checksum": {
"value": float(0),
},
"icmp6_code": {
"value": float(0),
},
"icmp6_type": {
"value": float(0),
},
"icmp6_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"icmp_checksum": {
"value": float(0),
},
"icmp_code": {
"value": float(0),
},
"icmp_id": {
"value": float(0),
},
"icmp_sequence": {
"value": float(0),
},
"icmp_type": {
"value": float(0),
},
"icmp_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip6_flow_label": {
"value": float(0),
},
"ip6_hop_limit": {
"value": float(0),
},
"ip6_next_header": {
"value": float(0),
},
"ip6_payload_length": {
"value": float(0),
},
"ip6_traffic_class": {
"value": float(0),
},
"ip6_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip6_version": {
"value": float(0),
},
"ip_fragment_offset": {
"value": float(0),
},
"ip_header_checksum": {
"value": float(0),
},
"ip_header_length": {
"value": float(0),
},
"ip_id": {
"value": float(0),
},
"ip_option_length": {
"value": float(0),
},
"ip_option_number": {
"value": float(0),
},
"ip_option_type": {
"value": float(0),
},
"ip_option_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip_protocol": {
"value": float(0),
},
"ip_tos": {
"value": float(0),
},
"ip_total_length": {
"value": float(0),
},
"ip_ttl": {
"value": float(0),
},
"ip_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"ip_version": {
"value": float(0),
},
"tcp_acknowledge_number": {
"value": float(0),
},
"tcp_checksum": {
"value": float(0),
},
"tcp_data_offset": {
"value": float(0),
},
"tcp_destination_port": {
"value": float(0),
},
"tcp_option_kind": {
"value": float(0),
},
"tcp_option_length": {
"value": float(0),
},
"tcp_option_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"tcp_reserved": {
"value": float(0),
},
"tcp_sequence_number": {
"value": float(0),
},
"tcp_source_port": {
"value": float(0),
},
"tcp_urgent_pointer": {
"value": float(0),
},
"tcp_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
"tcp_window_size": {
"value": float(0),
},
"udp_checksum": {
"value": float(0),
},
"udp_destination_port": {
"value": float(0),
},
"udp_length": {
"value": float(0),
},
"udp_source_port": {
"value": float(0),
},
"udp_user_defined": {
"offset": float(0),
"value": float(0),
"width": float(0),
},
},
},
"range": {
"context": {
"icmp6_checksum": {
"high": float(0),
"low": float(0),
},
"icmp6_code": {
"high": float(0),
"low": float(0),
},
"icmp6_type": {
"high": float(0),
"low": float(0),
},
"icmp6_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
"icmp_checksum": {
"high": float(0),
"low": float(0),
},
"icmp_code": {
"high": float(0),
"low": float(0),
},
"icmp_id": {
"high": float(0),
"low": float(0),
},
"icmp_sequence": {
"high": float(0),
"low": float(0),
},
"icmp_type": {
"high": float(0),
"low": float(0),
},
"icmp_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
"ip6_flow_label": {
"high": float(0),
"low": float(0),
},
"ip6_hop_limit": {
"high": float(0),
"low": float(0),
},
"ip6_next_header": {
"high": float(0),
"low": float(0),
},
"ip6_payload_length": {
"high": float(0),
"low": float(0),
},
"ip6_traffic_class": {
"high": float(0),
"low": float(0),
},
"ip6_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
"ip6_version": {
"high": float(0),
"low": float(0),
},
"ip_fragment_offset": {
"high": float(0),
"low": float(0),
},
"ip_header_checksum": {
"high": float(0),
"low": float(0),
},
"ip_header_length": {
"high": float(0),
"low": float(0),
},
"ip_id": {
"high": float(0),
"low": float(0),
},
"ip_option_length": {
"high": float(0),
"low": float(0),
},
"ip_option_number": {
"high": float(0),
"low": float(0),
},
"ip_option_type": {
"high": float(0),
"low": float(0),
},
"ip_option_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
"ip_protocol": {
"high": float(0),
"low": float(0),
},
"ip_tos": {
"high": float(0),
"low": float(0),
},
"ip_total_length": {
"high": float(0),
"low": float(0),
},
"ip_ttl": {
"high": float(0),
"low": float(0),
},
"ip_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
"ip_version": {
"high": float(0),
"low": float(0),
},
"tcp_acknowledge_number": {
"high": float(0),
"low": float(0),
},
"tcp_checksum": {
"high": float(0),
"low": float(0),
},
"tcp_data_offset": {
"high": float(0),
"low": float(0),
},
"tcp_destination_port": {
"high": float(0),
"low": float(0),
},
"tcp_option_kind": {
"high": float(0),
"low": float(0),
},
"tcp_option_length": {
"high": float(0),
"low": float(0),
},
"tcp_option_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
"tcp_reserved": {
"high": float(0),
"low": float(0),
},
"tcp_sequence_number": {
"high": float(0),
"low": float(0),
},
"tcp_source_port": {
"high": float(0),
"low": float(0),
},
"tcp_urgent_pointer": {
"high": float(0),
"low": float(0),
},
"tcp_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
"tcp_window_size": {
"high": float(0),
"low": float(0),
},
"udp_checksum": {
"high": float(0),
"low": float(0),
},
"udp_destination_port": {
"high": float(0),
"low": float(0),
},
"udp_length": {
"high": float(0),
"low": float(0),
},
"udp_source_port": {
"high": float(0),
"low": float(0),
},
"udp_user_defined": {
"high": float(0),
"low": float(0),
"offset": float(0),
"width": float(0),
},
},
},
},
}],
}],
},
"threat_id": float(0),
"vendors": ["string"],
}],
},
non_ip_protocol={
"list_type": "string",
"protocols": [{
"name": "string",
"enable": False,
"ether_type": "string",
}],
},
remove_tcp_timestamp=False,
scan_white_lists=[{
"name": "string",
"ipv4": "string",
"ipv6": "string",
}],
scans=[{
"name": "string",
"action": {
"alert": {},
"allow": {},
"block": {},
"block_ip": {
"duration": float(0),
"track_by": "string",
},
},
"interval": float(0),
"threshold": float(0),
}],
strict_ip_check=False,
strip_mptcp_option="string",
strip_tcp_fast_open_and_data=False,
suppress_icmp_needfrag=False,
suppress_icmp_timeexceeded=False,
tcp_reject_non_syn="string")
const zoneProtectionProfileResource = new panos.ZoneProtectionProfile("zoneProtectionProfileResource", {
location: {
ngfw: {
ngfwDevice: "string",
},
template: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
ngfwDevice: "string",
panoramaDevice: "string",
},
},
discardTimestamp: false,
asymmetricPath: "string",
discardIcmpFrag: false,
discardIcmpLargePacket: false,
discardIcmpPingZeroId: false,
discardIpFrag: false,
discardIpSpoof: false,
discardLooseSourceRouting: false,
discardMalformedOption: false,
discardOverlappingTcpSegmentMismatch: false,
discardRecordRoute: false,
discardSecurity: false,
discardStreamId: false,
discardStrictSourceRouting: false,
discardTcpSplitHandshake: false,
discardTcpSynWithData: false,
discardIcmpError: false,
discardTcpSynackWithData: false,
discardUnknownOption: false,
flood: {
icmp: {
enable: false,
red: {
activateRate: 0,
alarmRate: 0,
maximalRate: 0,
},
},
icmpv6: {
enable: false,
red: {
activateRate: 0,
alarmRate: 0,
maximalRate: 0,
},
},
otherIp: {
enable: false,
red: {
activateRate: 0,
alarmRate: 0,
maximalRate: 0,
},
},
sctpInit: {
enable: false,
red: {
activateRate: 0,
alarmRate: 0,
maximalRate: 0,
},
},
tcpSyn: {
enable: false,
red: {
activateRate: 0,
alarmRate: 0,
maximalRate: 0,
},
synCookies: {
activateRate: 0,
alarmRate: 0,
maximalRate: 0,
},
},
udp: {
enable: false,
red: {
activateRate: 0,
alarmRate: 0,
maximalRate: 0,
},
},
},
ipv6: {
anycastSource: false,
filterExtHdr: {
destOptionHdr: false,
hopByHopHdr: false,
routingHdr: false,
},
icmpv6TooBigSmallMtuDiscard: false,
ignoreInvPkt: {
destUnreach: false,
paramProblem: false,
pktTooBig: false,
redirect: false,
timeExceeded: false,
},
ipv4CompatibleAddress: false,
multicastSource: false,
needlessFragmentHdr: false,
optionsInvalidIpv6Discard: false,
reservedFieldSetDiscard: false,
routingHeader0: false,
routingHeader1: false,
routingHeader253: false,
routingHeader254: false,
routingHeader255: false,
routingHeader3: false,
routingHeader4252: false,
},
l2SecGroupTagProtection: {
tags: [{
name: "string",
enable: false,
tag: "string",
}],
},
description: "string",
name: "string",
netInspection: {
predefinedRule: {
enable: false,
threatId: 0,
},
rules: [{
name: "string",
logInterval: 0,
cves: ["string"],
enable: false,
exemptIps: [{
name: "string",
}],
icmpUnreachable: false,
action: "string",
logSeverity: "string",
bugtraqs: ["string"],
packetCapture: "string",
references: ["string"],
signature: {
comment: "string",
orConditions: [{
name: "string",
andConditions: [{
name: "string",
operator: {
equalTo: {
context: {
icmp6Checksum: {
mask: "string",
value: 0,
},
icmp6Code: {
mask: "string",
value: 0,
},
icmp6Type: {
mask: "string",
value: 0,
},
icmp6UserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
icmpChecksum: {
mask: "string",
value: 0,
},
icmpCode: {
mask: "string",
value: 0,
},
icmpId: {
mask: "string",
value: 0,
},
icmpSequence: {
mask: "string",
value: 0,
},
icmpType: {
mask: "string",
value: 0,
},
icmpUserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
ip6DestinationAddress: {
mask: "string",
prefix: 0,
value: "string",
},
ip6FlowLabel: {
mask: "string",
value: 0,
},
ip6HopLimit: {
mask: "string",
value: 0,
},
ip6NextHeader: {
mask: "string",
value: 0,
},
ip6PayloadLength: {
mask: "string",
value: 0,
},
ip6SourceAddress: {
mask: "string",
prefix: 0,
value: "string",
},
ip6TrafficClass: {
mask: "string",
value: 0,
},
ip6UserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
ip6Version: {
mask: "string",
value: 0,
},
ipDestinationAddress: {
mask: "string",
prefix: 0,
value: "string",
},
ipFlagDf: {
value: 0,
},
ipFlagMf: {
value: 0,
},
ipFlagReserved: {
value: 0,
},
ipFragmentOffset: {
mask: "string",
value: 0,
},
ipHeaderChecksum: {
mask: "string",
value: 0,
},
ipHeaderLength: {
mask: "string",
value: 0,
},
ipId: {
mask: "string",
value: 0,
},
ipOptionLength: {
mask: "string",
value: 0,
},
ipOptionNumber: {
mask: "string",
value: 0,
},
ipOptionType: {
mask: "string",
value: 0,
},
ipOptionUserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
ipProtocol: {
mask: "string",
value: 0,
},
ipSourceAddress: {
mask: "string",
prefix: 0,
value: "string",
},
ipTos: {
mask: "string",
value: 0,
},
ipTotalLength: {
mask: "string",
value: 0,
},
ipTtl: {
mask: "string",
value: 0,
},
ipUserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
ipVersion: {
mask: "string",
value: 0,
},
tcpAcknowledgeNumber: {
mask: "string",
value: 0,
},
tcpChecksum: {
mask: "string",
value: 0,
},
tcpDataOffset: {
mask: "string",
value: 0,
},
tcpDestinationPort: {
mask: "string",
value: 0,
},
tcpFlagAck: {
value: 0,
},
tcpFlagCwr: {
value: 0,
},
tcpFlagEce: {
value: 0,
},
tcpFlagFin: {
value: 0,
},
tcpFlagPsh: {
value: 0,
},
tcpFlagRst: {
value: 0,
},
tcpFlagSyn: {
value: 0,
},
tcpFlagUrg: {
value: 0,
},
tcpOptionKind: {
mask: "string",
value: 0,
},
tcpOptionLength: {
mask: "string",
value: 0,
},
tcpOptionUserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
tcpReserved: {
mask: "string",
value: 0,
},
tcpSequenceNumber: {
mask: "string",
value: 0,
},
tcpSourcePort: {
mask: "string",
value: 0,
},
tcpUrgentPointer: {
mask: "string",
value: 0,
},
tcpUserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
tcpWindowSize: {
mask: "string",
value: 0,
},
udpChecksum: {
mask: "string",
value: 0,
},
udpDestinationPort: {
mask: "string",
value: 0,
},
udpLength: {
mask: "string",
value: 0,
},
udpSourcePort: {
mask: "string",
value: 0,
},
udpUserDefined: {
mask: "string",
offset: 0,
value: 0,
width: 0,
},
},
negate: false,
},
event: {
context: {
ip6SameAddress: {},
ipOptionAddext: {},
ipOptionCipso: {},
ipOptionDps: {},
ipOptionEip: {},
ipOptionEncode: {},
ipOptionEool: {},
ipOptionEsec: {},
ipOptionFinn: {},
ipOptionImitd: {},
ipOptionLsr: {},
ipOptionMtup: {},
ipOptionMtur: {},
ipOptionNop: {},
ipOptionQs: {},
ipOptionRr: {},
ipOptionRtralt: {},
ipOptionSdb: {},
ipOptionSec: {},
ipOptionSid: {},
ipOptionSsr: {},
ipOptionTr: {},
ipOptionTs: {},
ipOptionUmp: {},
ipOptionVisa: {},
ipOptionZsu: {},
ipSameAddress: {},
tcpOptionAltDat: {},
tcpOptionAltRst: {},
tcpOptionBubba: {},
tcpOptionCc: {},
tcpOptionCcEcho: {},
tcpOptionCcNew: {},
tcpOptionCompress: {},
tcpOptionCorrupt: {},
tcpOptionEcho: {},
tcpOptionEchoReply: {},
tcpOptionEno: {},
tcpOptionEool: {},
tcpOptionFast: {},
tcpOptionMd5: {},
tcpOptionMptcp: {},
tcpOptionMss: {},
tcpOptionNop: {},
tcpOptionPartialPermit: {},
tcpOptionPartialProfile: {},
tcpOptionQsRes: {},
tcpOptionRecBd: {},
tcpOptionSack: {},
tcpOptionSackPermit: {},
tcpOptionScps: {},
tcpOptionSkeeter: {},
tcpOptionSnak: {},
tcpOptionSnap: {},
tcpOptionTcpAo: {},
tcpOptionTrailer: {},
tcpOptionTs: {},
tcpOptionUserTimeout: {},
tcpOptionWs: {},
},
},
greaterThan: {
context: {
icmp6Checksum: {
value: 0,
},
icmp6Code: {
value: 0,
},
icmp6Type: {
value: 0,
},
icmp6UserDefined: {
offset: 0,
value: 0,
width: 0,
},
icmpChecksum: {
value: 0,
},
icmpCode: {
value: 0,
},
icmpId: {
value: 0,
},
icmpSequence: {
value: 0,
},
icmpType: {
value: 0,
},
icmpUserDefined: {
offset: 0,
value: 0,
width: 0,
},
ip6FlowLabel: {
value: 0,
},
ip6HopLimit: {
value: 0,
},
ip6NextHeader: {
value: 0,
},
ip6PayloadLength: {
value: 0,
},
ip6TrafficClass: {
value: 0,
},
ip6UserDefined: {
offset: 0,
value: 0,
width: 0,
},
ip6Version: {
value: 0,
},
ipFragmentOffset: {
value: 0,
},
ipHeaderChecksum: {
value: 0,
},
ipHeaderLength: {
value: 0,
},
ipId: {
value: 0,
},
ipOptionLength: {
value: 0,
},
ipOptionNumber: {
value: 0,
},
ipOptionType: {
value: 0,
},
ipOptionUserDefined: {
offset: 0,
value: 0,
width: 0,
},
ipProtocol: {
value: 0,
},
ipTos: {
value: 0,
},
ipTotalLength: {
value: 0,
},
ipTtl: {
value: 0,
},
ipUserDefined: {
offset: 0,
value: 0,
width: 0,
},
ipVersion: {
value: 0,
},
tcpAcknowledgeNumber: {
value: 0,
},
tcpChecksum: {
value: 0,
},
tcpDataOffset: {
value: 0,
},
tcpDestinationPort: {
value: 0,
},
tcpOptionKind: {
value: 0,
},
tcpOptionLength: {
value: 0,
},
tcpOptionUserDefined: {
offset: 0,
value: 0,
width: 0,
},
tcpReserved: {
value: 0,
},
tcpSequenceNumber: {
value: 0,
},
tcpSourcePort: {
value: 0,
},
tcpUrgentPointer: {
value: 0,
},
tcpUserDefined: {
offset: 0,
value: 0,
width: 0,
},
tcpWindowSize: {
value: 0,
},
udpChecksum: {
value: 0,
},
udpDestinationPort: {
value: 0,
},
udpLength: {
value: 0,
},
udpSourcePort: {
value: 0,
},
udpUserDefined: {
offset: 0,
value: 0,
width: 0,
},
},
},
lessThan: {
context: {
icmp6Checksum: {
value: 0,
},
icmp6Code: {
value: 0,
},
icmp6Type: {
value: 0,
},
icmp6UserDefined: {
offset: 0,
value: 0,
width: 0,
},
icmpChecksum: {
value: 0,
},
icmpCode: {
value: 0,
},
icmpId: {
value: 0,
},
icmpSequence: {
value: 0,
},
icmpType: {
value: 0,
},
icmpUserDefined: {
offset: 0,
value: 0,
width: 0,
},
ip6FlowLabel: {
value: 0,
},
ip6HopLimit: {
value: 0,
},
ip6NextHeader: {
value: 0,
},
ip6PayloadLength: {
value: 0,
},
ip6TrafficClass: {
value: 0,
},
ip6UserDefined: {
offset: 0,
value: 0,
width: 0,
},
ip6Version: {
value: 0,
},
ipFragmentOffset: {
value: 0,
},
ipHeaderChecksum: {
value: 0,
},
ipHeaderLength: {
value: 0,
},
ipId: {
value: 0,
},
ipOptionLength: {
value: 0,
},
ipOptionNumber: {
value: 0,
},
ipOptionType: {
value: 0,
},
ipOptionUserDefined: {
offset: 0,
value: 0,
width: 0,
},
ipProtocol: {
value: 0,
},
ipTos: {
value: 0,
},
ipTotalLength: {
value: 0,
},
ipTtl: {
value: 0,
},
ipUserDefined: {
offset: 0,
value: 0,
width: 0,
},
ipVersion: {
value: 0,
},
tcpAcknowledgeNumber: {
value: 0,
},
tcpChecksum: {
value: 0,
},
tcpDataOffset: {
value: 0,
},
tcpDestinationPort: {
value: 0,
},
tcpOptionKind: {
value: 0,
},
tcpOptionLength: {
value: 0,
},
tcpOptionUserDefined: {
offset: 0,
value: 0,
width: 0,
},
tcpReserved: {
value: 0,
},
tcpSequenceNumber: {
value: 0,
},
tcpSourcePort: {
value: 0,
},
tcpUrgentPointer: {
value: 0,
},
tcpUserDefined: {
offset: 0,
value: 0,
width: 0,
},
tcpWindowSize: {
value: 0,
},
udpChecksum: {
value: 0,
},
udpDestinationPort: {
value: 0,
},
udpLength: {
value: 0,
},
udpSourcePort: {
value: 0,
},
udpUserDefined: {
offset: 0,
value: 0,
width: 0,
},
},
},
range: {
context: {
icmp6Checksum: {
high: 0,
low: 0,
},
icmp6Code: {
high: 0,
low: 0,
},
icmp6Type: {
high: 0,
low: 0,
},
icmp6UserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
icmpChecksum: {
high: 0,
low: 0,
},
icmpCode: {
high: 0,
low: 0,
},
icmpId: {
high: 0,
low: 0,
},
icmpSequence: {
high: 0,
low: 0,
},
icmpType: {
high: 0,
low: 0,
},
icmpUserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
ip6FlowLabel: {
high: 0,
low: 0,
},
ip6HopLimit: {
high: 0,
low: 0,
},
ip6NextHeader: {
high: 0,
low: 0,
},
ip6PayloadLength: {
high: 0,
low: 0,
},
ip6TrafficClass: {
high: 0,
low: 0,
},
ip6UserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
ip6Version: {
high: 0,
low: 0,
},
ipFragmentOffset: {
high: 0,
low: 0,
},
ipHeaderChecksum: {
high: 0,
low: 0,
},
ipHeaderLength: {
high: 0,
low: 0,
},
ipId: {
high: 0,
low: 0,
},
ipOptionLength: {
high: 0,
low: 0,
},
ipOptionNumber: {
high: 0,
low: 0,
},
ipOptionType: {
high: 0,
low: 0,
},
ipOptionUserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
ipProtocol: {
high: 0,
low: 0,
},
ipTos: {
high: 0,
low: 0,
},
ipTotalLength: {
high: 0,
low: 0,
},
ipTtl: {
high: 0,
low: 0,
},
ipUserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
ipVersion: {
high: 0,
low: 0,
},
tcpAcknowledgeNumber: {
high: 0,
low: 0,
},
tcpChecksum: {
high: 0,
low: 0,
},
tcpDataOffset: {
high: 0,
low: 0,
},
tcpDestinationPort: {
high: 0,
low: 0,
},
tcpOptionKind: {
high: 0,
low: 0,
},
tcpOptionLength: {
high: 0,
low: 0,
},
tcpOptionUserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
tcpReserved: {
high: 0,
low: 0,
},
tcpSequenceNumber: {
high: 0,
low: 0,
},
tcpSourcePort: {
high: 0,
low: 0,
},
tcpUrgentPointer: {
high: 0,
low: 0,
},
tcpUserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
tcpWindowSize: {
high: 0,
low: 0,
},
udpChecksum: {
high: 0,
low: 0,
},
udpDestinationPort: {
high: 0,
low: 0,
},
udpLength: {
high: 0,
low: 0,
},
udpSourcePort: {
high: 0,
low: 0,
},
udpUserDefined: {
high: 0,
low: 0,
offset: 0,
width: 0,
},
},
},
},
}],
}],
},
threatId: 0,
vendors: ["string"],
}],
},
nonIpProtocol: {
listType: "string",
protocols: [{
name: "string",
enable: false,
etherType: "string",
}],
},
removeTcpTimestamp: false,
scanWhiteLists: [{
name: "string",
ipv4: "string",
ipv6: "string",
}],
scans: [{
name: "string",
action: {
alert: {},
allow: {},
block: {},
blockIp: {
duration: 0,
trackBy: "string",
},
},
interval: 0,
threshold: 0,
}],
strictIpCheck: false,
stripMptcpOption: "string",
stripTcpFastOpenAndData: false,
suppressIcmpNeedfrag: false,
suppressIcmpTimeexceeded: false,
tcpRejectNonSyn: "string",
});
type: panos:ZoneProtectionProfile
properties:
asymmetricPath: string
description: string
discardIcmpError: false
discardIcmpFrag: false
discardIcmpLargePacket: false
discardIcmpPingZeroId: false
discardIpFrag: false
discardIpSpoof: false
discardLooseSourceRouting: false
discardMalformedOption: false
discardOverlappingTcpSegmentMismatch: false
discardRecordRoute: false
discardSecurity: false
discardStreamId: false
discardStrictSourceRouting: false
discardTcpSplitHandshake: false
discardTcpSynWithData: false
discardTcpSynackWithData: false
discardTimestamp: false
discardUnknownOption: false
flood:
icmp:
enable: false
red:
activateRate: 0
alarmRate: 0
maximalRate: 0
icmpv6:
enable: false
red:
activateRate: 0
alarmRate: 0
maximalRate: 0
otherIp:
enable: false
red:
activateRate: 0
alarmRate: 0
maximalRate: 0
sctpInit:
enable: false
red:
activateRate: 0
alarmRate: 0
maximalRate: 0
tcpSyn:
enable: false
red:
activateRate: 0
alarmRate: 0
maximalRate: 0
synCookies:
activateRate: 0
alarmRate: 0
maximalRate: 0
udp:
enable: false
red:
activateRate: 0
alarmRate: 0
maximalRate: 0
ipv6:
anycastSource: false
filterExtHdr:
destOptionHdr: false
hopByHopHdr: false
routingHdr: false
icmpv6TooBigSmallMtuDiscard: false
ignoreInvPkt:
destUnreach: false
paramProblem: false
pktTooBig: false
redirect: false
timeExceeded: false
ipv4CompatibleAddress: false
multicastSource: false
needlessFragmentHdr: false
optionsInvalidIpv6Discard: false
reservedFieldSetDiscard: false
routingHeader0: false
routingHeader1: false
routingHeader3: false
routingHeader253: false
routingHeader254: false
routingHeader255: false
routingHeader4252: false
l2SecGroupTagProtection:
tags:
- enable: false
name: string
tag: string
location:
ngfw:
ngfwDevice: string
template:
name: string
ngfwDevice: string
panoramaDevice: string
templateStack:
name: string
ngfwDevice: string
panoramaDevice: string
name: string
netInspection:
predefinedRule:
enable: false
threatId: 0
rules:
- action: string
bugtraqs:
- string
cves:
- string
enable: false
exemptIps:
- name: string
icmpUnreachable: false
logInterval: 0
logSeverity: string
name: string
packetCapture: string
references:
- string
signature:
comment: string
orConditions:
- andConditions:
- name: string
operator:
equalTo:
context:
icmp6Checksum:
mask: string
value: 0
icmp6Code:
mask: string
value: 0
icmp6Type:
mask: string
value: 0
icmp6UserDefined:
mask: string
offset: 0
value: 0
width: 0
icmpChecksum:
mask: string
value: 0
icmpCode:
mask: string
value: 0
icmpId:
mask: string
value: 0
icmpSequence:
mask: string
value: 0
icmpType:
mask: string
value: 0
icmpUserDefined:
mask: string
offset: 0
value: 0
width: 0
ip6DestinationAddress:
mask: string
prefix: 0
value: string
ip6FlowLabel:
mask: string
value: 0
ip6HopLimit:
mask: string
value: 0
ip6NextHeader:
mask: string
value: 0
ip6PayloadLength:
mask: string
value: 0
ip6SourceAddress:
mask: string
prefix: 0
value: string
ip6TrafficClass:
mask: string
value: 0
ip6UserDefined:
mask: string
offset: 0
value: 0
width: 0
ip6Version:
mask: string
value: 0
ipDestinationAddress:
mask: string
prefix: 0
value: string
ipFlagDf:
value: 0
ipFlagMf:
value: 0
ipFlagReserved:
value: 0
ipFragmentOffset:
mask: string
value: 0
ipHeaderChecksum:
mask: string
value: 0
ipHeaderLength:
mask: string
value: 0
ipId:
mask: string
value: 0
ipOptionLength:
mask: string
value: 0
ipOptionNumber:
mask: string
value: 0
ipOptionType:
mask: string
value: 0
ipOptionUserDefined:
mask: string
offset: 0
value: 0
width: 0
ipProtocol:
mask: string
value: 0
ipSourceAddress:
mask: string
prefix: 0
value: string
ipTos:
mask: string
value: 0
ipTotalLength:
mask: string
value: 0
ipTtl:
mask: string
value: 0
ipUserDefined:
mask: string
offset: 0
value: 0
width: 0
ipVersion:
mask: string
value: 0
tcpAcknowledgeNumber:
mask: string
value: 0
tcpChecksum:
mask: string
value: 0
tcpDataOffset:
mask: string
value: 0
tcpDestinationPort:
mask: string
value: 0
tcpFlagAck:
value: 0
tcpFlagCwr:
value: 0
tcpFlagEce:
value: 0
tcpFlagFin:
value: 0
tcpFlagPsh:
value: 0
tcpFlagRst:
value: 0
tcpFlagSyn:
value: 0
tcpFlagUrg:
value: 0
tcpOptionKind:
mask: string
value: 0
tcpOptionLength:
mask: string
value: 0
tcpOptionUserDefined:
mask: string
offset: 0
value: 0
width: 0
tcpReserved:
mask: string
value: 0
tcpSequenceNumber:
mask: string
value: 0
tcpSourcePort:
mask: string
value: 0
tcpUrgentPointer:
mask: string
value: 0
tcpUserDefined:
mask: string
offset: 0
value: 0
width: 0
tcpWindowSize:
mask: string
value: 0
udpChecksum:
mask: string
value: 0
udpDestinationPort:
mask: string
value: 0
udpLength:
mask: string
value: 0
udpSourcePort:
mask: string
value: 0
udpUserDefined:
mask: string
offset: 0
value: 0
width: 0
negate: false
event:
context:
ip6SameAddress: {}
ipOptionAddext: {}
ipOptionCipso: {}
ipOptionDps: {}
ipOptionEip: {}
ipOptionEncode: {}
ipOptionEool: {}
ipOptionEsec: {}
ipOptionFinn: {}
ipOptionImitd: {}
ipOptionLsr: {}
ipOptionMtup: {}
ipOptionMtur: {}
ipOptionNop: {}
ipOptionQs: {}
ipOptionRr: {}
ipOptionRtralt: {}
ipOptionSdb: {}
ipOptionSec: {}
ipOptionSid: {}
ipOptionSsr: {}
ipOptionTr: {}
ipOptionTs: {}
ipOptionUmp: {}
ipOptionVisa: {}
ipOptionZsu: {}
ipSameAddress: {}
tcpOptionAltDat: {}
tcpOptionAltRst: {}
tcpOptionBubba: {}
tcpOptionCc: {}
tcpOptionCcEcho: {}
tcpOptionCcNew: {}
tcpOptionCompress: {}
tcpOptionCorrupt: {}
tcpOptionEcho: {}
tcpOptionEchoReply: {}
tcpOptionEno: {}
tcpOptionEool: {}
tcpOptionFast: {}
tcpOptionMd5: {}
tcpOptionMptcp: {}
tcpOptionMss: {}
tcpOptionNop: {}
tcpOptionPartialPermit: {}
tcpOptionPartialProfile: {}
tcpOptionQsRes: {}
tcpOptionRecBd: {}
tcpOptionSack: {}
tcpOptionSackPermit: {}
tcpOptionScps: {}
tcpOptionSkeeter: {}
tcpOptionSnak: {}
tcpOptionSnap: {}
tcpOptionTcpAo: {}
tcpOptionTrailer: {}
tcpOptionTs: {}
tcpOptionUserTimeout: {}
tcpOptionWs: {}
greaterThan:
context:
icmp6Checksum:
value: 0
icmp6Code:
value: 0
icmp6Type:
value: 0
icmp6UserDefined:
offset: 0
value: 0
width: 0
icmpChecksum:
value: 0
icmpCode:
value: 0
icmpId:
value: 0
icmpSequence:
value: 0
icmpType:
value: 0
icmpUserDefined:
offset: 0
value: 0
width: 0
ip6FlowLabel:
value: 0
ip6HopLimit:
value: 0
ip6NextHeader:
value: 0
ip6PayloadLength:
value: 0
ip6TrafficClass:
value: 0
ip6UserDefined:
offset: 0
value: 0
width: 0
ip6Version:
value: 0
ipFragmentOffset:
value: 0
ipHeaderChecksum:
value: 0
ipHeaderLength:
value: 0
ipId:
value: 0
ipOptionLength:
value: 0
ipOptionNumber:
value: 0
ipOptionType:
value: 0
ipOptionUserDefined:
offset: 0
value: 0
width: 0
ipProtocol:
value: 0
ipTos:
value: 0
ipTotalLength:
value: 0
ipTtl:
value: 0
ipUserDefined:
offset: 0
value: 0
width: 0
ipVersion:
value: 0
tcpAcknowledgeNumber:
value: 0
tcpChecksum:
value: 0
tcpDataOffset:
value: 0
tcpDestinationPort:
value: 0
tcpOptionKind:
value: 0
tcpOptionLength:
value: 0
tcpOptionUserDefined:
offset: 0
value: 0
width: 0
tcpReserved:
value: 0
tcpSequenceNumber:
value: 0
tcpSourcePort:
value: 0
tcpUrgentPointer:
value: 0
tcpUserDefined:
offset: 0
value: 0
width: 0
tcpWindowSize:
value: 0
udpChecksum:
value: 0
udpDestinationPort:
value: 0
udpLength:
value: 0
udpSourcePort:
value: 0
udpUserDefined:
offset: 0
value: 0
width: 0
lessThan:
context:
icmp6Checksum:
value: 0
icmp6Code:
value: 0
icmp6Type:
value: 0
icmp6UserDefined:
offset: 0
value: 0
width: 0
icmpChecksum:
value: 0
icmpCode:
value: 0
icmpId:
value: 0
icmpSequence:
value: 0
icmpType:
value: 0
icmpUserDefined:
offset: 0
value: 0
width: 0
ip6FlowLabel:
value: 0
ip6HopLimit:
value: 0
ip6NextHeader:
value: 0
ip6PayloadLength:
value: 0
ip6TrafficClass:
value: 0
ip6UserDefined:
offset: 0
value: 0
width: 0
ip6Version:
value: 0
ipFragmentOffset:
value: 0
ipHeaderChecksum:
value: 0
ipHeaderLength:
value: 0
ipId:
value: 0
ipOptionLength:
value: 0
ipOptionNumber:
value: 0
ipOptionType:
value: 0
ipOptionUserDefined:
offset: 0
value: 0
width: 0
ipProtocol:
value: 0
ipTos:
value: 0
ipTotalLength:
value: 0
ipTtl:
value: 0
ipUserDefined:
offset: 0
value: 0
width: 0
ipVersion:
value: 0
tcpAcknowledgeNumber:
value: 0
tcpChecksum:
value: 0
tcpDataOffset:
value: 0
tcpDestinationPort:
value: 0
tcpOptionKind:
value: 0
tcpOptionLength:
value: 0
tcpOptionUserDefined:
offset: 0
value: 0
width: 0
tcpReserved:
value: 0
tcpSequenceNumber:
value: 0
tcpSourcePort:
value: 0
tcpUrgentPointer:
value: 0
tcpUserDefined:
offset: 0
value: 0
width: 0
tcpWindowSize:
value: 0
udpChecksum:
value: 0
udpDestinationPort:
value: 0
udpLength:
value: 0
udpSourcePort:
value: 0
udpUserDefined:
offset: 0
value: 0
width: 0
range:
context:
icmp6Checksum:
high: 0
low: 0
icmp6Code:
high: 0
low: 0
icmp6Type:
high: 0
low: 0
icmp6UserDefined:
high: 0
low: 0
offset: 0
width: 0
icmpChecksum:
high: 0
low: 0
icmpCode:
high: 0
low: 0
icmpId:
high: 0
low: 0
icmpSequence:
high: 0
low: 0
icmpType:
high: 0
low: 0
icmpUserDefined:
high: 0
low: 0
offset: 0
width: 0
ip6FlowLabel:
high: 0
low: 0
ip6HopLimit:
high: 0
low: 0
ip6NextHeader:
high: 0
low: 0
ip6PayloadLength:
high: 0
low: 0
ip6TrafficClass:
high: 0
low: 0
ip6UserDefined:
high: 0
low: 0
offset: 0
width: 0
ip6Version:
high: 0
low: 0
ipFragmentOffset:
high: 0
low: 0
ipHeaderChecksum:
high: 0
low: 0
ipHeaderLength:
high: 0
low: 0
ipId:
high: 0
low: 0
ipOptionLength:
high: 0
low: 0
ipOptionNumber:
high: 0
low: 0
ipOptionType:
high: 0
low: 0
ipOptionUserDefined:
high: 0
low: 0
offset: 0
width: 0
ipProtocol:
high: 0
low: 0
ipTos:
high: 0
low: 0
ipTotalLength:
high: 0
low: 0
ipTtl:
high: 0
low: 0
ipUserDefined:
high: 0
low: 0
offset: 0
width: 0
ipVersion:
high: 0
low: 0
tcpAcknowledgeNumber:
high: 0
low: 0
tcpChecksum:
high: 0
low: 0
tcpDataOffset:
high: 0
low: 0
tcpDestinationPort:
high: 0
low: 0
tcpOptionKind:
high: 0
low: 0
tcpOptionLength:
high: 0
low: 0
tcpOptionUserDefined:
high: 0
low: 0
offset: 0
width: 0
tcpReserved:
high: 0
low: 0
tcpSequenceNumber:
high: 0
low: 0
tcpSourcePort:
high: 0
low: 0
tcpUrgentPointer:
high: 0
low: 0
tcpUserDefined:
high: 0
low: 0
offset: 0
width: 0
tcpWindowSize:
high: 0
low: 0
udpChecksum:
high: 0
low: 0
udpDestinationPort:
high: 0
low: 0
udpLength:
high: 0
low: 0
udpSourcePort:
high: 0
low: 0
udpUserDefined:
high: 0
low: 0
offset: 0
width: 0
name: string
threatId: 0
vendors:
- string
nonIpProtocol:
listType: string
protocols:
- enable: false
etherType: string
name: string
removeTcpTimestamp: false
scanWhiteLists:
- ipv4: string
ipv6: string
name: string
scans:
- action:
alert: {}
allow: {}
block: {}
blockIp:
duration: 0
trackBy: string
interval: 0
name: string
threshold: 0
strictIpCheck: false
stripMptcpOption: string
stripTcpFastOpenAndData: false
suppressIcmpNeedfrag: false
suppressIcmpTimeexceeded: false
tcpRejectNonSyn: string
ZoneProtectionProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ZoneProtectionProfile resource accepts the following input properties:
- Location
Zone
Protection Profile Location - The location of this object.
- Asymmetric
Path string - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- Description string
- Discard
Icmp boolError - Discard ICMP embedded with error message
- Discard
Icmp boolFrag - Discard ICMP fragment
- Discard
Icmp boolLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- Discard
Icmp boolPing Zero Id - Discard ICMP Ping with zero ID
- Discard
Ip boolFrag - Discard IP fragment
- Discard
Ip boolSpoof - Discard spoofed IP packet
- Discard
Loose boolSource Routing - Discard packets with loose source routing IP option
- Discard
Malformed boolOption - Discard packets with malformed IP option
- Discard
Overlapping boolTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- Discard
Record boolRoute - Discard packets with Record Route IP option
- Discard
Security bool - Discard packets with Security IP option
- Discard
Stream boolId - Discard packets with Stream ID IP option
- Discard
Strict boolSource Routing - Discard packets with strict source routing IP option
- Discard
Tcp boolSplit Handshake - Discard tcp split handshake packet
- Discard
Tcp boolSyn With Data - Discard tcp syn packet with data payload
- Discard
Tcp boolSynack With Data - Discard tcp syn ack packet with data payload
- Discard
Timestamp bool - Discard packets with Timestmp IP option
- Discard
Unknown boolOption - Discard packets with unknown IP option
- Flood
Zone
Protection Profile Flood - Ipv6
Zone
Protection Profile Ipv6 - L2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection - Name string
- Net
Inspection ZoneProtection Profile Net Inspection - Non
Ip ZoneProtocol Protection Profile Non Ip Protocol - Remove
Tcp boolTimestamp - Remove TCP Timestamp
- Scan
White List<ZoneLists Protection Profile Scan White List> - Scans
List<Zone
Protection Profile Scan> - Strict
Ip boolCheck - Perform strict IP address check
- Strip
Mptcp stringOption - strip mptcp option
- Strip
Tcp boolFast Open And Data - Strip tcp fast option and data payload
- Suppress
Icmp boolNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- Suppress
Icmp boolTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- Tcp
Reject stringNon Syn - reject non-SYN TCP packet for session setup
- Location
Zone
Protection Profile Location Args - The location of this object.
- Asymmetric
Path string - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- Description string
- Discard
Icmp boolError - Discard ICMP embedded with error message
- Discard
Icmp boolFrag - Discard ICMP fragment
- Discard
Icmp boolLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- Discard
Icmp boolPing Zero Id - Discard ICMP Ping with zero ID
- Discard
Ip boolFrag - Discard IP fragment
- Discard
Ip boolSpoof - Discard spoofed IP packet
- Discard
Loose boolSource Routing - Discard packets with loose source routing IP option
- Discard
Malformed boolOption - Discard packets with malformed IP option
- Discard
Overlapping boolTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- Discard
Record boolRoute - Discard packets with Record Route IP option
- Discard
Security bool - Discard packets with Security IP option
- Discard
Stream boolId - Discard packets with Stream ID IP option
- Discard
Strict boolSource Routing - Discard packets with strict source routing IP option
- Discard
Tcp boolSplit Handshake - Discard tcp split handshake packet
- Discard
Tcp boolSyn With Data - Discard tcp syn packet with data payload
- Discard
Tcp boolSynack With Data - Discard tcp syn ack packet with data payload
- Discard
Timestamp bool - Discard packets with Timestmp IP option
- Discard
Unknown boolOption - Discard packets with unknown IP option
- Flood
Zone
Protection Profile Flood Args - Ipv6
Zone
Protection Profile Ipv6Args - L2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection Args - Name string
- Net
Inspection ZoneProtection Profile Net Inspection Args - Non
Ip ZoneProtocol Protection Profile Non Ip Protocol Args - Remove
Tcp boolTimestamp - Remove TCP Timestamp
- Scan
White []ZoneLists Protection Profile Scan White List Args - Scans
[]Zone
Protection Profile Scan Args - Strict
Ip boolCheck - Perform strict IP address check
- Strip
Mptcp stringOption - strip mptcp option
- Strip
Tcp boolFast Open And Data - Strip tcp fast option and data payload
- Suppress
Icmp boolNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- Suppress
Icmp boolTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- Tcp
Reject stringNon Syn - reject non-SYN TCP packet for session setup
- location
Zone
Protection Profile Location - The location of this object.
- asymmetric
Path String - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description String
- discard
Icmp BooleanError - Discard ICMP embedded with error message
- discard
Icmp BooleanFrag - Discard ICMP fragment
- discard
Icmp BooleanLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- discard
Icmp BooleanPing Zero Id - Discard ICMP Ping with zero ID
- discard
Ip BooleanFrag - Discard IP fragment
- discard
Ip BooleanSpoof - Discard spoofed IP packet
- discard
Loose BooleanSource Routing - Discard packets with loose source routing IP option
- discard
Malformed BooleanOption - Discard packets with malformed IP option
- discard
Overlapping BooleanTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- discard
Record BooleanRoute - Discard packets with Record Route IP option
- discard
Security Boolean - Discard packets with Security IP option
- discard
Stream BooleanId - Discard packets with Stream ID IP option
- discard
Strict BooleanSource Routing - Discard packets with strict source routing IP option
- discard
Tcp BooleanSplit Handshake - Discard tcp split handshake packet
- discard
Tcp BooleanSyn With Data - Discard tcp syn packet with data payload
- discard
Tcp BooleanSynack With Data - Discard tcp syn ack packet with data payload
- discard
Timestamp Boolean - Discard packets with Timestmp IP option
- discard
Unknown BooleanOption - Discard packets with unknown IP option
- flood
Zone
Protection Profile Flood - ipv6
Zone
Protection Profile Ipv6 - l2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection - name String
- net
Inspection ZoneProtection Profile Net Inspection - non
Ip ZoneProtocol Protection Profile Non Ip Protocol - remove
Tcp BooleanTimestamp - Remove TCP Timestamp
- scan
White List<ZoneLists Protection Profile Scan White List> - scans
List<Zone
Protection Profile Scan> - strict
Ip BooleanCheck - Perform strict IP address check
- strip
Mptcp StringOption - strip mptcp option
- strip
Tcp BooleanFast Open And Data - Strip tcp fast option and data payload
- suppress
Icmp BooleanNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress
Icmp BooleanTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp
Reject StringNon Syn - reject non-SYN TCP packet for session setup
- location
Zone
Protection Profile Location - The location of this object.
- asymmetric
Path string - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description string
- discard
Icmp booleanError - Discard ICMP embedded with error message
- discard
Icmp booleanFrag - Discard ICMP fragment
- discard
Icmp booleanLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- discard
Icmp booleanPing Zero Id - Discard ICMP Ping with zero ID
- discard
Ip booleanFrag - Discard IP fragment
- discard
Ip booleanSpoof - Discard spoofed IP packet
- discard
Loose booleanSource Routing - Discard packets with loose source routing IP option
- discard
Malformed booleanOption - Discard packets with malformed IP option
- discard
Overlapping booleanTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- discard
Record booleanRoute - Discard packets with Record Route IP option
- discard
Security boolean - Discard packets with Security IP option
- discard
Stream booleanId - Discard packets with Stream ID IP option
- discard
Strict booleanSource Routing - Discard packets with strict source routing IP option
- discard
Tcp booleanSplit Handshake - Discard tcp split handshake packet
- discard
Tcp booleanSyn With Data - Discard tcp syn packet with data payload
- discard
Tcp booleanSynack With Data - Discard tcp syn ack packet with data payload
- discard
Timestamp boolean - Discard packets with Timestmp IP option
- discard
Unknown booleanOption - Discard packets with unknown IP option
- flood
Zone
Protection Profile Flood - ipv6
Zone
Protection Profile Ipv6 - l2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection - name string
- net
Inspection ZoneProtection Profile Net Inspection - non
Ip ZoneProtocol Protection Profile Non Ip Protocol - remove
Tcp booleanTimestamp - Remove TCP Timestamp
- scan
White ZoneLists Protection Profile Scan White List[] - scans
Zone
Protection Profile Scan[] - strict
Ip booleanCheck - Perform strict IP address check
- strip
Mptcp stringOption - strip mptcp option
- strip
Tcp booleanFast Open And Data - Strip tcp fast option and data payload
- suppress
Icmp booleanNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress
Icmp booleanTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp
Reject stringNon Syn - reject non-SYN TCP packet for session setup
- location
Zone
Protection Profile Location Args - The location of this object.
- asymmetric_
path str - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description str
- discard_
icmp_ boolerror - Discard ICMP embedded with error message
- discard_
icmp_ boolfrag - Discard ICMP fragment
- discard_
icmp_ boollarge_ packet - Discard Large ICMP packet (IP length > 1024B)
- discard_
icmp_ boolping_ zero_ id - Discard ICMP Ping with zero ID
- discard_
ip_ boolfrag - Discard IP fragment
- discard_
ip_ boolspoof - Discard spoofed IP packet
- discard_
loose_ boolsource_ routing - Discard packets with loose source routing IP option
- discard_
malformed_ booloption - Discard packets with malformed IP option
- discard_
overlapping_ booltcp_ segment_ mismatch - Discard sessions with mismatch tcp overlapping segment
- discard_
record_ boolroute - Discard packets with Record Route IP option
- discard_
security bool - Discard packets with Security IP option
- discard_
stream_ boolid - Discard packets with Stream ID IP option
- discard_
strict_ boolsource_ routing - Discard packets with strict source routing IP option
- discard_
tcp_ boolsplit_ handshake - Discard tcp split handshake packet
- discard_
tcp_ boolsyn_ with_ data - Discard tcp syn packet with data payload
- discard_
tcp_ boolsynack_ with_ data - Discard tcp syn ack packet with data payload
- discard_
timestamp bool - Discard packets with Timestmp IP option
- discard_
unknown_ booloption - Discard packets with unknown IP option
- flood
Zone
Protection Profile Flood Args - ipv6
Zone
Protection Profile Ipv6Args - l2_
sec_ Zonegroup_ tag_ protection Protection Profile L2Sec Group Tag Protection Args - name str
- net_
inspection ZoneProtection Profile Net Inspection Args - non_
ip_ Zoneprotocol Protection Profile Non Ip Protocol Args - remove_
tcp_ booltimestamp - Remove TCP Timestamp
- scan_
white_ Sequence[Zonelists Protection Profile Scan White List Args] - scans
Sequence[Zone
Protection Profile Scan Args] - strict_
ip_ boolcheck - Perform strict IP address check
- strip_
mptcp_ stroption - strip mptcp option
- strip_
tcp_ boolfast_ open_ and_ data - Strip tcp fast option and data payload
- suppress_
icmp_ boolneedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress_
icmp_ booltimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp_
reject_ strnon_ syn - reject non-SYN TCP packet for session setup
- location Property Map
- The location of this object.
- asymmetric
Path String - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description String
- discard
Icmp BooleanError - Discard ICMP embedded with error message
- discard
Icmp BooleanFrag - Discard ICMP fragment
- discard
Icmp BooleanLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- discard
Icmp BooleanPing Zero Id - Discard ICMP Ping with zero ID
- discard
Ip BooleanFrag - Discard IP fragment
- discard
Ip BooleanSpoof - Discard spoofed IP packet
- discard
Loose BooleanSource Routing - Discard packets with loose source routing IP option
- discard
Malformed BooleanOption - Discard packets with malformed IP option
- discard
Overlapping BooleanTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- discard
Record BooleanRoute - Discard packets with Record Route IP option
- discard
Security Boolean - Discard packets with Security IP option
- discard
Stream BooleanId - Discard packets with Stream ID IP option
- discard
Strict BooleanSource Routing - Discard packets with strict source routing IP option
- discard
Tcp BooleanSplit Handshake - Discard tcp split handshake packet
- discard
Tcp BooleanSyn With Data - Discard tcp syn packet with data payload
- discard
Tcp BooleanSynack With Data - Discard tcp syn ack packet with data payload
- discard
Timestamp Boolean - Discard packets with Timestmp IP option
- discard
Unknown BooleanOption - Discard packets with unknown IP option
- flood Property Map
- ipv6 Property Map
- l2Sec
Group Property MapTag Protection - name String
- net
Inspection Property Map - non
Ip Property MapProtocol - remove
Tcp BooleanTimestamp - Remove TCP Timestamp
- scan
White List<Property Map>Lists - scans List<Property Map>
- strict
Ip BooleanCheck - Perform strict IP address check
- strip
Mptcp StringOption - strip mptcp option
- strip
Tcp BooleanFast Open And Data - Strip tcp fast option and data payload
- suppress
Icmp BooleanNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress
Icmp BooleanTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp
Reject StringNon Syn - reject non-SYN TCP packet for session setup
Outputs
All input properties are implicitly available as output properties. Additionally, the ZoneProtectionProfile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ZoneProtectionProfile Resource
Get an existing ZoneProtectionProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ZoneProtectionProfileState, opts?: CustomResourceOptions): ZoneProtectionProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
asymmetric_path: Optional[str] = None,
description: Optional[str] = None,
discard_icmp_error: Optional[bool] = None,
discard_icmp_frag: Optional[bool] = None,
discard_icmp_large_packet: Optional[bool] = None,
discard_icmp_ping_zero_id: Optional[bool] = None,
discard_ip_frag: Optional[bool] = None,
discard_ip_spoof: Optional[bool] = None,
discard_loose_source_routing: Optional[bool] = None,
discard_malformed_option: Optional[bool] = None,
discard_overlapping_tcp_segment_mismatch: Optional[bool] = None,
discard_record_route: Optional[bool] = None,
discard_security: Optional[bool] = None,
discard_stream_id: Optional[bool] = None,
discard_strict_source_routing: Optional[bool] = None,
discard_tcp_split_handshake: Optional[bool] = None,
discard_tcp_syn_with_data: Optional[bool] = None,
discard_tcp_synack_with_data: Optional[bool] = None,
discard_timestamp: Optional[bool] = None,
discard_unknown_option: Optional[bool] = None,
flood: Optional[ZoneProtectionProfileFloodArgs] = None,
ipv6: Optional[ZoneProtectionProfileIpv6Args] = None,
l2_sec_group_tag_protection: Optional[ZoneProtectionProfileL2SecGroupTagProtectionArgs] = None,
location: Optional[ZoneProtectionProfileLocationArgs] = None,
name: Optional[str] = None,
net_inspection: Optional[ZoneProtectionProfileNetInspectionArgs] = None,
non_ip_protocol: Optional[ZoneProtectionProfileNonIpProtocolArgs] = None,
remove_tcp_timestamp: Optional[bool] = None,
scan_white_lists: Optional[Sequence[ZoneProtectionProfileScanWhiteListArgs]] = None,
scans: Optional[Sequence[ZoneProtectionProfileScanArgs]] = None,
strict_ip_check: Optional[bool] = None,
strip_mptcp_option: Optional[str] = None,
strip_tcp_fast_open_and_data: Optional[bool] = None,
suppress_icmp_needfrag: Optional[bool] = None,
suppress_icmp_timeexceeded: Optional[bool] = None,
tcp_reject_non_syn: Optional[str] = None) -> ZoneProtectionProfilefunc GetZoneProtectionProfile(ctx *Context, name string, id IDInput, state *ZoneProtectionProfileState, opts ...ResourceOption) (*ZoneProtectionProfile, error)public static ZoneProtectionProfile Get(string name, Input<string> id, ZoneProtectionProfileState? state, CustomResourceOptions? opts = null)public static ZoneProtectionProfile get(String name, Output<String> id, ZoneProtectionProfileState state, CustomResourceOptions options)resources: _: type: panos:ZoneProtectionProfile get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Asymmetric
Path string - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- Description string
- Discard
Icmp boolError - Discard ICMP embedded with error message
- Discard
Icmp boolFrag - Discard ICMP fragment
- Discard
Icmp boolLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- Discard
Icmp boolPing Zero Id - Discard ICMP Ping with zero ID
- Discard
Ip boolFrag - Discard IP fragment
- Discard
Ip boolSpoof - Discard spoofed IP packet
- Discard
Loose boolSource Routing - Discard packets with loose source routing IP option
- Discard
Malformed boolOption - Discard packets with malformed IP option
- Discard
Overlapping boolTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- Discard
Record boolRoute - Discard packets with Record Route IP option
- Discard
Security bool - Discard packets with Security IP option
- Discard
Stream boolId - Discard packets with Stream ID IP option
- Discard
Strict boolSource Routing - Discard packets with strict source routing IP option
- Discard
Tcp boolSplit Handshake - Discard tcp split handshake packet
- Discard
Tcp boolSyn With Data - Discard tcp syn packet with data payload
- Discard
Tcp boolSynack With Data - Discard tcp syn ack packet with data payload
- Discard
Timestamp bool - Discard packets with Timestmp IP option
- Discard
Unknown boolOption - Discard packets with unknown IP option
- Flood
Zone
Protection Profile Flood - Ipv6
Zone
Protection Profile Ipv6 - L2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection - Location
Zone
Protection Profile Location - The location of this object.
- Name string
- Net
Inspection ZoneProtection Profile Net Inspection - Non
Ip ZoneProtocol Protection Profile Non Ip Protocol - Remove
Tcp boolTimestamp - Remove TCP Timestamp
- Scan
White List<ZoneLists Protection Profile Scan White List> - Scans
List<Zone
Protection Profile Scan> - Strict
Ip boolCheck - Perform strict IP address check
- Strip
Mptcp stringOption - strip mptcp option
- Strip
Tcp boolFast Open And Data - Strip tcp fast option and data payload
- Suppress
Icmp boolNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- Suppress
Icmp boolTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- Tcp
Reject stringNon Syn - reject non-SYN TCP packet for session setup
- Asymmetric
Path string - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- Description string
- Discard
Icmp boolError - Discard ICMP embedded with error message
- Discard
Icmp boolFrag - Discard ICMP fragment
- Discard
Icmp boolLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- Discard
Icmp boolPing Zero Id - Discard ICMP Ping with zero ID
- Discard
Ip boolFrag - Discard IP fragment
- Discard
Ip boolSpoof - Discard spoofed IP packet
- Discard
Loose boolSource Routing - Discard packets with loose source routing IP option
- Discard
Malformed boolOption - Discard packets with malformed IP option
- Discard
Overlapping boolTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- Discard
Record boolRoute - Discard packets with Record Route IP option
- Discard
Security bool - Discard packets with Security IP option
- Discard
Stream boolId - Discard packets with Stream ID IP option
- Discard
Strict boolSource Routing - Discard packets with strict source routing IP option
- Discard
Tcp boolSplit Handshake - Discard tcp split handshake packet
- Discard
Tcp boolSyn With Data - Discard tcp syn packet with data payload
- Discard
Tcp boolSynack With Data - Discard tcp syn ack packet with data payload
- Discard
Timestamp bool - Discard packets with Timestmp IP option
- Discard
Unknown boolOption - Discard packets with unknown IP option
- Flood
Zone
Protection Profile Flood Args - Ipv6
Zone
Protection Profile Ipv6Args - L2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection Args - Location
Zone
Protection Profile Location Args - The location of this object.
- Name string
- Net
Inspection ZoneProtection Profile Net Inspection Args - Non
Ip ZoneProtocol Protection Profile Non Ip Protocol Args - Remove
Tcp boolTimestamp - Remove TCP Timestamp
- Scan
White []ZoneLists Protection Profile Scan White List Args - Scans
[]Zone
Protection Profile Scan Args - Strict
Ip boolCheck - Perform strict IP address check
- Strip
Mptcp stringOption - strip mptcp option
- Strip
Tcp boolFast Open And Data - Strip tcp fast option and data payload
- Suppress
Icmp boolNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- Suppress
Icmp boolTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- Tcp
Reject stringNon Syn - reject non-SYN TCP packet for session setup
- asymmetric
Path String - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description String
- discard
Icmp BooleanError - Discard ICMP embedded with error message
- discard
Icmp BooleanFrag - Discard ICMP fragment
- discard
Icmp BooleanLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- discard
Icmp BooleanPing Zero Id - Discard ICMP Ping with zero ID
- discard
Ip BooleanFrag - Discard IP fragment
- discard
Ip BooleanSpoof - Discard spoofed IP packet
- discard
Loose BooleanSource Routing - Discard packets with loose source routing IP option
- discard
Malformed BooleanOption - Discard packets with malformed IP option
- discard
Overlapping BooleanTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- discard
Record BooleanRoute - Discard packets with Record Route IP option
- discard
Security Boolean - Discard packets with Security IP option
- discard
Stream BooleanId - Discard packets with Stream ID IP option
- discard
Strict BooleanSource Routing - Discard packets with strict source routing IP option
- discard
Tcp BooleanSplit Handshake - Discard tcp split handshake packet
- discard
Tcp BooleanSyn With Data - Discard tcp syn packet with data payload
- discard
Tcp BooleanSynack With Data - Discard tcp syn ack packet with data payload
- discard
Timestamp Boolean - Discard packets with Timestmp IP option
- discard
Unknown BooleanOption - Discard packets with unknown IP option
- flood
Zone
Protection Profile Flood - ipv6
Zone
Protection Profile Ipv6 - l2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection - location
Zone
Protection Profile Location - The location of this object.
- name String
- net
Inspection ZoneProtection Profile Net Inspection - non
Ip ZoneProtocol Protection Profile Non Ip Protocol - remove
Tcp BooleanTimestamp - Remove TCP Timestamp
- scan
White List<ZoneLists Protection Profile Scan White List> - scans
List<Zone
Protection Profile Scan> - strict
Ip BooleanCheck - Perform strict IP address check
- strip
Mptcp StringOption - strip mptcp option
- strip
Tcp BooleanFast Open And Data - Strip tcp fast option and data payload
- suppress
Icmp BooleanNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress
Icmp BooleanTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp
Reject StringNon Syn - reject non-SYN TCP packet for session setup
- asymmetric
Path string - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description string
- discard
Icmp booleanError - Discard ICMP embedded with error message
- discard
Icmp booleanFrag - Discard ICMP fragment
- discard
Icmp booleanLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- discard
Icmp booleanPing Zero Id - Discard ICMP Ping with zero ID
- discard
Ip booleanFrag - Discard IP fragment
- discard
Ip booleanSpoof - Discard spoofed IP packet
- discard
Loose booleanSource Routing - Discard packets with loose source routing IP option
- discard
Malformed booleanOption - Discard packets with malformed IP option
- discard
Overlapping booleanTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- discard
Record booleanRoute - Discard packets with Record Route IP option
- discard
Security boolean - Discard packets with Security IP option
- discard
Stream booleanId - Discard packets with Stream ID IP option
- discard
Strict booleanSource Routing - Discard packets with strict source routing IP option
- discard
Tcp booleanSplit Handshake - Discard tcp split handshake packet
- discard
Tcp booleanSyn With Data - Discard tcp syn packet with data payload
- discard
Tcp booleanSynack With Data - Discard tcp syn ack packet with data payload
- discard
Timestamp boolean - Discard packets with Timestmp IP option
- discard
Unknown booleanOption - Discard packets with unknown IP option
- flood
Zone
Protection Profile Flood - ipv6
Zone
Protection Profile Ipv6 - l2Sec
Group ZoneTag Protection Protection Profile L2Sec Group Tag Protection - location
Zone
Protection Profile Location - The location of this object.
- name string
- net
Inspection ZoneProtection Profile Net Inspection - non
Ip ZoneProtocol Protection Profile Non Ip Protocol - remove
Tcp booleanTimestamp - Remove TCP Timestamp
- scan
White ZoneLists Protection Profile Scan White List[] - scans
Zone
Protection Profile Scan[] - strict
Ip booleanCheck - Perform strict IP address check
- strip
Mptcp stringOption - strip mptcp option
- strip
Tcp booleanFast Open And Data - Strip tcp fast option and data payload
- suppress
Icmp booleanNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress
Icmp booleanTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp
Reject stringNon Syn - reject non-SYN TCP packet for session setup
- asymmetric_
path str - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description str
- discard_
icmp_ boolerror - Discard ICMP embedded with error message
- discard_
icmp_ boolfrag - Discard ICMP fragment
- discard_
icmp_ boollarge_ packet - Discard Large ICMP packet (IP length > 1024B)
- discard_
icmp_ boolping_ zero_ id - Discard ICMP Ping with zero ID
- discard_
ip_ boolfrag - Discard IP fragment
- discard_
ip_ boolspoof - Discard spoofed IP packet
- discard_
loose_ boolsource_ routing - Discard packets with loose source routing IP option
- discard_
malformed_ booloption - Discard packets with malformed IP option
- discard_
overlapping_ booltcp_ segment_ mismatch - Discard sessions with mismatch tcp overlapping segment
- discard_
record_ boolroute - Discard packets with Record Route IP option
- discard_
security bool - Discard packets with Security IP option
- discard_
stream_ boolid - Discard packets with Stream ID IP option
- discard_
strict_ boolsource_ routing - Discard packets with strict source routing IP option
- discard_
tcp_ boolsplit_ handshake - Discard tcp split handshake packet
- discard_
tcp_ boolsyn_ with_ data - Discard tcp syn packet with data payload
- discard_
tcp_ boolsynack_ with_ data - Discard tcp syn ack packet with data payload
- discard_
timestamp bool - Discard packets with Timestmp IP option
- discard_
unknown_ booloption - Discard packets with unknown IP option
- flood
Zone
Protection Profile Flood Args - ipv6
Zone
Protection Profile Ipv6Args - l2_
sec_ Zonegroup_ tag_ protection Protection Profile L2Sec Group Tag Protection Args - location
Zone
Protection Profile Location Args - The location of this object.
- name str
- net_
inspection ZoneProtection Profile Net Inspection Args - non_
ip_ Zoneprotocol Protection Profile Non Ip Protocol Args - remove_
tcp_ booltimestamp - Remove TCP Timestamp
- scan_
white_ Sequence[Zonelists Protection Profile Scan White List Args] - scans
Sequence[Zone
Protection Profile Scan Args] - strict_
ip_ boolcheck - Perform strict IP address check
- strip_
mptcp_ stroption - strip mptcp option
- strip_
tcp_ boolfast_ open_ and_ data - Strip tcp fast option and data payload
- suppress_
icmp_ boolneedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress_
icmp_ booltimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp_
reject_ strnon_ syn - reject non-SYN TCP packet for session setup
- asymmetric
Path String - actions for TCP sliding window tracking errors, also control enable/disable TCP sequence number check for FIN/RST
- description String
- discard
Icmp BooleanError - Discard ICMP embedded with error message
- discard
Icmp BooleanFrag - Discard ICMP fragment
- discard
Icmp BooleanLarge Packet - Discard Large ICMP packet (IP length > 1024B)
- discard
Icmp BooleanPing Zero Id - Discard ICMP Ping with zero ID
- discard
Ip BooleanFrag - Discard IP fragment
- discard
Ip BooleanSpoof - Discard spoofed IP packet
- discard
Loose BooleanSource Routing - Discard packets with loose source routing IP option
- discard
Malformed BooleanOption - Discard packets with malformed IP option
- discard
Overlapping BooleanTcp Segment Mismatch - Discard sessions with mismatch tcp overlapping segment
- discard
Record BooleanRoute - Discard packets with Record Route IP option
- discard
Security Boolean - Discard packets with Security IP option
- discard
Stream BooleanId - Discard packets with Stream ID IP option
- discard
Strict BooleanSource Routing - Discard packets with strict source routing IP option
- discard
Tcp BooleanSplit Handshake - Discard tcp split handshake packet
- discard
Tcp BooleanSyn With Data - Discard tcp syn packet with data payload
- discard
Tcp BooleanSynack With Data - Discard tcp syn ack packet with data payload
- discard
Timestamp Boolean - Discard packets with Timestmp IP option
- discard
Unknown BooleanOption - Discard packets with unknown IP option
- flood Property Map
- ipv6 Property Map
- l2Sec
Group Property MapTag Protection - location Property Map
- The location of this object.
- name String
- net
Inspection Property Map - non
Ip Property MapProtocol - remove
Tcp BooleanTimestamp - Remove TCP Timestamp
- scan
White List<Property Map>Lists - scans List<Property Map>
- strict
Ip BooleanCheck - Perform strict IP address check
- strip
Mptcp StringOption - strip mptcp option
- strip
Tcp BooleanFast Open And Data - Strip tcp fast option and data payload
- suppress
Icmp BooleanNeedfrag - Do not reply ICMP NEEDFRAG (layer3 only)
- suppress
Icmp BooleanTimeexceeded - Do not reply ICMP TTL expired error (layer3 only)
- tcp
Reject StringNon Syn - reject non-SYN TCP packet for session setup
Supporting Types
ZoneProtectionProfileFlood, ZoneProtectionProfileFloodArgs
ZoneProtectionProfileFloodIcmp, ZoneProtectionProfileFloodIcmpArgs
- enable Boolean
- red Property Map
ZoneProtectionProfileFloodIcmpRed, ZoneProtectionProfileFloodIcmpRedArgs
- Activate
Rate double - Connection rate (cps) to start RED
- Alarm
Rate double - Connection rate (cps) to generate alarm
- Maximal
Rate double - Maximal connection rate (cps) allowed
- Activate
Rate float64 - Connection rate (cps) to start RED
- Alarm
Rate float64 - Connection rate (cps) to generate alarm
- Maximal
Rate float64 - Maximal connection rate (cps) allowed
- activate
Rate Double - Connection rate (cps) to start RED
- alarm
Rate Double - Connection rate (cps) to generate alarm
- maximal
Rate Double - Maximal connection rate (cps) allowed
- activate
Rate number - Connection rate (cps) to start RED
- alarm
Rate number - Connection rate (cps) to generate alarm
- maximal
Rate number - Maximal connection rate (cps) allowed
- activate_
rate float - Connection rate (cps) to start RED
- alarm_
rate float - Connection rate (cps) to generate alarm
- maximal_
rate float - Maximal connection rate (cps) allowed
- activate
Rate Number - Connection rate (cps) to start RED
- alarm
Rate Number - Connection rate (cps) to generate alarm
- maximal
Rate Number - Maximal connection rate (cps) allowed
ZoneProtectionProfileFloodIcmpv6, ZoneProtectionProfileFloodIcmpv6Args
- enable Boolean
- red Property Map
ZoneProtectionProfileFloodIcmpv6Red, ZoneProtectionProfileFloodIcmpv6RedArgs
- Activate
Rate double - Connection rate (cps) to start RED
- Alarm
Rate double - Connection rate (cps) to generate alarm
- Maximal
Rate double - Maximal connection rate (cps) allowed
- Activate
Rate float64 - Connection rate (cps) to start RED
- Alarm
Rate float64 - Connection rate (cps) to generate alarm
- Maximal
Rate float64 - Maximal connection rate (cps) allowed
- activate
Rate Double - Connection rate (cps) to start RED
- alarm
Rate Double - Connection rate (cps) to generate alarm
- maximal
Rate Double - Maximal connection rate (cps) allowed
- activate
Rate number - Connection rate (cps) to start RED
- alarm
Rate number - Connection rate (cps) to generate alarm
- maximal
Rate number - Maximal connection rate (cps) allowed
- activate_
rate float - Connection rate (cps) to start RED
- alarm_
rate float - Connection rate (cps) to generate alarm
- maximal_
rate float - Maximal connection rate (cps) allowed
- activate
Rate Number - Connection rate (cps) to start RED
- alarm
Rate Number - Connection rate (cps) to generate alarm
- maximal
Rate Number - Maximal connection rate (cps) allowed
ZoneProtectionProfileFloodOtherIp, ZoneProtectionProfileFloodOtherIpArgs
- enable Boolean
- red Property Map
ZoneProtectionProfileFloodOtherIpRed, ZoneProtectionProfileFloodOtherIpRedArgs
- Activate
Rate double - Connection rate (cps) to start RED
- Alarm
Rate double - Connection rate (cps) to generate alarm
- Maximal
Rate double - Maximal connection rate (cps) allowed
- Activate
Rate float64 - Connection rate (cps) to start RED
- Alarm
Rate float64 - Connection rate (cps) to generate alarm
- Maximal
Rate float64 - Maximal connection rate (cps) allowed
- activate
Rate Double - Connection rate (cps) to start RED
- alarm
Rate Double - Connection rate (cps) to generate alarm
- maximal
Rate Double - Maximal connection rate (cps) allowed
- activate
Rate number - Connection rate (cps) to start RED
- alarm
Rate number - Connection rate (cps) to generate alarm
- maximal
Rate number - Maximal connection rate (cps) allowed
- activate_
rate float - Connection rate (cps) to start RED
- alarm_
rate float - Connection rate (cps) to generate alarm
- maximal_
rate float - Maximal connection rate (cps) allowed
- activate
Rate Number - Connection rate (cps) to start RED
- alarm
Rate Number - Connection rate (cps) to generate alarm
- maximal
Rate Number - Maximal connection rate (cps) allowed
ZoneProtectionProfileFloodSctpInit, ZoneProtectionProfileFloodSctpInitArgs
- enable Boolean
- red Property Map
ZoneProtectionProfileFloodSctpInitRed, ZoneProtectionProfileFloodSctpInitRedArgs
- Activate
Rate double - Connection rate (cps) to start RED
- Alarm
Rate double - Connection rate (cps) to generate alarm
- Maximal
Rate double - Maximal connection rate (cps) allowed
- Activate
Rate float64 - Connection rate (cps) to start RED
- Alarm
Rate float64 - Connection rate (cps) to generate alarm
- Maximal
Rate float64 - Maximal connection rate (cps) allowed
- activate
Rate Double - Connection rate (cps) to start RED
- alarm
Rate Double - Connection rate (cps) to generate alarm
- maximal
Rate Double - Maximal connection rate (cps) allowed
- activate
Rate number - Connection rate (cps) to start RED
- alarm
Rate number - Connection rate (cps) to generate alarm
- maximal
Rate number - Maximal connection rate (cps) allowed
- activate_
rate float - Connection rate (cps) to start RED
- alarm_
rate float - Connection rate (cps) to generate alarm
- maximal_
rate float - Maximal connection rate (cps) allowed
- activate
Rate Number - Connection rate (cps) to start RED
- alarm
Rate Number - Connection rate (cps) to generate alarm
- maximal
Rate Number - Maximal connection rate (cps) allowed
ZoneProtectionProfileFloodTcpSyn, ZoneProtectionProfileFloodTcpSynArgs
- enable Boolean
- red Property Map
- Property Map
ZoneProtectionProfileFloodTcpSynRed, ZoneProtectionProfileFloodTcpSynRedArgs
- Activate
Rate double - Connection rate (cps) to start RED
- Alarm
Rate double - Connection rate (cps) to generate alarm
- Maximal
Rate double - Maximal connection rate (cps) allowed
- Activate
Rate float64 - Connection rate (cps) to start RED
- Alarm
Rate float64 - Connection rate (cps) to generate alarm
- Maximal
Rate float64 - Maximal connection rate (cps) allowed
- activate
Rate Double - Connection rate (cps) to start RED
- alarm
Rate Double - Connection rate (cps) to generate alarm
- maximal
Rate Double - Maximal connection rate (cps) allowed
- activate
Rate number - Connection rate (cps) to start RED
- alarm
Rate number - Connection rate (cps) to generate alarm
- maximal
Rate number - Maximal connection rate (cps) allowed
- activate_
rate float - Connection rate (cps) to start RED
- alarm_
rate float - Connection rate (cps) to generate alarm
- maximal_
rate float - Maximal connection rate (cps) allowed
- activate
Rate Number - Connection rate (cps) to start RED
- alarm
Rate Number - Connection rate (cps) to generate alarm
- maximal
Rate Number - Maximal connection rate (cps) allowed
ZoneProtectionProfileFloodTcpSynSynCookies, ZoneProtectionProfileFloodTcpSynSynCookiesArgs
- Activate
Rate double - Connection rate (cps) to activate SYN cookies proxy
- Alarm
Rate double - Connection rate (cps) to generate alarm
- Maximal
Rate double - Maximal connection rate (cps) allowed
- Activate
Rate float64 - Connection rate (cps) to activate SYN cookies proxy
- Alarm
Rate float64 - Connection rate (cps) to generate alarm
- Maximal
Rate float64 - Maximal connection rate (cps) allowed
- activate
Rate Double - Connection rate (cps) to activate SYN cookies proxy
- alarm
Rate Double - Connection rate (cps) to generate alarm
- maximal
Rate Double - Maximal connection rate (cps) allowed
- activate
Rate number - Connection rate (cps) to activate SYN cookies proxy
- alarm
Rate number - Connection rate (cps) to generate alarm
- maximal
Rate number - Maximal connection rate (cps) allowed
- activate_
rate float - Connection rate (cps) to activate SYN cookies proxy
- alarm_
rate float - Connection rate (cps) to generate alarm
- maximal_
rate float - Maximal connection rate (cps) allowed
- activate
Rate Number - Connection rate (cps) to activate SYN cookies proxy
- alarm
Rate Number - Connection rate (cps) to generate alarm
- maximal
Rate Number - Maximal connection rate (cps) allowed
ZoneProtectionProfileFloodUdp, ZoneProtectionProfileFloodUdpArgs
- enable Boolean
- red Property Map
ZoneProtectionProfileFloodUdpRed, ZoneProtectionProfileFloodUdpRedArgs
- Activate
Rate double - Connection rate (cps) to start RED
- Alarm
Rate double - Connection rate (cps) to generate alarm
- Maximal
Rate double - Maximal connection rate (cps) allowed
- Activate
Rate float64 - Connection rate (cps) to start RED
- Alarm
Rate float64 - Connection rate (cps) to generate alarm
- Maximal
Rate float64 - Maximal connection rate (cps) allowed
- activate
Rate Double - Connection rate (cps) to start RED
- alarm
Rate Double - Connection rate (cps) to generate alarm
- maximal
Rate Double - Maximal connection rate (cps) allowed
- activate
Rate number - Connection rate (cps) to start RED
- alarm
Rate number - Connection rate (cps) to generate alarm
- maximal
Rate number - Maximal connection rate (cps) allowed
- activate_
rate float - Connection rate (cps) to start RED
- alarm_
rate float - Connection rate (cps) to generate alarm
- maximal_
rate float - Maximal connection rate (cps) allowed
- activate
Rate Number - Connection rate (cps) to start RED
- alarm
Rate Number - Connection rate (cps) to generate alarm
- maximal
Rate Number - Maximal connection rate (cps) allowed
ZoneProtectionProfileIpv6, ZoneProtectionProfileIpv6Args
- Anycast
Source bool - Drop packets with anycast source address
- Filter
Ext ZoneHdr Protection Profile Ipv6Filter Ext Hdr - Icmpv6Too
Big boolSmall Mtu Discard - Drop packets with MTU in ICMPv6 (Packet Too Big) less than 1280 bytes
- Ignore
Inv ZonePkt Protection Profile Ipv6Ignore Inv Pkt - Ipv4Compatible
Address bool - Drop packets with IPv4 compatible address
- Multicast
Source bool - Drop packets with multicast source address
- Needless
Fragment boolHdr - Drop packets with needless fragment header
- Options
Invalid boolIpv6Discard - Drop packets with invalid IPv6 options in extension header
- Reserved
Field boolSet Discard - Drop packets with reserved field different than 0
- Routing
Header0 bool - Drop packets with type 0 routing header
- Routing
Header1 bool - Drop packets with type 1 routing header
- Routing
Header253 bool - Drop packets with type 253 routing header
- Routing
Header254 bool - Drop packets with type 254 routing header
- Routing
Header255 bool - Drop packets with type 255 routing header
- Routing
Header3 bool - Drop packets with type 3 routing header
- Routing
Header4252 bool - Drop packets with type 4 to type 252 routing header
- Anycast
Source bool - Drop packets with anycast source address
- Filter
Ext ZoneHdr Protection Profile Ipv6Filter Ext Hdr - Icmpv6Too
Big boolSmall Mtu Discard - Drop packets with MTU in ICMPv6 (Packet Too Big) less than 1280 bytes
- Ignore
Inv ZonePkt Protection Profile Ipv6Ignore Inv Pkt - Ipv4Compatible
Address bool - Drop packets with IPv4 compatible address
- Multicast
Source bool - Drop packets with multicast source address
- Needless
Fragment boolHdr - Drop packets with needless fragment header
- Options
Invalid boolIpv6Discard - Drop packets with invalid IPv6 options in extension header
- Reserved
Field boolSet Discard - Drop packets with reserved field different than 0
- Routing
Header0 bool - Drop packets with type 0 routing header
- Routing
Header1 bool - Drop packets with type 1 routing header
- Routing
Header253 bool - Drop packets with type 253 routing header
- Routing
Header254 bool - Drop packets with type 254 routing header
- Routing
Header255 bool - Drop packets with type 255 routing header
- Routing
Header3 bool - Drop packets with type 3 routing header
- Routing
Header4252 bool - Drop packets with type 4 to type 252 routing header
- anycast
Source Boolean - Drop packets with anycast source address
- filter
Ext ZoneHdr Protection Profile Ipv6Filter Ext Hdr - icmpv6Too
Big BooleanSmall Mtu Discard - Drop packets with MTU in ICMPv6 (Packet Too Big) less than 1280 bytes
- ignore
Inv ZonePkt Protection Profile Ipv6Ignore Inv Pkt - ipv4Compatible
Address Boolean - Drop packets with IPv4 compatible address
- multicast
Source Boolean - Drop packets with multicast source address
- needless
Fragment BooleanHdr - Drop packets with needless fragment header
- options
Invalid BooleanIpv6Discard - Drop packets with invalid IPv6 options in extension header
- reserved
Field BooleanSet Discard - Drop packets with reserved field different than 0
- routing
Header0 Boolean - Drop packets with type 0 routing header
- routing
Header1 Boolean - Drop packets with type 1 routing header
- routing
Header253 Boolean - Drop packets with type 253 routing header
- routing
Header254 Boolean - Drop packets with type 254 routing header
- routing
Header255 Boolean - Drop packets with type 255 routing header
- routing
Header3 Boolean - Drop packets with type 3 routing header
- routing
Header4252 Boolean - Drop packets with type 4 to type 252 routing header
- anycast
Source boolean - Drop packets with anycast source address
- filter
Ext ZoneHdr Protection Profile Ipv6Filter Ext Hdr - icmpv6Too
Big booleanSmall Mtu Discard - Drop packets with MTU in ICMPv6 (Packet Too Big) less than 1280 bytes
- ignore
Inv ZonePkt Protection Profile Ipv6Ignore Inv Pkt - ipv4Compatible
Address boolean - Drop packets with IPv4 compatible address
- multicast
Source boolean - Drop packets with multicast source address
- needless
Fragment booleanHdr - Drop packets with needless fragment header
- options
Invalid booleanIpv6Discard - Drop packets with invalid IPv6 options in extension header
- reserved
Field booleanSet Discard - Drop packets with reserved field different than 0
- routing
Header0 boolean - Drop packets with type 0 routing header
- routing
Header1 boolean - Drop packets with type 1 routing header
- routing
Header253 boolean - Drop packets with type 253 routing header
- routing
Header254 boolean - Drop packets with type 254 routing header
- routing
Header255 boolean - Drop packets with type 255 routing header
- routing
Header3 boolean - Drop packets with type 3 routing header
- routing
Header4252 boolean - Drop packets with type 4 to type 252 routing header
- anycast_
source bool - Drop packets with anycast source address
- filter_
ext_ Zonehdr Protection Profile Ipv6Filter Ext Hdr - icmpv6_
too_ boolbig_ small_ mtu_ discard - Drop packets with MTU in ICMPv6 (Packet Too Big) less than 1280 bytes
- ignore_
inv_ Zonepkt Protection Profile Ipv6Ignore Inv Pkt - ipv4_
compatible_ booladdress - Drop packets with IPv4 compatible address
- multicast_
source bool - Drop packets with multicast source address
- needless_
fragment_ boolhdr - Drop packets with needless fragment header
- options_
invalid_ boolipv6_ discard - Drop packets with invalid IPv6 options in extension header
- reserved_
field_ boolset_ discard - Drop packets with reserved field different than 0
- routing_
header0 bool - Drop packets with type 0 routing header
- routing_
header1 bool - Drop packets with type 1 routing header
- routing_
header253 bool - Drop packets with type 253 routing header
- routing_
header254 bool - Drop packets with type 254 routing header
- routing_
header255 bool - Drop packets with type 255 routing header
- routing_
header3 bool - Drop packets with type 3 routing header
- routing_
header4252 bool - Drop packets with type 4 to type 252 routing header
- anycast
Source Boolean - Drop packets with anycast source address
- filter
Ext Property MapHdr - icmpv6Too
Big BooleanSmall Mtu Discard - Drop packets with MTU in ICMPv6 (Packet Too Big) less than 1280 bytes
- ignore
Inv Property MapPkt - ipv4Compatible
Address Boolean - Drop packets with IPv4 compatible address
- multicast
Source Boolean - Drop packets with multicast source address
- needless
Fragment BooleanHdr - Drop packets with needless fragment header
- options
Invalid BooleanIpv6Discard - Drop packets with invalid IPv6 options in extension header
- reserved
Field BooleanSet Discard - Drop packets with reserved field different than 0
- routing
Header0 Boolean - Drop packets with type 0 routing header
- routing
Header1 Boolean - Drop packets with type 1 routing header
- routing
Header253 Boolean - Drop packets with type 253 routing header
- routing
Header254 Boolean - Drop packets with type 254 routing header
- routing
Header255 Boolean - Drop packets with type 255 routing header
- routing
Header3 Boolean - Drop packets with type 3 routing header
- routing
Header4252 Boolean - Drop packets with type 4 to type 252 routing header
ZoneProtectionProfileIpv6FilterExtHdr, ZoneProtectionProfileIpv6FilterExtHdrArgs
- Dest
Option boolHdr - Drop packets with Destination extension
- Hop
By boolHop Hdr - Drop packets with Hop-by-Hop extension
- Routing
Hdr bool - Drop packets with Routing extension
- Dest
Option boolHdr - Drop packets with Destination extension
- Hop
By boolHop Hdr - Drop packets with Hop-by-Hop extension
- Routing
Hdr bool - Drop packets with Routing extension
- dest
Option BooleanHdr - Drop packets with Destination extension
- hop
By BooleanHop Hdr - Drop packets with Hop-by-Hop extension
- routing
Hdr Boolean - Drop packets with Routing extension
- dest
Option booleanHdr - Drop packets with Destination extension
- hop
By booleanHop Hdr - Drop packets with Hop-by-Hop extension
- routing
Hdr boolean - Drop packets with Routing extension
- dest_
option_ boolhdr - Drop packets with Destination extension
- hop_
by_ boolhop_ hdr - Drop packets with Hop-by-Hop extension
- routing_
hdr bool - Drop packets with Routing extension
- dest
Option BooleanHdr - Drop packets with Destination extension
- hop
By BooleanHop Hdr - Drop packets with Hop-by-Hop extension
- routing
Hdr Boolean - Drop packets with Routing extension
ZoneProtectionProfileIpv6IgnoreInvPkt, ZoneProtectionProfileIpv6IgnoreInvPktArgs
- Dest
Unreach bool - ICMPv6 destination unreachable - require explicit security rule match
- Param
Problem bool - ICMPv6 parameter problem - require explicit security rule match
- Pkt
Too boolBig - ICMPv6 packet too big - require explicit security rule match
- Redirect bool
- ICMPv6 redirect - require explicit security rule match
- Time
Exceeded bool - ICMPv6 time exceeded - require explicit security rule match
- Dest
Unreach bool - ICMPv6 destination unreachable - require explicit security rule match
- Param
Problem bool - ICMPv6 parameter problem - require explicit security rule match
- Pkt
Too boolBig - ICMPv6 packet too big - require explicit security rule match
- Redirect bool
- ICMPv6 redirect - require explicit security rule match
- Time
Exceeded bool - ICMPv6 time exceeded - require explicit security rule match
- dest
Unreach Boolean - ICMPv6 destination unreachable - require explicit security rule match
- param
Problem Boolean - ICMPv6 parameter problem - require explicit security rule match
- pkt
Too BooleanBig - ICMPv6 packet too big - require explicit security rule match
- redirect Boolean
- ICMPv6 redirect - require explicit security rule match
- time
Exceeded Boolean - ICMPv6 time exceeded - require explicit security rule match
- dest
Unreach boolean - ICMPv6 destination unreachable - require explicit security rule match
- param
Problem boolean - ICMPv6 parameter problem - require explicit security rule match
- pkt
Too booleanBig - ICMPv6 packet too big - require explicit security rule match
- redirect boolean
- ICMPv6 redirect - require explicit security rule match
- time
Exceeded boolean - ICMPv6 time exceeded - require explicit security rule match
- dest_
unreach bool - ICMPv6 destination unreachable - require explicit security rule match
- param_
problem bool - ICMPv6 parameter problem - require explicit security rule match
- pkt_
too_ boolbig - ICMPv6 packet too big - require explicit security rule match
- redirect bool
- ICMPv6 redirect - require explicit security rule match
- time_
exceeded bool - ICMPv6 time exceeded - require explicit security rule match
- dest
Unreach Boolean - ICMPv6 destination unreachable - require explicit security rule match
- param
Problem Boolean - ICMPv6 parameter problem - require explicit security rule match
- pkt
Too BooleanBig - ICMPv6 packet too big - require explicit security rule match
- redirect Boolean
- ICMPv6 redirect - require explicit security rule match
- time
Exceeded Boolean - ICMPv6 time exceeded - require explicit security rule match
ZoneProtectionProfileL2SecGroupTagProtection, ZoneProtectionProfileL2SecGroupTagProtectionArgs
ZoneProtectionProfileL2SecGroupTagProtectionTag, ZoneProtectionProfileL2SecGroupTagProtectionTagArgs
ZoneProtectionProfileLocation, ZoneProtectionProfileLocationArgs
- Ngfw
Zone
Protection Profile Location Ngfw - Located in a specific NGFW device
- Template
Zone
Protection Profile Location Template - Located in a specific template
- Template
Stack ZoneProtection Profile Location Template Stack - Located in a specific template stack
- Ngfw
Zone
Protection Profile Location Ngfw - Located in a specific NGFW device
- Template
Zone
Protection Profile Location Template - Located in a specific template
- Template
Stack ZoneProtection Profile Location Template Stack - Located in a specific template stack
- ngfw
Zone
Protection Profile Location Ngfw - Located in a specific NGFW device
- template
Zone
Protection Profile Location Template - Located in a specific template
- template
Stack ZoneProtection Profile Location Template Stack - Located in a specific template stack
- ngfw
Zone
Protection Profile Location Ngfw - Located in a specific NGFW device
- template
Zone
Protection Profile Location Template - Located in a specific template
- template
Stack ZoneProtection Profile Location Template Stack - Located in a specific template stack
- ngfw
Zone
Protection Profile Location Ngfw - Located in a specific NGFW device
- template
Zone
Protection Profile Location Template - Located in a specific template
- template_
stack ZoneProtection Profile Location Template Stack - Located in a specific template stack
- ngfw Property Map
- Located in a specific NGFW device
- template Property Map
- Located in a specific template
- template
Stack Property Map - Located in a specific template stack
ZoneProtectionProfileLocationNgfw, ZoneProtectionProfileLocationNgfwArgs
- Ngfw
Device string - The NGFW device
- Ngfw
Device string - The NGFW device
- ngfw
Device String - The NGFW device
- ngfw
Device string - The NGFW device
- ngfw_
device str - The NGFW device
- ngfw
Device String - The NGFW device
ZoneProtectionProfileLocationTemplate, ZoneProtectionProfileLocationTemplateArgs
- Name string
- Specific Panorama template
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
ZoneProtectionProfileLocationTemplateStack, ZoneProtectionProfileLocationTemplateStackArgs
- Name string
- Specific Panorama template stack
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template stack
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template stack
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template stack
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template stack
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template stack
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
ZoneProtectionProfileNetInspection, ZoneProtectionProfileNetInspectionArgs
ZoneProtectionProfileNetInspectionPredefinedRule, ZoneProtectionProfileNetInspectionPredefinedRuleArgs
ZoneProtectionProfileNetInspectionRule, ZoneProtectionProfileNetInspectionRuleArgs
- Name string
- Action string
- Bugtraqs List<string>
- Cves List<string>
- Enable bool
- Exempt
Ips List<ZoneProtection Profile Net Inspection Rule Exempt Ip> - Icmp
Unreachable bool - send icmp unreachable packets if packet is dropped
- Log
Interval double - interval to log matching packet
- Log
Severity string - log severity when credential matched
- Packet
Capture string - References List<string>
- Signature
Zone
Protection Profile Net Inspection Rule Signature - Threat
Id double - threat id range \n\n and \n\n
- Vendors List<string>
- Name string
- Action string
- Bugtraqs []string
- Cves []string
- Enable bool
- Exempt
Ips []ZoneProtection Profile Net Inspection Rule Exempt Ip - Icmp
Unreachable bool - send icmp unreachable packets if packet is dropped
- Log
Interval float64 - interval to log matching packet
- Log
Severity string - log severity when credential matched
- Packet
Capture string - References []string
- Signature
Zone
Protection Profile Net Inspection Rule Signature - Threat
Id float64 - threat id range \n\n and \n\n
- Vendors []string
- name String
- action String
- bugtraqs List<String>
- cves List<String>
- enable Boolean
- exempt
Ips List<ZoneProtection Profile Net Inspection Rule Exempt Ip> - icmp
Unreachable Boolean - send icmp unreachable packets if packet is dropped
- log
Interval Double - interval to log matching packet
- log
Severity String - log severity when credential matched
- packet
Capture String - references List<String>
- signature
Zone
Protection Profile Net Inspection Rule Signature - threat
Id Double - threat id range \n\n and \n\n
- vendors List<String>
- name string
- action string
- bugtraqs string[]
- cves string[]
- enable boolean
- exempt
Ips ZoneProtection Profile Net Inspection Rule Exempt Ip[] - icmp
Unreachable boolean - send icmp unreachable packets if packet is dropped
- log
Interval number - interval to log matching packet
- log
Severity string - log severity when credential matched
- packet
Capture string - references string[]
- signature
Zone
Protection Profile Net Inspection Rule Signature - threat
Id number - threat id range \n\n and \n\n
- vendors string[]
- name str
- action str
- bugtraqs Sequence[str]
- cves Sequence[str]
- enable bool
- exempt_
ips Sequence[ZoneProtection Profile Net Inspection Rule Exempt Ip] - icmp_
unreachable bool - send icmp unreachable packets if packet is dropped
- log_
interval float - interval to log matching packet
- log_
severity str - log severity when credential matched
- packet_
capture str - references Sequence[str]
- signature
Zone
Protection Profile Net Inspection Rule Signature - threat_
id float - threat id range \n\n and \n\n
- vendors Sequence[str]
- name String
- action String
- bugtraqs List<String>
- cves List<String>
- enable Boolean
- exempt
Ips List<Property Map> - icmp
Unreachable Boolean - send icmp unreachable packets if packet is dropped
- log
Interval Number - interval to log matching packet
- log
Severity String - log severity when credential matched
- packet
Capture String - references List<String>
- signature Property Map
- threat
Id Number - threat id range \n\n and \n\n
- vendors List<String>
ZoneProtectionProfileNetInspectionRuleExemptIp, ZoneProtectionProfileNetInspectionRuleExemptIpArgs
- Name string
- Name string
- name String
- name string
- name str
- name String
ZoneProtectionProfileNetInspectionRuleSignature, ZoneProtectionProfileNetInspectionRuleSignatureArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrCondition, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndCondition, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionArgs
- name String
- operator Property Map
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperator, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorArgs
- Equal
To ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To - Event
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event - Greater
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than - Less
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than - Range
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range
- Equal
To ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To - Event
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event - Greater
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than - Less
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than - Range
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range
- equal
To ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To - event
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event - greater
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than - less
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than - range
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range
- equal
To ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To - event
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event - greater
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than - less
Than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than - range
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range
- equal_
to ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To - event
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event - greater_
than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than - less_
than ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than - range
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualTo, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToArgs
- context Property Map
- negate Boolean
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContext, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextArgs
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp User Defined - Ip6Destination
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Destination Address - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Payload Length - Ip6Source
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Source Address - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Version - Ip
Destination ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Destination Address - Ip
Flag ZoneDf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Df - Ip
Flag ZoneMf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Mf - Ip
Flag ZoneReserved Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Reserved - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Protocol - Ip
Source ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Source Address - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Destination Port - Tcp
Flag ZoneAck Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ack - Tcp
Flag ZoneCwr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Cwr - Tcp
Flag ZoneEce Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ece - Tcp
Flag ZoneFin Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Fin - Tcp
Flag ZonePsh Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Psh - Tcp
Flag ZoneRst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Rst - Tcp
Flag ZoneSyn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Syn - Tcp
Flag ZoneUrg Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Urg - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp User Defined
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp User Defined - Ip6Destination
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Destination Address - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Payload Length - Ip6Source
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Source Address - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Version - Ip
Destination ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Destination Address - Ip
Flag ZoneDf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Df - Ip
Flag ZoneMf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Mf - Ip
Flag ZoneReserved Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Reserved - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Protocol - Ip
Source ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Source Address - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Destination Port - Tcp
Flag ZoneAck Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ack - Tcp
Flag ZoneCwr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Cwr - Tcp
Flag ZoneEce Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ece - Tcp
Flag ZoneFin Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Fin - Tcp
Flag ZonePsh Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Psh - Tcp
Flag ZoneRst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Rst - Tcp
Flag ZoneSyn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Syn - Tcp
Flag ZoneUrg Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Urg - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp User Defined - ip6Destination
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Destination Address - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Payload Length - ip6Source
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Source Address - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Version - ip
Destination ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Destination Address - ip
Flag ZoneDf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Df - ip
Flag ZoneMf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Mf - ip
Flag ZoneReserved Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Reserved - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Protocol - ip
Source ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Source Address - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Destination Port - tcp
Flag ZoneAck Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ack - tcp
Flag ZoneCwr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Cwr - tcp
Flag ZoneEce Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ece - tcp
Flag ZoneFin Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Fin - tcp
Flag ZonePsh Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Psh - tcp
Flag ZoneRst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Rst - tcp
Flag ZoneSyn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Syn - tcp
Flag ZoneUrg Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Urg - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp User Defined - ip6Destination
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Destination Address - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Payload Length - ip6Source
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Source Address - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Version - ip
Destination ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Destination Address - ip
Flag ZoneDf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Df - ip
Flag ZoneMf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Mf - ip
Flag ZoneReserved Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Reserved - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Protocol - ip
Source ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Source Address - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Destination Port - tcp
Flag ZoneAck Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ack - tcp
Flag ZoneCwr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Cwr - tcp
Flag ZoneEce Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ece - tcp
Flag ZoneFin Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Fin - tcp
Flag ZonePsh Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Psh - tcp
Flag ZoneRst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Rst - tcp
Flag ZoneSyn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Syn - tcp
Flag ZoneUrg Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Urg - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp User Defined
- icmp6_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Checksum - icmp6_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Code - icmp6_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6Type - icmp6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp6User Defined - icmp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Checksum - icmp_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Code - icmp_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Id - icmp_
sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Sequence - icmp_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp Type - icmp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Icmp User Defined - ip6_
destination_ Zoneaddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Destination Address - ip6_
flow_ Zonelabel Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Flow Label - ip6_
hop_ Zonelimit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Hop Limit - ip6_
next_ Zoneheader Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Next Header - ip6_
payload_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Payload Length - ip6_
source_ Zoneaddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Source Address - ip6_
traffic_ Zoneclass Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Traffic Class - ip6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6User Defined - ip6_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip6Version - ip_
destination_ Zoneaddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Destination Address - ip_
flag_ Zonedf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Df - ip_
flag_ Zonemf Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Mf - ip_
flag_ Zonereserved Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Flag Reserved - ip_
fragment_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Fragment Offset - ip_
header_ Zonechecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Checksum - ip_
header_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Header Length - ip_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Id - ip_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Length - ip_
option_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Number - ip_
option_ Zonetype Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option Type - ip_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Option User Defined - ip_
protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Protocol - ip_
source_ Zoneaddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Source Address - ip_
tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Tos - ip_
total_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Total Length - ip_
ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Ttl - ip_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip User Defined - ip_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Ip Version - tcp_
acknowledge_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Acknowledge Number - tcp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Checksum - tcp_
data_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Data Offset - tcp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Destination Port - tcp_
flag_ Zoneack Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ack - tcp_
flag_ Zonecwr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Cwr - tcp_
flag_ Zoneece Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Ece - tcp_
flag_ Zonefin Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Fin - tcp_
flag_ Zonepsh Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Psh - tcp_
flag_ Zonerst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Rst - tcp_
flag_ Zonesyn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Syn - tcp_
flag_ Zoneurg Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Flag Urg - tcp_
option_ Zonekind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Kind - tcp_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option Length - tcp_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Option User Defined - tcp_
reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Reserved - tcp_
sequence_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Sequence Number - tcp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Source Port - tcp_
urgent_ Zonepointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Urgent Pointer - tcp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp User Defined - tcp_
window_ Zonesize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Tcp Window Size - udp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Checksum - udp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Destination Port - udp_
length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Length - udp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp Source Port - udp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Equal To Context Udp User Defined
- icmp6Checksum Property Map
- icmp6Code Property Map
- icmp6Type Property Map
- icmp6User
Defined Property Map - icmp
Checksum Property Map - icmp
Code Property Map - icmp
Id Property Map - icmp
Sequence Property Map - icmp
Type Property Map - icmp
User Property MapDefined - ip6Destination
Address Property Map - ip6Flow
Label Property Map - ip6Hop
Limit Property Map - ip6Next
Header Property Map - ip6Payload
Length Property Map - ip6Source
Address Property Map - ip6Traffic
Class Property Map - ip6User
Defined Property Map - ip6Version Property Map
- ip
Destination Property MapAddress - ip
Flag Property MapDf - ip
Flag Property MapMf - ip
Flag Property MapReserved - ip
Fragment Property MapOffset - ip
Header Property MapChecksum - ip
Header Property MapLength - ip
Id Property Map - ip
Option Property MapLength - ip
Option Property MapNumber - ip
Option Property MapType - ip
Option Property MapUser Defined - ip
Protocol Property Map - ip
Source Property MapAddress - ip
Tos Property Map - ip
Total Property MapLength - ip
Ttl Property Map - ip
User Property MapDefined - ip
Version Property Map - tcp
Acknowledge Property MapNumber - tcp
Checksum Property Map - tcp
Data Property MapOffset - tcp
Destination Property MapPort - tcp
Flag Property MapAck - tcp
Flag Property MapCwr - tcp
Flag Property MapEce - tcp
Flag Property MapFin - tcp
Flag Property MapPsh - tcp
Flag Property MapRst - tcp
Flag Property MapSyn - tcp
Flag Property MapUrg - tcp
Option Property MapKind - tcp
Option Property MapLength - tcp
Option Property MapUser Defined - tcp
Reserved Property Map - tcp
Sequence Property MapNumber - tcp
Source Property MapPort - tcp
Urgent Property MapPointer - tcp
User Property MapDefined - tcp
Window Property MapSize - udp
Checksum Property Map - udp
Destination Property MapPort - udp
Length Property Map - udp
Source Property MapPort - udp
User Property MapDefined
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6Checksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6ChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6Code, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6CodeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6Type, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6TypeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpCode, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpCodeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpIdArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpSequence, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpSequenceArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpTypeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIcmpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6DestinationAddress, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6DestinationAddressArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6FlowLabel, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6FlowLabelArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6HopLimit, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6HopLimitArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6NextHeader, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6NextHeaderArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6PayloadLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6PayloadLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6SourceAddress, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6SourceAddressArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6TrafficClass, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6TrafficClassArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6Version, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIp6VersionArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpDestinationAddress, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpDestinationAddressArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagDf, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagDfArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagMf, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagMfArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagReserved, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFlagReservedArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFragmentOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpFragmentOffsetArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpHeaderLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpIdArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionNumberArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionTypeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpProtocol, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpProtocolArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpSourceAddress, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpSourceAddressArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTos, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTosArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTotalLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTotalLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTtl, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpTtlArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpVersion, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextIpVersionArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpAcknowledgeNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpAcknowledgeNumberArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDataOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDataOffsetArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpDestinationPortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagAck, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagAckArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagCwr, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagCwrArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagEce, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagEceArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagFin, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagFinArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagPsh, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagPshArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagRst, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagRstArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagSyn, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagSynArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagUrg, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpFlagUrgArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionKind, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionKindArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpReserved, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpReservedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSequenceNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSequenceNumberArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpSourcePortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUrgentPointer, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUrgentPointerArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpWindowSize, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextTcpWindowSizeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpDestinationPortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpSourcePortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEqualToContextUdpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEvent, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContext, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorEventContextArgs
- Ip6Same
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip6Same Address - Ip
Option ZoneAddext Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Addext - Ip
Option ZoneCipso Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Cipso - Ip
Option ZoneDps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Dps - Ip
Option ZoneEip Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eip - Ip
Option ZoneEncode Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Encode - Ip
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eool - Ip
Option ZoneEsec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Esec - Ip
Option ZoneFinn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Finn - Ip
Option ZoneImitd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Imitd - Ip
Option ZoneLsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Lsr - Ip
Option ZoneMtup Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtup - Ip
Option ZoneMtur Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtur - Ip
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Nop - Ip
Option ZoneQs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Qs - Ip
Option ZoneRr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rr - Ip
Option ZoneRtralt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rtralt - Ip
Option ZoneSdb Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sdb - Ip
Option ZoneSec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sec - Ip
Option ZoneSid Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sid - Ip
Option ZoneSsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ssr - Ip
Option ZoneTr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Tr - Ip
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ts - Ip
Option ZoneUmp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ump - Ip
Option ZoneVisa Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Visa - Ip
Option ZoneZsu Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Zsu - Ip
Same ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Same Address - Tcp
Option ZoneAlt Dat Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Dat - Tcp
Option ZoneAlt Rst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Rst - Tcp
Option ZoneBubba Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Bubba - Tcp
Option ZoneCc Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc - Tcp
Option ZoneCc Echo Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc Echo - Tcp
Option ZoneCc New Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc New - Tcp
Option ZoneCompress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Compress - Tcp
Option ZoneCorrupt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Corrupt - Tcp
Option ZoneEcho Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo - Tcp
Option ZoneEcho Reply Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo Reply - Tcp
Option ZoneEno Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eno - Tcp
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eool - Tcp
Option ZoneFast Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Fast - Tcp
Option ZoneMd5 Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Md5 - Tcp
Option ZoneMptcp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mptcp - Tcp
Option ZoneMss Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mss - Tcp
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Nop - Tcp
Option ZonePartial Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Permit - Tcp
Option ZonePartial Profile Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Profile - Tcp
Option ZoneQs Res Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Qs Res - Tcp
Option ZoneRec Bd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Rec Bd - Tcp
Option ZoneSack Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack - Tcp
Option ZoneSack Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack Permit - Tcp
Option ZoneScps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Scps - Tcp
Option ZoneSkeeter Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Skeeter - Tcp
Option ZoneSnak Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snak - Tcp
Option ZoneSnap Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snap - Tcp
Option ZoneTcp Ao Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Tcp Ao - Tcp
Option ZoneTrailer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Trailer - Tcp
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ts - Tcp
Option ZoneUser Timeout Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option User Timeout - Tcp
Option ZoneWs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ws
- Ip6Same
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip6Same Address - Ip
Option ZoneAddext Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Addext - Ip
Option ZoneCipso Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Cipso - Ip
Option ZoneDps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Dps - Ip
Option ZoneEip Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eip - Ip
Option ZoneEncode Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Encode - Ip
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eool - Ip
Option ZoneEsec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Esec - Ip
Option ZoneFinn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Finn - Ip
Option ZoneImitd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Imitd - Ip
Option ZoneLsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Lsr - Ip
Option ZoneMtup Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtup - Ip
Option ZoneMtur Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtur - Ip
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Nop - Ip
Option ZoneQs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Qs - Ip
Option ZoneRr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rr - Ip
Option ZoneRtralt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rtralt - Ip
Option ZoneSdb Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sdb - Ip
Option ZoneSec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sec - Ip
Option ZoneSid Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sid - Ip
Option ZoneSsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ssr - Ip
Option ZoneTr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Tr - Ip
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ts - Ip
Option ZoneUmp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ump - Ip
Option ZoneVisa Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Visa - Ip
Option ZoneZsu Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Zsu - Ip
Same ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Same Address - Tcp
Option ZoneAlt Dat Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Dat - Tcp
Option ZoneAlt Rst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Rst - Tcp
Option ZoneBubba Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Bubba - Tcp
Option ZoneCc Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc - Tcp
Option ZoneCc Echo Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc Echo - Tcp
Option ZoneCc New Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc New - Tcp
Option ZoneCompress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Compress - Tcp
Option ZoneCorrupt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Corrupt - Tcp
Option ZoneEcho Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo - Tcp
Option ZoneEcho Reply Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo Reply - Tcp
Option ZoneEno Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eno - Tcp
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eool - Tcp
Option ZoneFast Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Fast - Tcp
Option ZoneMd5 Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Md5 - Tcp
Option ZoneMptcp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mptcp - Tcp
Option ZoneMss Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mss - Tcp
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Nop - Tcp
Option ZonePartial Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Permit - Tcp
Option ZonePartial Profile Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Profile - Tcp
Option ZoneQs Res Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Qs Res - Tcp
Option ZoneRec Bd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Rec Bd - Tcp
Option ZoneSack Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack - Tcp
Option ZoneSack Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack Permit - Tcp
Option ZoneScps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Scps - Tcp
Option ZoneSkeeter Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Skeeter - Tcp
Option ZoneSnak Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snak - Tcp
Option ZoneSnap Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snap - Tcp
Option ZoneTcp Ao Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Tcp Ao - Tcp
Option ZoneTrailer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Trailer - Tcp
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ts - Tcp
Option ZoneUser Timeout Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option User Timeout - Tcp
Option ZoneWs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ws
- ip6Same
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip6Same Address - ip
Option ZoneAddext Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Addext - ip
Option ZoneCipso Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Cipso - ip
Option ZoneDps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Dps - ip
Option ZoneEip Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eip - ip
Option ZoneEncode Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Encode - ip
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eool - ip
Option ZoneEsec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Esec - ip
Option ZoneFinn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Finn - ip
Option ZoneImitd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Imitd - ip
Option ZoneLsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Lsr - ip
Option ZoneMtup Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtup - ip
Option ZoneMtur Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtur - ip
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Nop - ip
Option ZoneQs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Qs - ip
Option ZoneRr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rr - ip
Option ZoneRtralt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rtralt - ip
Option ZoneSdb Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sdb - ip
Option ZoneSec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sec - ip
Option ZoneSid Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sid - ip
Option ZoneSsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ssr - ip
Option ZoneTr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Tr - ip
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ts - ip
Option ZoneUmp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ump - ip
Option ZoneVisa Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Visa - ip
Option ZoneZsu Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Zsu - ip
Same ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Same Address - tcp
Option ZoneAlt Dat Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Dat - tcp
Option ZoneAlt Rst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Rst - tcp
Option ZoneBubba Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Bubba - tcp
Option ZoneCc Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc - tcp
Option ZoneCc Echo Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc Echo - tcp
Option ZoneCc New Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc New - tcp
Option ZoneCompress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Compress - tcp
Option ZoneCorrupt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Corrupt - tcp
Option ZoneEcho Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo - tcp
Option ZoneEcho Reply Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo Reply - tcp
Option ZoneEno Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eno - tcp
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eool - tcp
Option ZoneFast Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Fast - tcp
Option ZoneMd5 Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Md5 - tcp
Option ZoneMptcp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mptcp - tcp
Option ZoneMss Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mss - tcp
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Nop - tcp
Option ZonePartial Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Permit - tcp
Option ZonePartial Profile Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Profile - tcp
Option ZoneQs Res Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Qs Res - tcp
Option ZoneRec Bd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Rec Bd - tcp
Option ZoneSack Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack - tcp
Option ZoneSack Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack Permit - tcp
Option ZoneScps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Scps - tcp
Option ZoneSkeeter Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Skeeter - tcp
Option ZoneSnak Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snak - tcp
Option ZoneSnap Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snap - tcp
Option ZoneTcp Ao Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Tcp Ao - tcp
Option ZoneTrailer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Trailer - tcp
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ts - tcp
Option ZoneUser Timeout Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option User Timeout - tcp
Option ZoneWs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ws
- ip6Same
Address ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip6Same Address - ip
Option ZoneAddext Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Addext - ip
Option ZoneCipso Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Cipso - ip
Option ZoneDps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Dps - ip
Option ZoneEip Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eip - ip
Option ZoneEncode Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Encode - ip
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eool - ip
Option ZoneEsec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Esec - ip
Option ZoneFinn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Finn - ip
Option ZoneImitd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Imitd - ip
Option ZoneLsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Lsr - ip
Option ZoneMtup Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtup - ip
Option ZoneMtur Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtur - ip
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Nop - ip
Option ZoneQs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Qs - ip
Option ZoneRr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rr - ip
Option ZoneRtralt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rtralt - ip
Option ZoneSdb Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sdb - ip
Option ZoneSec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sec - ip
Option ZoneSid Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sid - ip
Option ZoneSsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ssr - ip
Option ZoneTr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Tr - ip
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ts - ip
Option ZoneUmp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ump - ip
Option ZoneVisa Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Visa - ip
Option ZoneZsu Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Zsu - ip
Same ZoneAddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Same Address - tcp
Option ZoneAlt Dat Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Dat - tcp
Option ZoneAlt Rst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Rst - tcp
Option ZoneBubba Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Bubba - tcp
Option ZoneCc Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc - tcp
Option ZoneCc Echo Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc Echo - tcp
Option ZoneCc New Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc New - tcp
Option ZoneCompress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Compress - tcp
Option ZoneCorrupt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Corrupt - tcp
Option ZoneEcho Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo - tcp
Option ZoneEcho Reply Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo Reply - tcp
Option ZoneEno Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eno - tcp
Option ZoneEool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eool - tcp
Option ZoneFast Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Fast - tcp
Option ZoneMd5 Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Md5 - tcp
Option ZoneMptcp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mptcp - tcp
Option ZoneMss Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mss - tcp
Option ZoneNop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Nop - tcp
Option ZonePartial Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Permit - tcp
Option ZonePartial Profile Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Profile - tcp
Option ZoneQs Res Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Qs Res - tcp
Option ZoneRec Bd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Rec Bd - tcp
Option ZoneSack Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack - tcp
Option ZoneSack Permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack Permit - tcp
Option ZoneScps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Scps - tcp
Option ZoneSkeeter Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Skeeter - tcp
Option ZoneSnak Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snak - tcp
Option ZoneSnap Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snap - tcp
Option ZoneTcp Ao Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Tcp Ao - tcp
Option ZoneTrailer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Trailer - tcp
Option ZoneTs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ts - tcp
Option ZoneUser Timeout Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option User Timeout - tcp
Option ZoneWs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ws
- ip6_
same_ Zoneaddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip6Same Address - ip_
option_ Zoneaddext Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Addext - ip_
option_ Zonecipso Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Cipso - ip_
option_ Zonedps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Dps - ip_
option_ Zoneeip Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eip - ip_
option_ Zoneencode Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Encode - ip_
option_ Zoneeool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Eool - ip_
option_ Zoneesec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Esec - ip_
option_ Zonefinn Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Finn - ip_
option_ Zoneimitd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Imitd - ip_
option_ Zonelsr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Lsr - ip_
option_ Zonemtup Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtup - ip_
option_ Zonemtur Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Mtur - ip_
option_ Zonenop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Nop - ip_
option_ Zoneqs Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Qs - ip_
option_ Zonerr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rr - ip_
option_ Zonertralt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Rtralt - ip_
option_ Zonesdb Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sdb - ip_
option_ Zonesec Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sec - ip_
option_ Zonesid Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Sid - ip_
option_ Zonessr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ssr - ip_
option_ Zonetr Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Tr - ip_
option_ Zonets Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ts - ip_
option_ Zoneump Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Ump - ip_
option_ Zonevisa Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Visa - ip_
option_ Zonezsu Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Option Zsu - ip_
same_ Zoneaddress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Ip Same Address - tcp_
option_ Zonealt_ dat Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Dat - tcp_
option_ Zonealt_ rst Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Alt Rst - tcp_
option_ Zonebubba Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Bubba - tcp_
option_ Zonecc Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc - tcp_
option_ Zonecc_ echo Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc Echo - tcp_
option_ Zonecc_ new Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Cc New - tcp_
option_ Zonecompress Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Compress - tcp_
option_ Zonecorrupt Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Corrupt - tcp_
option_ Zoneecho Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo - tcp_
option_ Zoneecho_ reply Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Echo Reply - tcp_
option_ Zoneeno Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eno - tcp_
option_ Zoneeool Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Eool - tcp_
option_ Zonefast Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Fast - tcp_
option_ Zonemd5 Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Md5 - tcp_
option_ Zonemptcp Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mptcp - tcp_
option_ Zonemss Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Mss - tcp_
option_ Zonenop Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Nop - tcp_
option_ Zonepartial_ permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Permit - tcp_
option_ Zonepartial_ profile Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Partial Profile - tcp_
option_ Zoneqs_ res Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Qs Res - tcp_
option_ Zonerec_ bd Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Rec Bd - tcp_
option_ Zonesack Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack - tcp_
option_ Zonesack_ permit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Sack Permit - tcp_
option_ Zonescps Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Scps - tcp_
option_ Zoneskeeter Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Skeeter - tcp_
option_ Zonesnak Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snak - tcp_
option_ Zonesnap Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Snap - tcp_
option_ Zonetcp_ ao Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Tcp Ao - tcp_
option_ Zonetrailer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Trailer - tcp_
option_ Zonets Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ts - tcp_
option_ Zoneuser_ timeout Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option User Timeout - tcp_
option_ Zonews Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Event Context Tcp Option Ws
- ip6Same
Address Property Map - ip
Option Property MapAddext - ip
Option Property MapCipso - ip
Option Property MapDps - ip
Option Property MapEip - ip
Option Property MapEncode - ip
Option Property MapEool - ip
Option Property MapEsec - ip
Option Property MapFinn - ip
Option Property MapImitd - ip
Option Property MapLsr - ip
Option Property MapMtup - ip
Option Property MapMtur - ip
Option Property MapNop - ip
Option Property MapQs - ip
Option Property MapRr - ip
Option Property MapRtralt - ip
Option Property MapSdb - ip
Option Property MapSec - ip
Option Property MapSid - ip
Option Property MapSsr - ip
Option Property MapTr - ip
Option Property MapTs - ip
Option Property MapUmp - ip
Option Property MapVisa - ip
Option Property MapZsu - ip
Same Property MapAddress - tcp
Option Property MapAlt Dat - tcp
Option Property MapAlt Rst - tcp
Option Property MapBubba - tcp
Option Property MapCc - tcp
Option Property MapCc Echo - tcp
Option Property MapCc New - tcp
Option Property MapCompress - tcp
Option Property MapCorrupt - tcp
Option Property MapEcho - tcp
Option Property MapEcho Reply - tcp
Option Property MapEno - tcp
Option Property MapEool - tcp
Option Property MapFast - tcp
Option Property MapMd5 - tcp
Option Property MapMptcp - tcp
Option Property MapMss - tcp
Option Property MapNop - tcp
Option Property MapPartial Permit - tcp
Option Property MapPartial Profile - tcp
Option Property MapQs Res - tcp
Option Property MapRec Bd - tcp
Option Property MapSack - tcp
Option Property MapSack Permit - tcp
Option Property MapScps - tcp
Option Property MapSkeeter - tcp
Option Property MapSnak - tcp
Option Property MapSnap - tcp
Option Property MapTcp Ao - tcp
Option Property MapTrailer - tcp
Option Property MapTs - tcp
Option Property MapUser Timeout - tcp
Option Property MapWs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThan, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContext, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextArgs
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp User Defined - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Payload Length - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Version - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Protocol - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Destination Port - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp User Defined
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp User Defined - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Payload Length - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Version - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Protocol - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Destination Port - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp User Defined - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Payload Length - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Version - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Protocol - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Destination Port - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp User Defined - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Payload Length - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Version - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Protocol - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Destination Port - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp User Defined
- icmp6_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Checksum - icmp6_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Code - icmp6_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6Type - icmp6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp6User Defined - icmp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Checksum - icmp_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Code - icmp_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Id - icmp_
sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Sequence - icmp_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp Type - icmp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Icmp User Defined - ip6_
flow_ Zonelabel Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Flow Label - ip6_
hop_ Zonelimit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Hop Limit - ip6_
next_ Zoneheader Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Next Header - ip6_
payload_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Payload Length - ip6_
traffic_ Zoneclass Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Traffic Class - ip6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6User Defined - ip6_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip6Version - ip_
fragment_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Fragment Offset - ip_
header_ Zonechecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Checksum - ip_
header_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Header Length - ip_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Id - ip_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Length - ip_
option_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Number - ip_
option_ Zonetype Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option Type - ip_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Option User Defined - ip_
protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Protocol - ip_
tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Tos - ip_
total_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Total Length - ip_
ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Ttl - ip_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip User Defined - ip_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Ip Version - tcp_
acknowledge_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Acknowledge Number - tcp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Checksum - tcp_
data_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Data Offset - tcp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Destination Port - tcp_
option_ Zonekind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Kind - tcp_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option Length - tcp_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Option User Defined - tcp_
reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Reserved - tcp_
sequence_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Sequence Number - tcp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Source Port - tcp_
urgent_ Zonepointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Urgent Pointer - tcp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp User Defined - tcp_
window_ Zonesize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Tcp Window Size - udp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Checksum - udp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Destination Port - udp_
length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Length - udp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp Source Port - udp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Greater Than Context Udp User Defined
- icmp6Checksum Property Map
- icmp6Code Property Map
- icmp6Type Property Map
- icmp6User
Defined Property Map - icmp
Checksum Property Map - icmp
Code Property Map - icmp
Id Property Map - icmp
Sequence Property Map - icmp
Type Property Map - icmp
User Property MapDefined - ip6Flow
Label Property Map - ip6Hop
Limit Property Map - ip6Next
Header Property Map - ip6Payload
Length Property Map - ip6Traffic
Class Property Map - ip6User
Defined Property Map - ip6Version Property Map
- ip
Fragment Property MapOffset - ip
Header Property MapChecksum - ip
Header Property MapLength - ip
Id Property Map - ip
Option Property MapLength - ip
Option Property MapNumber - ip
Option Property MapType - ip
Option Property MapUser Defined - ip
Protocol Property Map - ip
Tos Property Map - ip
Total Property MapLength - ip
Ttl Property Map - ip
User Property MapDefined - ip
Version Property Map - tcp
Acknowledge Property MapNumber - tcp
Checksum Property Map - tcp
Data Property MapOffset - tcp
Destination Property MapPort - tcp
Option Property MapKind - tcp
Option Property MapLength - tcp
Option Property MapUser Defined - tcp
Reserved Property Map - tcp
Sequence Property MapNumber - tcp
Source Property MapPort - tcp
Urgent Property MapPointer - tcp
User Property MapDefined - tcp
Window Property MapSize - udp
Checksum Property Map - udp
Destination Property MapPort - udp
Length Property Map - udp
Source Property MapPort - udp
User Property MapDefined
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6Checksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6ChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6Code, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6CodeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6Type, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6TypeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpCode, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpCodeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpIdArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpSequence, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpSequenceArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpTypeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIcmpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6FlowLabel, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6FlowLabelArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6HopLimit, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6HopLimitArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6NextHeader, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6NextHeaderArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6PayloadLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6PayloadLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6TrafficClass, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6TrafficClassArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6Version, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIp6VersionArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpFragmentOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpFragmentOffsetArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpHeaderLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpIdArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionNumberArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionTypeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpProtocol, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpProtocolArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTos, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTosArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTotalLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTotalLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTtl, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpTtlArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpVersion, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextIpVersionArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpAcknowledgeNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpAcknowledgeNumberArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDataOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDataOffsetArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpDestinationPortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionKind, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionKindArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpReserved, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpReservedArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSequenceNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSequenceNumberArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpSourcePortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUrgentPointer, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUrgentPointerArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpWindowSize, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextTcpWindowSizeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpDestinationPortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpSourcePortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorGreaterThanContextUdpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThan, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContext, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextArgs
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp User Defined - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Payload Length - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Version - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Protocol - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Destination Port - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp User Defined
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp User Defined - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Payload Length - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Version - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Protocol - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Destination Port - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp User Defined - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Payload Length - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Version - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Protocol - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Destination Port - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp User Defined - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Payload Length - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Version - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Protocol - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Destination Port - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp User Defined
- icmp6_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Checksum - icmp6_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Code - icmp6_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6Type - icmp6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp6User Defined - icmp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Checksum - icmp_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Code - icmp_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Id - icmp_
sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Sequence - icmp_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp Type - icmp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Icmp User Defined - ip6_
flow_ Zonelabel Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Flow Label - ip6_
hop_ Zonelimit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Hop Limit - ip6_
next_ Zoneheader Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Next Header - ip6_
payload_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Payload Length - ip6_
traffic_ Zoneclass Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Traffic Class - ip6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6User Defined - ip6_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip6Version - ip_
fragment_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Fragment Offset - ip_
header_ Zonechecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Checksum - ip_
header_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Header Length - ip_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Id - ip_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Length - ip_
option_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Number - ip_
option_ Zonetype Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option Type - ip_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Option User Defined - ip_
protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Protocol - ip_
tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Tos - ip_
total_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Total Length - ip_
ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Ttl - ip_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip User Defined - ip_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Ip Version - tcp_
acknowledge_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Acknowledge Number - tcp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Checksum - tcp_
data_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Data Offset - tcp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Destination Port - tcp_
option_ Zonekind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Kind - tcp_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option Length - tcp_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Option User Defined - tcp_
reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Reserved - tcp_
sequence_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Sequence Number - tcp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Source Port - tcp_
urgent_ Zonepointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Urgent Pointer - tcp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp User Defined - tcp_
window_ Zonesize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Tcp Window Size - udp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Checksum - udp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Destination Port - udp_
length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Length - udp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp Source Port - udp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Less Than Context Udp User Defined
- icmp6Checksum Property Map
- icmp6Code Property Map
- icmp6Type Property Map
- icmp6User
Defined Property Map - icmp
Checksum Property Map - icmp
Code Property Map - icmp
Id Property Map - icmp
Sequence Property Map - icmp
Type Property Map - icmp
User Property MapDefined - ip6Flow
Label Property Map - ip6Hop
Limit Property Map - ip6Next
Header Property Map - ip6Payload
Length Property Map - ip6Traffic
Class Property Map - ip6User
Defined Property Map - ip6Version Property Map
- ip
Fragment Property MapOffset - ip
Header Property MapChecksum - ip
Header Property MapLength - ip
Id Property Map - ip
Option Property MapLength - ip
Option Property MapNumber - ip
Option Property MapType - ip
Option Property MapUser Defined - ip
Protocol Property Map - ip
Tos Property Map - ip
Total Property MapLength - ip
Ttl Property Map - ip
User Property MapDefined - ip
Version Property Map - tcp
Acknowledge Property MapNumber - tcp
Checksum Property Map - tcp
Data Property MapOffset - tcp
Destination Property MapPort - tcp
Option Property MapKind - tcp
Option Property MapLength - tcp
Option Property MapUser Defined - tcp
Reserved Property Map - tcp
Sequence Property MapNumber - tcp
Source Property MapPort - tcp
Urgent Property MapPointer - tcp
User Property MapDefined - tcp
Window Property MapSize - udp
Checksum Property Map - udp
Destination Property MapPort - udp
Length Property Map - udp
Source Property MapPort - udp
User Property MapDefined
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6Checksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6ChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6Code, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6CodeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6Type, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6TypeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpCode, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpCodeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpIdArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpSequence, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpSequenceArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpTypeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIcmpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6FlowLabel, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6FlowLabelArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6HopLimit, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6HopLimitArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6NextHeader, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6NextHeaderArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6PayloadLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6PayloadLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6TrafficClass, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6TrafficClassArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6Version, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIp6VersionArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpFragmentOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpFragmentOffsetArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpHeaderLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpIdArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionNumberArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionTypeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpProtocol, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpProtocolArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTos, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTosArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTotalLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTotalLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTtl, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpTtlArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpVersion, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextIpVersionArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpAcknowledgeNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpAcknowledgeNumberArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDataOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDataOffsetArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpDestinationPortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionKind, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionKindArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpReserved, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpReservedArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSequenceNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSequenceNumberArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpSourcePortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUrgentPointer, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUrgentPointerArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpWindowSize, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextTcpWindowSizeArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpChecksumArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpDestinationPortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpLengthArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpSourcePortArgs
- Value double
- Value float64
- value Double
- value number
- value float
- value Number
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorLessThanContextUdpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRange, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContext, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextArgs
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp User Defined - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Payload Length - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Version - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Protocol - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Destination Port - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp User Defined
- Icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Checksum - Icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Code - Icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Type - Icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6User Defined - Icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Checksum - Icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Code - Icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Id - Icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Sequence - Icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Type - Icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp User Defined - Ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Flow Label - Ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Hop Limit - Ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Next Header - Ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Payload Length - Ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Traffic Class - Ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6User Defined - Ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Version - Ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Fragment Offset - Ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Checksum - Ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Length - Ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Id - Ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Length - Ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Number - Ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Type - Ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option User Defined - Ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Protocol - Ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Tos - Ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Total Length - Ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Ttl - Ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip User Defined - Ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Version - Tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Acknowledge Number - Tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Checksum - Tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Data Offset - Tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Destination Port - Tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Kind - Tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Length - Tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option User Defined - Tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Reserved - Tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Sequence Number - Tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Source Port - Tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Urgent Pointer - Tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp User Defined - Tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Window Size - Udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Checksum - Udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Destination Port - Udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Length - Udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Source Port - Udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp User Defined - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Payload Length - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Version - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Protocol - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Destination Port - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp User Defined
- icmp6Checksum
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Checksum - icmp6Code
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Code - icmp6Type
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Type - icmp6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6User Defined - icmp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Checksum - icmp
Code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Code - icmp
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Id - icmp
Sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Sequence - icmp
Type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Type - icmp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp User Defined - ip6Flow
Label ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Flow Label - ip6Hop
Limit ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Hop Limit - ip6Next
Header ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Next Header - ip6Payload
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Payload Length - ip6Traffic
Class ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Traffic Class - ip6User
Defined ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6User Defined - ip6Version
Zone
Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Version - ip
Fragment ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Fragment Offset - ip
Header ZoneChecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Checksum - ip
Header ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Length - ip
Id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Id - ip
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Length - ip
Option ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Number - ip
Option ZoneType Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Type - ip
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option User Defined - ip
Protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Protocol - ip
Tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Tos - ip
Total ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Total Length - ip
Ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Ttl - ip
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip User Defined - ip
Version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Version - tcp
Acknowledge ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Acknowledge Number - tcp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Checksum - tcp
Data ZoneOffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Data Offset - tcp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Destination Port - tcp
Option ZoneKind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Kind - tcp
Option ZoneLength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Length - tcp
Option ZoneUser Defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option User Defined - tcp
Reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Reserved - tcp
Sequence ZoneNumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Sequence Number - tcp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Source Port - tcp
Urgent ZonePointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Urgent Pointer - tcp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp User Defined - tcp
Window ZoneSize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Window Size - udp
Checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Checksum - udp
Destination ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Destination Port - udp
Length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Length - udp
Source ZonePort Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Source Port - udp
User ZoneDefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp User Defined
- icmp6_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Checksum - icmp6_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Code - icmp6_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6Type - icmp6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp6User Defined - icmp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Checksum - icmp_
code ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Code - icmp_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Id - icmp_
sequence ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Sequence - icmp_
type ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp Type - icmp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Icmp User Defined - ip6_
flow_ Zonelabel Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Flow Label - ip6_
hop_ Zonelimit Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Hop Limit - ip6_
next_ Zoneheader Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Next Header - ip6_
payload_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Payload Length - ip6_
traffic_ Zoneclass Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Traffic Class - ip6_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6User Defined - ip6_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip6Version - ip_
fragment_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Fragment Offset - ip_
header_ Zonechecksum Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Checksum - ip_
header_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Header Length - ip_
id ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Id - ip_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Length - ip_
option_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Number - ip_
option_ Zonetype Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option Type - ip_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Option User Defined - ip_
protocol ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Protocol - ip_
tos ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Tos - ip_
total_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Total Length - ip_
ttl ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Ttl - ip_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip User Defined - ip_
version ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Ip Version - tcp_
acknowledge_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Acknowledge Number - tcp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Checksum - tcp_
data_ Zoneoffset Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Data Offset - tcp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Destination Port - tcp_
option_ Zonekind Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Kind - tcp_
option_ Zonelength Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option Length - tcp_
option_ Zoneuser_ defined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Option User Defined - tcp_
reserved ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Reserved - tcp_
sequence_ Zonenumber Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Sequence Number - tcp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Source Port - tcp_
urgent_ Zonepointer Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Urgent Pointer - tcp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp User Defined - tcp_
window_ Zonesize Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Tcp Window Size - udp_
checksum ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Checksum - udp_
destination_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Destination Port - udp_
length ZoneProtection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Length - udp_
source_ Zoneport Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp Source Port - udp_
user_ Zonedefined Protection Profile Net Inspection Rule Signature Or Condition And Condition Operator Range Context Udp User Defined
- icmp6Checksum Property Map
- icmp6Code Property Map
- icmp6Type Property Map
- icmp6User
Defined Property Map - icmp
Checksum Property Map - icmp
Code Property Map - icmp
Id Property Map - icmp
Sequence Property Map - icmp
Type Property Map - icmp
User Property MapDefined - ip6Flow
Label Property Map - ip6Hop
Limit Property Map - ip6Next
Header Property Map - ip6Payload
Length Property Map - ip6Traffic
Class Property Map - ip6User
Defined Property Map - ip6Version Property Map
- ip
Fragment Property MapOffset - ip
Header Property MapChecksum - ip
Header Property MapLength - ip
Id Property Map - ip
Option Property MapLength - ip
Option Property MapNumber - ip
Option Property MapType - ip
Option Property MapUser Defined - ip
Protocol Property Map - ip
Tos Property Map - ip
Total Property MapLength - ip
Ttl Property Map - ip
User Property MapDefined - ip
Version Property Map - tcp
Acknowledge Property MapNumber - tcp
Checksum Property Map - tcp
Data Property MapOffset - tcp
Destination Property MapPort - tcp
Option Property MapKind - tcp
Option Property MapLength - tcp
Option Property MapUser Defined - tcp
Reserved Property Map - tcp
Sequence Property MapNumber - tcp
Source Property MapPort - tcp
Urgent Property MapPointer - tcp
User Property MapDefined - tcp
Window Property MapSize - udp
Checksum Property Map - udp
Destination Property MapPort - udp
Length Property Map - udp
Source Property MapPort - udp
User Property MapDefined
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6Checksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6ChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6Code, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6CodeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6Type, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6TypeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpCode, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpCodeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpIdArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpSequence, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpSequenceArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpTypeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIcmpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6FlowLabel, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6FlowLabelArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6HopLimit, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6HopLimitArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6NextHeader, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6NextHeaderArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6PayloadLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6PayloadLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6TrafficClass, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6TrafficClassArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6UserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6UserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6Version, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIp6VersionArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpFragmentOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpFragmentOffsetArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpHeaderLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpId, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpIdArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionNumberArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionType, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionTypeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpProtocol, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpProtocolArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTos, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTosArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTotalLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTotalLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTtl, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpTtlArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpVersion, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextIpVersionArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpAcknowledgeNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpAcknowledgeNumberArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDataOffset, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDataOffsetArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpDestinationPortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionKind, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionKindArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpOptionUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpReserved, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpReservedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSequenceNumber, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSequenceNumberArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpSourcePortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUrgentPointer, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUrgentPointerArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpUserDefinedArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpWindowSize, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextTcpWindowSizeArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpChecksum, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpChecksumArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpDestinationPort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpDestinationPortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpLength, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpLengthArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpSourcePort, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpSourcePortArgs
ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpUserDefined, ZoneProtectionProfileNetInspectionRuleSignatureOrConditionAndConditionOperatorRangeContextUdpUserDefinedArgs
ZoneProtectionProfileNonIpProtocol, ZoneProtectionProfileNonIpProtocolArgs
- List
Type string - exclude or include list
- Protocols
List<Zone
Protection Profile Non Ip Protocol Protocol>
- List
Type string - exclude or include list
- Protocols
[]Zone
Protection Profile Non Ip Protocol Protocol
- list
Type String - exclude or include list
- protocols
List<Zone
Protection Profile Non Ip Protocol Protocol>
- list
Type string - exclude or include list
- protocols
Zone
Protection Profile Non Ip Protocol Protocol[]
- list_
type str - exclude or include list
- protocols
Sequence[Zone
Protection Profile Non Ip Protocol Protocol]
- list
Type String - exclude or include list
- protocols List<Property Map>
ZoneProtectionProfileNonIpProtocolProtocol, ZoneProtectionProfileNonIpProtocolProtocolArgs
- name str
- enable bool
- ether_
type str - ether type in 2-byte hex value
ZoneProtectionProfileScan, ZoneProtectionProfileScanArgs
- Name string
- Action
Zone
Protection Profile Scan Action - Interval double
- Threshold double
- Name string
- Action
Zone
Protection Profile Scan Action - Interval float64
- Threshold float64
- name String
- action
Zone
Protection Profile Scan Action - interval Double
- threshold Double
- name string
- action
Zone
Protection Profile Scan Action - interval number
- threshold number
- name str
- action
Zone
Protection Profile Scan Action - interval float
- threshold float
- name String
- action Property Map
- interval Number
- threshold Number
ZoneProtectionProfileScanAction, ZoneProtectionProfileScanActionArgs
ZoneProtectionProfileScanActionBlockIp, ZoneProtectionProfileScanActionBlockIpArgs
ZoneProtectionProfileScanWhiteList, ZoneProtectionProfileScanWhiteListArgs
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panosTerraform Provider.
published on Tuesday, Apr 28, 2026 by paloaltonetworks
