Class RoutingOspfV3
OSPF v3 configuration
[DataContract]
public class RoutingOspfV3
- Inheritance
-
RoutingOspfV3
- Inherited Members
Properties
Areas
OSPF v3 areas
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "areas")]
public List<Area>? Areas { get; set; }
Property Value
DeadTimerInSeconds
Time interval to determine when the peer will be declared inactive/dead. Value must be between 1 and 65535
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "deadTimerInSeconds")]
public int? DeadTimerInSeconds { get; set; }
Property Value
- int?
Enabled
Boolean value to enable or disable V3 OSPF routing. OSPF V3 routing is disabled by default.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "enabled")]
public bool? Enabled { get; set; }
Property Value
- bool?
HelloTimerInSeconds
Time interval in seconds at which hello packet will be sent to OSPF neighbors to maintain connectivity. Value must be between 1 and 255. Default is 10 seconds.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "helloTimerInSeconds")]
public int? HelloTimerInSeconds { get; set; }
Property Value
- int?