Table of Contents

Class VpnBgp

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

Vpn Bgp

[DataContract]
public class VpnBgp
Inheritance
VpnBgp
Inherited Members

Properties

AsNumber

An Autonomous System Number (ASN) is required if you are to run BGP and peer with another BGP Speaker outside of the Auto VPN domain. This ASN will be applied to the entire Auto VPN domain. The entire 4-byte ASN range is supported. So, the ASN must be an integer between 1 and 4294967295. When absent, this field is not updated. If no value exists then it defaults to 64512.

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "asNumber")]
public long? AsNumber { get; set; }

Property Value

long?

Enabled

Boolean value to enable or disable the BGP configuration. When BGP is enabled, the asNumber (ASN) will be auto-populated with the preconfigured ASN at other Hubs or a default value if there is no ASN configured.

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "enabled")]
public bool? Enabled { get; set; }

Property Value

bool?

IbgpHoldTimer

The IBGP hold timer in seconds. The IBGP hold timer must be an integer between 12 and 240. When absent, this field is not updated. If no value exists then it defaults to 240.

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "ibgpHoldTimer")]
public int? IbgpHoldTimer { get; set; }

Property Value

int?

Neighbors

List of BGP neighbors. This list replaces the existing set of neighbors. When absent, this field is not updated.

[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "neighbors")]
public List<Neighbor>? Neighbors { get; set; }

Property Value

List<Neighbor>