BgpSessionResponse

data class BgpSessionResponse(val maxPrefixesAdvertisedV4: Int? = null, val maxPrefixesAdvertisedV6: Int? = null, val md5AuthenticationKey: String? = null, val microsoftSessionIPv4Address: String? = null, val microsoftSessionIPv6Address: String? = null, val peerSessionIPv4Address: String? = null, val peerSessionIPv6Address: String? = null, val sessionPrefixV4: String? = null, val sessionPrefixV6: String? = null, val sessionStateV4: String, val sessionStateV6: String)

The properties that define a BGP session.

Constructors

Link copied to clipboard
constructor(maxPrefixesAdvertisedV4: Int? = null, maxPrefixesAdvertisedV6: Int? = null, md5AuthenticationKey: String? = null, microsoftSessionIPv4Address: String? = null, microsoftSessionIPv6Address: String? = null, peerSessionIPv4Address: String? = null, peerSessionIPv6Address: String? = null, sessionPrefixV4: String? = null, sessionPrefixV6: String? = null, sessionStateV4: String, sessionStateV6: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The maximum number of prefixes advertised over the IPv4 session.

Link copied to clipboard

The maximum number of prefixes advertised over the IPv6 session.

Link copied to clipboard

The MD5 authentication key of the session.

Link copied to clipboard

The IPv4 session address on Microsoft's end.

Link copied to clipboard

The IPv6 session address on Microsoft's end.

Link copied to clipboard

The IPv4 session address on peer's end.

Link copied to clipboard

The IPv6 session address on peer's end.

Link copied to clipboard
val sessionPrefixV4: String? = null

The IPv4 prefix that contains both ends' IPv4 addresses.

Link copied to clipboard
val sessionPrefixV6: String? = null

The IPv6 prefix that contains both ends' IPv6 addresses.

Link copied to clipboard

The state of the IPv4 session.

Link copied to clipboard

The state of the IPv6 session.