Table of Contents

Class OspfSettings

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

OSPF settings

[DataContract]
public class OspfSettings
Inheritance
OspfSettings
Inherited Members

Properties

Area

The OSPF area to which this interface should belong. Can be either 'disabled' or the identifier of an existing OSPF area.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "area")]
public string Area { get; set; }

Property Value

string

Cost

The path cost for this interface. Defaults to 1, but can be increased up to 65535 to give lower priority.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "cost")]
public int Cost { get; set; }

Property Value

int

IsPassiveEnabled

When enabled, OSPF will not run on the interface, but the subnet will still be advertised.

[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "isPassiveEnabled")]
public bool IsPassiveEnabled { get; set; }

Property Value

bool