如何在 Azure 虚拟网络网关上更新 BGP ASN?

如何在 Azure 虚拟网络网关上更新 BGP ASN?

我有一个现有的 Azure 虚拟网络网关,我正在尝试重新配置它以用于 BGP,https://azure.microsoft.com/en-us/documentation/articles/vpn-gateway-bgp-resource-manager-ps/

但是,我找不到如何更改默认 ASN。

$gateway.BgpSettingsText目前显示:

{
  "Asn": 65515,
  "BgpPeeringAddress": "10.231.1.254",
  "PeerWeight": 0
}

我在最新的 AzureRm Powershell 中没有看到任何可以让我改变这一点的内容。

有办法改变这种情况吗?或者唯一的解决办法就是Remove-AzureRmVirtualNetworkGateway重新开始?

相关内容