Show / Hide Table of Contents

Class DpdConfig

These configuration details are used for dead peer detection (DPD). DPD periodically checks the stability of the connection to the customer premises (CPE), and may be used to detect that the link to the CPE has gone down.

Inheritance
object
DpdConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class DpdConfig

Properties

DpdMode

Declaration
[JsonProperty(PropertyName = "dpdMode")]
[JsonConverter(typeof(StringEnumConverter))]
public DpdConfig.DpdModeEnum? DpdMode { get; set; }
Property Value
Type Description
DpdConfig.DpdModeEnum?

This option defines whether DPD can be initiated from the Oracle side of the connection.

DpdTimeoutInSec

Declaration
[JsonProperty(PropertyName = "dpdTimeoutInSec")]
public int? DpdTimeoutInSec { get; set; }
Property Value
Type Description
int?

DPD timeout in seconds. This sets the longest interval between CPE device health messages before the IPSec connection indicates it has lost contact with the CPE. The default is 20 seconds.

In this article
Back to top