Table of Contents

Class SsidLayer3FirewallRule

Namespace
Meraki.Api.Data
Assembly
Meraki.Api.dll

Rule10

[DataContract]
public class SsidLayer3FirewallRule
Inheritance
SsidLayer3FirewallRule
Inherited Members

Properties

Comment

Description of the rule (optional)

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "comment")]
public string? Comment { get; set; }

Property Value

string

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

string

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

string

IpVer

Undocumented IP Version - Observed values so far: 'ipv4' Firewall rules created before the implementation of the ipVer property would have been ipv4 but are returned as null by the API Sending null is interpreted as ipv4 AND ipv6 so this property is now not nullable to avoid ambiguity

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "ipVer")]
public string IpVer { get; set; }

Property Value

string

Policy

'allow' or 'deny' traffic specified by this rule

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "policy")]
public string Policy { get; set; }

Property Value

string

Protocol

The type of protocol (must be 'tcp', 'udp', 'icmp' or 'any')

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "protocol")]
public FirewallProtocol Protocol { get; set; }

Property Value

FirewallProtocol