Skip to content

Commit 8ee2123

Browse files
authored
Merge pull request #721 from cxznmhdcxz/vpn-gateway-bandwidth
{Network} Vpn gateway bandwidth
2 parents 20a3bc6 + cde209c commit 8ee2123

56 files changed

Lines changed: 32161 additions & 12 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Commands/network/vnet-gateway/_create.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,29 @@ Create a virtual network gateway.
149149
```bash
150150
network vnet-gateway create --gateway-type Vpn --location westus2 --name MyVnetGateway --no-wait --public-ip-addresses myVGPublicIPAddress --resource-group MyResourceGroup --sku Basic --vnet MyVnet --vpn-type PolicyBased
151151
```
152+
153+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
154+
155+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 -->
156+
157+
#### examples
158+
159+
- Create a basic virtual network gateway for site-to-site connectivity.
160+
```bash
161+
network vnet-gateway create -g MyResourceGroup -n MyVnetGateway --public-ip-address MyGatewayIp --vnet MyVnet --gateway-type Vpn --sku VpnGw1 --vpn-type RouteBased --no-wait
162+
```
163+
164+
- Create a basic virtual network gateway that provides point-to-site connectivity with a RADIUS secret that matches what is configured on a RADIUS server.
165+
```bash
166+
network vnet-gateway create -g MyResourceGroup -n MyVnetGateway --public-ip-address MyGatewayIp --vnet MyVnet --gateway-type Vpn --sku VpnGw1 --vpn-type RouteBased --address-prefixes 40.1.0.0/24 --client-protocol IkeV2 SSTP --radius-secret 111_aaa --radius-server 30.1.1.15 --vpn-gateway-generation Generation1
167+
```
168+
169+
- Create a basic virtual network gateway with multi authentication
170+
```bash
171+
network vnet-gateway create -g MyResourceGroup -n MyVnetGateway --public-ip-address MyGatewayIp --vnet MyVnet --gateway-type Vpn --sku VpnGw1 --vpn-type RouteBased --address-prefixes 40.1.0.0/24 --client-protocol OpenVPN --radius-secret 111_aaa --radius-server 30.1.1.15 --aad-issuer https://sts.windows.net/00000-000000-00000-0000-000/ --aad-tenant https://login.microsoftonline.com/000 --aad-audience 0000-000 --root-cert-name root-cert --root-cert-data "root-cert.cer" --vpn-auth-type AAD Certificate Radius
172+
```
173+
174+
- Create a virtual network gateway.
175+
```bash
176+
network vnet-gateway create --gateway-type Vpn --location westus2 --name MyVnetGateway --no-wait --public-ip-addresses myVGPublicIPAddress --resource-group MyResourceGroup --sku Basic --vnet MyVnet --vpn-type PolicyBased
177+
```

Commands/network/vnet-gateway/_delete.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,14 @@ In order to delete a Virtual Network Gateway, you must first delete ALL Connecti
7171
```bash
7272
network vnet-gateway delete -g MyResourceGroup -n MyVnetGateway
7373
```
74+
75+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
76+
77+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 -->
78+
79+
#### examples
80+
81+
- Delete a virtual network gateway.
82+
```bash
83+
network vnet-gateway delete -g MyResourceGroup -n MyVnetGateway
84+
```

Commands/network/vnet-gateway/_list.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,14 @@ List virtual network gateways.
6969
```bash
7070
network vnet-gateway list -g MyResourceGroup
7171
```
72+
73+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXM=/2024-07-01.xml) **Stable**
74+
75+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways 2024-07-01 -->
76+
77+
#### examples
78+
79+
- List virtual network gateways in a resource group.
80+
```bash
81+
network vnet-gateway list -g MyResourceGroup
82+
```

Commands/network/vnet-gateway/_show.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,14 @@ Get the details of a virtual network gateway.
6969
```bash
7070
network vnet-gateway show -g MyResourceGroup -n MyVnetGateway
7171
```
72+
73+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
74+
75+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 -->
76+
77+
#### examples
78+
79+
- Get the details of a virtual network gateway.
80+
```bash
81+
network vnet-gateway show -g MyResourceGroup -n MyVnetGateway
82+
```

Commands/network/vnet-gateway/_update.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,19 @@ Update a virtual network gateway.
9494
```bash
9595
network vnet-gateway update --address-prefixes 40.1.0.0/24 --client-protocol IkeV2 --name MyVnetGateway --resource-group MyResourceGroup
9696
```
97+
98+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
99+
100+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 -->
101+
102+
#### examples
103+
104+
- Change the SKU of a virtual network gateway.
105+
```bash
106+
network vnet-gateway update -g MyResourceGroup -n MyVnetGateway --sku VpnGw2
107+
```
108+
109+
- Update a virtual network gateway.
110+
```bash
111+
network vnet-gateway update --address-prefixes 40.1.0.0/24 --client-protocol IkeV2 --name MyVnetGateway --resource-group MyResourceGroup
112+
```

Commands/network/vnet-gateway/aad/_assign.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,14 @@ Assign/Update AAD(Azure Active Directory) authentication to a virtual network ga
3636
```bash
3737
network vnet-gateway aad assign --resource-group MyResourceGroup --gateway-name MyVnetGateway --tenant MyAADTenantURI --audience MyAADAudienceId --issuer MyAADIssuerURI
3838
```
39+
40+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
41+
42+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 properties.vpnClientConfiguration -->
43+
44+
#### examples
45+
46+
- Assign AAD authentication to a virtual network gateway
47+
```bash
48+
network vnet-gateway aad assign --resource-group MyResourceGroup --gateway-name MyVnetGateway --tenant MyAADTenantURI --audience MyAADAudienceId --issuer MyAADIssuerURI
49+
```

Commands/network/vnet-gateway/aad/_create.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ test
1515
### [2024-03-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-03-01.xml) **Stable**
1616

1717
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-03-01 properties.vpnClientConfiguration -->
18+
19+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
20+
21+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 properties.vpnClientConfiguration -->

Commands/network/vnet-gateway/aad/_remove.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,14 @@ Remove AAD(Azure Active Directory) authentication from a virtual network gateway
3636
```bash
3737
network vnet-gateway aad remove --resource-group MyResourceGroup --gateway-name MyVnetGateway
3838
```
39+
40+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
41+
42+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 properties.vpnClientConfiguration -->
43+
44+
#### examples
45+
46+
- Remove AAD information
47+
```bash
48+
network vnet-gateway aad remove --resource-group MyResourceGroup --gateway-name MyVnetGateway
49+
```

Commands/network/vnet-gateway/aad/_show.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,14 @@ Show AAD(Azure Active Directory) authentication of a virtual network gateway.
3636
```bash
3737
network vnet-gateway aad show --resource-group MyResourceGroup --gateway-name MyVnetGateway
3838
```
39+
40+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
41+
42+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 properties.vpnClientConfiguration -->
43+
44+
#### examples
45+
46+
- Show AAD information
47+
```bash
48+
network vnet-gateway aad show --resource-group MyResourceGroup --gateway-name MyVnetGateway
49+
```

Commands/network/vnet-gateway/identity/_assign.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ Assign the user or system managed identities.
77
### [2024-03-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-03-01.xml) **Stable**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-03-01 identity -->
10+
11+
### [2024-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ZpcnR1YWxuZXR3b3JrZ2F0ZXdheXMve30=/2024-07-01.xml) **Stable**
12+
13+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/virtualnetworkgateways/{} 2024-07-01 identity -->

0 commit comments

Comments
 (0)