Class SsidLayer3FirewallRule
Rule10
[DataContract]
public class SsidLayer3FirewallRule
- Inheritance
-
SsidLayer3FirewallRule
- Inherited Members
Constructors
SsidLayer3FirewallRule()
public SsidLayer3FirewallRule()
Properties
Comment
Description of the rule (optional)
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "comment")]
public string? Comment { get; set; }
Property Value
DestinationCidr
Destination IP address (in IP or CIDR notation), a fully-qualified domain name (FQDN, if your network supports it) or 'any'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "destCidr")]
public string DestinationCidr { get; set; }
Property Value
DestinationPort
Destination port (integer in the range 1-65535), a port range (e.g. 8080-9090), or 'any'
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "destPort")]
public string DestinationPort { get; set; }
Property Value
IpVer
IP version to which this rule applies (must be one of 'both', 'ipv4' or 'ipv6'). Defaults to 'both' if not specified. enum = ["both", "ipv4", "ipv6"]
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "ipVer")]
public string IpVer { get; set; }
Property Value
Policy
'allow' or 'deny' traffic specified by this rule
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "policy")]
public string Policy { get; set; }
Property Value
Protocol
The type of protocol (must be 'tcp', 'udp', 'icmp' or 'any')
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "protocol")]
public FirewallProtocol Protocol { get; set; }