ExpressRouteCircuitPeering
Represents an ExpressRoute peering object attached to an ExpressRoute circuit.
Labels: :ExpressRouteCircuitPeering
Properties:
id- Peering resource ID (primary key)name- Peering nameazureASN- Azure ASN valuepeerASN- Customer/provider ASN valueprimaryPeerAddressPrefix- Primary peering CIDRsecondaryPeerAddressPrefix- Secondary peering CIDRprimaryAzurePort- Primary Azure portsecondaryAzurePort- Secondary Azure portvlanId- VLAN ID used for peeringpeeringType- Peering typestate- Peering state
Relationships
Incoming
- ExpressRouteCircuit →
HAS_PEERING→ ExpressRouteCircuitPeering - Circuit-to-peering linkage
Examples
// List ExpressRoute circuits and their peerings
MATCH (c:ExpressRouteCircuit)-[:HAS_PEERING]->(p:ExpressRouteCircuitPeering)
RETURN c.name, p.name, p.peeringType, p.state