你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
邻居组配置概述
邻居组允许在单个逻辑资源下对终结点(IPv4 或 IPv6)进行分组。 邻居组可用于跨不同的探测终结点发送负载均衡的筛选流量。 可以跨不同的网络 TAP 和网络点击规则使用相同的邻居组。
邻居组的参数
参数 | 说明 | 示例 | 必须 |
---|---|---|---|
resource-group | 包含邻居组的资源组。 | ResourceGroupName | True |
resource-name | 邻居组的名称。 | example-Neighbor | True |
location | 包含邻居组的 Azure 区域。 | eastus | True |
destination | 要转发流量的 Ipv4 或 Ipv6 目标列表。 | 10.10.10.10 | True |
创建邻居组
以下命令创建邻居组:
az networkfabric neighborgroup create \
--resource-group "example-rg" \
--location "westus3" \
--resource-name "example-neighborgroup" \
--destination "{ipv4Addresses:['10.10.10.10']}"
预期输出:
{
"properties": {
"networkTapIds": [
],
"networkTapRuleIds": [
],
"destination": {
"ipv4Addresses": [
"10.10.10.10",
]
},
"provisioningState": "Succeeded",
"annotation": "annotation"
},
"tags": {
"keyID": "KeyValue"
},
"location": "eastus",
"id": "/subscriptions/subscriptionId/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup",
"name": "example-neighborGroup",
"type": "microsoft.managednetworkfabric/neighborGroups",
"systemData": {
"createdBy": "user@mail.com",
"createdByType": "User",
"createdAt": "2023-05-23T05:49:59.193Z",
"lastModifiedBy": "email@address.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2023-05-23T05:49:59.194Z"
}
}
显示邻居组
此命令显示 IP 扩展社区资源:
az networkfabric neighborgroup show \
--resource-group "example-rg" \
--resource-name "example-neighborgroup"
预期输出:
{
"properties": {
"networkTapIds": [
],
"networkTapRuleIds": [
],
"destination": {
"ipv4Addresses": [
"10.10.10.10",
]
},
"provisioningState": "Succeeded",
"annotation": "annotation"
},
"tags": {
"keyID": "KeyValue"
},
"location": "eastus",
"id": "/subscriptions/subscriptionId/resourceGroups/example-rg/providers/Microsoft.ManagedNetworkFabric/neighborGroups/example-neighborGroup",
"name": "example-neighborGroup",
"type": "microsoft.managednetworkfabric/neighborGroups",
"systemData": {
"createdBy": "user@mail.com",
"createdByType": "User",
"createdAt": "2023-05-23T05:49:59.193Z",
"lastModifiedBy": "email@address.com",
"lastModifiedByType": "User",
"lastModifiedAt": "2023-05-23T05:49:59.194Z"
}
}