expressRoutePorts
Summary
Details
ExpressRoute Direct の両方のリンクの管理状態が有効状態である必要があります
Impact: High Category: High Availability PG Verified: Verified
Description:
Azure ExpressRoute Direct では、「管理状態」はレイヤー 1 リンクの管理状態を示し、リンクが有効か無効かを示し、実質的に物理ポートをオンまたはオフにします。
Potential Benefits:
Ensures optimal connectivity.
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// Azure Resource Graph Query
// Find all Express Route Directs that do not have Admin State of both Links Enabled
resources
| where type == "microsoft.network/expressrouteports"
| where properties['links'][0]['properties']['adminState'] == "Disabled" or properties['links'][1]['properties']['adminState'] == "Disabled"
| project recommendationId = "60077378-7cb1-4b35-89bb-393884d9921d", name, id, tags, param1 = strcat("Link1AdminState: ", properties['links'][0]['properties']['adminState']), param2 = strcat("Link2AdminState: ", properties['links'][1]['properties']['adminState'])
ExpressRoute Direct を過剰にサブスクライブしないようにしてください
Impact: High Category: Scalability PG Verified: Verified
Description:
最大 20 Gbps または 200 Gbps の 10 Gbps または 100 Gbps ExpressRoute Direct リソース上に ExpressRoute 回線をプロビジョニングすることは可能ですが、復元性の観点から推奨されません。 ExpressRoute Direct ポートに障害が発生し、回線が全容量を使用している場合、残りのポートは余分な負荷を処理できません。
Potential Benefits:
Improves resilience during port failures
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// Azure Resource Graph Query
// Find all Express Route Directs that are over subscribed
resources
| where type == "microsoft.network/expressrouteports"
| where toint(properties['provisionedBandwidthInGbps']) > toint(properties['bandwidthInGbps'])
| project recommendationId = "0bee356b-7348-4799-8cab-0c71ffe13018", name, id, tags, param1 = strcat("provisionedBandwidthInGbps: ", properties['provisionedBandwidthInGbps']), param2 = strcat("bandwidthInGbps: ", properties['bandwidthInGbps'])
ExpressRoute ポートの監視とアラートを構成する
Impact: High Category: Monitoring and Alerting PG Verified: Preview
Description:
Network Insights を使用して、ExpressRoute ポートのライト レベル、入出力のビット/秒、回線プロトコルを監視します。 Azure Monitor のベースライン アラートに基づいて、光レベル、入出力のビット/秒、および特定のしきい値を超える回線プロトコルに関するアラートを設定します。
Potential Benefits:
Enhanced network performance and health
Learn More:
ARG Query:
Click the Azure Resource Graph tab to view the query
// under-development