Skip to content

Commit 4916f2f

Browse files
committed
format
1 parent 3213d20 commit 4916f2f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

articles/vpn-gateway/point-to-site-vpn-client-cert-linux.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,27 @@ Before beginning, verify that you are on the correct article. The following tabl
2525

2626
You can generate client configuration files using PowerShell, or by using the Azure portal. Either method returns the same zip file.
2727

28+
### Generate files using the Azure portal
29+
30+
1. In the Azure portal, navigate to the virtual network gateway for the virtual network that you want to connect to.
31+
1. On the virtual network gateway page, select **Point-to-site configuration** to open the Point-to-site configuration page.
32+
1. At the top of the Point-to-site configuration page, select **Download VPN client**. This doesn't download VPN client software, it generates the configuration package used to configure VPN clients. It takes a few minutes for the client configuration package to generate. During this time, you may not see any indications until the packet has generated.
33+
34+
:::image type="content" source="./media/point-to-site-vpn-client-cert-mac/download-configuration.png" alt-text="Download the VPN client configuration." lightbox="./media/point-to-site-vpn-client-cert-mac/download-configuration.png":::
35+
1. Once the configuration package has been generated, your browser indicates that a client configuration zip file is available. It's named the same name as your gateway.
36+
37+
### Generate files using PowerShell
38+
39+
1. When generating VPN client configuration files, the value for '-AuthenticationMethod' is 'EapTls'. Generate the VPN client configuration files using the following command:
40+
41+
```azurepowershell-interactive
42+
$profile=New-AzVpnClientConfiguration -ResourceGroupName "TestRG" -Name "VNet1GW" -AuthenticationMethod "EapTls"
43+
44+
$profile.VPNProfileSASUrl
45+
```
46+
47+
1. Copy the URL to your browser to download the zip file.
48+
2849
### View the folder and files
2950

3051
Unzip the file to view the following folders:

0 commit comments

Comments
 (0)