Show / Hide Table of Contents

Class CrossConnectMappingDetails

For use with Oracle Cloud Infrastructure FastConnect. Each {@link VirtualCircuit} runs on one or more cross-connects or cross-connect groups. A CrossConnectMappingDetails contains the properties for an individual cross-connect or cross-connect group associated with a given virtual circuit.
The details includes information about the cross-connect or cross-connect group, the VLAN, and the BGP peering session.

Inheritance
object
CrossConnectMappingDetails
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 CrossConnectMappingDetails

Properties

BgpMd5AuthKey

Declaration
[JsonProperty(PropertyName = "bgpMd5AuthKey")]
public string BgpMd5AuthKey { get; set; }
Property Value
Type Description
string

The key for BGP MD5 authentication. Only applicable if your system requires MD5 authentication. If empty or not set (null), that means you don't use BGP MD5 authentication.

CrossConnectOrCrossConnectGroupId

Declaration
[JsonProperty(PropertyName = "crossConnectOrCrossConnectGroupId")]
public string CrossConnectOrCrossConnectGroupId { get; set; }
Property Value
Type Description
string

The OCID of the cross-connect or cross-connect group for this mapping. Specified by the owner of the cross-connect or cross-connect group (the customer if the customer is colocated with Oracle, or the provider if the customer is connecting via provider).

CustomerBgpPeeringIp

Declaration
[JsonProperty(PropertyName = "customerBgpPeeringIp")]
public string CustomerBgpPeeringIp { get; set; }
Property Value
Type Description
string

The BGP IPv4 address for the router on the other end of the BGP session from Oracle. Specified by the owner of that router. If the session goes from Oracle to a customer, this is the BGP IPv4 address of the customer's edge router. If the session goes from Oracle to a provider, this is the BGP IPv4 address of the provider's edge router. Must use a subnet mask from /28 to /31.
There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses.
Example: 10.0.0.18/31

CustomerBgpPeeringIpv6

Declaration
[JsonProperty(PropertyName = "customerBgpPeeringIpv6")]
public string CustomerBgpPeeringIpv6 { get; set; }
Property Value
Type Description
string

The BGP IPv6 address for the router on the other end of the BGP session from Oracle. Specified by the owner of that router. If the session goes from Oracle to a customer, this is the BGP IPv6 address of the customer's edge router. If the session goes from Oracle to a provider, this is the BGP IPv6 address of the provider's edge router. Only subnet masks from /64 up to /127 are allowed.
There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv6 addresses.
Example: 2001:db8::1/64

Ipv4BgpStatus

Declaration
[JsonProperty(PropertyName = "ipv4BgpStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CrossConnectMappingDetails.Ipv4BgpStatusEnum? Ipv4BgpStatus { get; set; }
Property Value
Type Description
CrossConnectMappingDetails.Ipv4BgpStatusEnum?

The state of the Ipv4 BGP session.

Ipv6BgpStatus

Declaration
[JsonProperty(PropertyName = "ipv6BgpStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CrossConnectMappingDetails.Ipv6BgpStatusEnum? Ipv6BgpStatus { get; set; }
Property Value
Type Description
CrossConnectMappingDetails.Ipv6BgpStatusEnum?

The state of the Ipv6 BGP session.

OciLogicalDeviceName

Declaration
[JsonProperty(PropertyName = "ociLogicalDeviceName")]
public string OciLogicalDeviceName { get; set; }
Property Value
Type Description
string

The FastConnect device that terminates the logical connection.

OracleBgpPeeringIp

Declaration
[JsonProperty(PropertyName = "oracleBgpPeeringIp")]
public string OracleBgpPeeringIp { get; set; }
Property Value
Type Description
string

The IPv4 address for Oracle's end of the BGP session. Must use a subnet mask from /28 to /31. If the session goes from Oracle to a customer's edge router, the customer specifies this information. If the session goes from Oracle to a provider's edge router, the provider specifies this.
There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses.
Example: 10.0.0.19/31

OracleBgpPeeringIpv6

Declaration
[JsonProperty(PropertyName = "oracleBgpPeeringIpv6")]
public string OracleBgpPeeringIpv6 { get; set; }
Property Value
Type Description
string

The IPv6 address for Oracle's end of the BGP session. Only subnet masks from /64 up to /127 are allowed. If the session goes from Oracle to a customer's edge router, the customer specifies this information. If the session goes from Oracle to a provider's edge router, the provider specifies this.
There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv6 addresses.
Example: 2001:db8::2/64

Vlan

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

The number of the specific VLAN (on the cross-connect or cross-connect group) that is assigned to this virtual circuit. Specified by the owner of the cross-connect or cross-connect group (the customer if the customer is colocated with Oracle, or the provider if the customer is connecting via provider).
Example: 200

In this article
Back to top