使用 Azure Powershell 下载 OpenVPN 客户端?

使用 Azure Powershell 下载 OpenVPN 客户端?

我正在学习 Azure Powershell,我想使用 Powershell 下载网关的 VPN 客户端文件。根据 Microsoft 的说法,这可以完成,New-AzureRmVpnClientConfiguration但我找不到有关如何下载客户端的详细信息。有人可以指导我解决这个问题吗?

在此处输入图片描述

答案1

您可以使用以下命令来下载 VPN 客户端:

$cert=New-AzureRmVpnClientConfiguration-ResourceGroupName Group1-AuthenticationMethod EAPTLS-Name newGW

$cert.VpnProfileSASUrl

来源:https://babarmunir.wordpress.com/2018/12/30/configure-openvpn-for-azure-point-to-site-vpn-gateway-using-power-shell/

相关内容