add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,21 @@
# az 网络
> 管理 Azure 网络资源。
> 是 `azure-cli`(也称为 `az`)的一部分。
> 更多信息: <https://learn.microsoft.com/cli/azure/network>。
- 列出在某个区域中用于订阅配额的网络资源:
`az network list-usages`
- 列出订阅中的所有虚拟网络:
`az network vnet list`
- 创建一个虚拟网络:
`az network vnet create --address-prefixes {{10.0.0.0/16}} --name {{vnet}} --resource_group {{group_name}} --subnet-name {{subnet}} --subnet-prefixes {{10.0.0.0/24}}`
- 为网络接口卡启用加速网络:
`az network nic update --accelerated-networking true --name {{nic}} --resource-group {{resource_group}}`