我无法使用PowerShell cmdlet连接到VPN。我使用' rasdial'从构建代理连接到vpn,以便我们可以触发自动化测试。整个过程是自动化的。
早期相同的rasdial命令 - Rasdial "VPNName"
与vpn的经典模型(ASM)完美配合。但是,在我迁移到ARM之后,我正面临着这个问题。但是通过UI,即点击连接到vpn的按钮工作正常,但我们需要通过脚本连接。
我收到了一条消息 -
此系统不支持此功能。
注意:我正在关注此帖子https://dzone.com/articles/deconstructing-azure-point
相同的解决方法在ASM中工作但在ARM中没有工作。什么可以是另一种解决方法或修复此问题?
我使用下面的脚本来创建和下载VPN包。我不确定我在脚本中遗漏了导致此问题的内容 -
$VNetName = "MYVPN"
$SubName = "Subnet-1"
$GWSubName = "GatewaySubnet"
$VNetPrefix1 = "15.3.0.0/16"
$SubPrefix = "15.3.1.0/24"
$GWSubPrefix = "15.3.200.0/26"
$VPNClientAddressPool = "158.17.201.0/24"
$RG = "VMsRG"
$Location = "West Europe"
$DNS = "15.3.0.0"
$GWName = "GateWay"
$GWIPName = "GateWayIP"
$GWIPconfName = "GateWayIPConfig"
$P2SRootCertName = "XXXXX.cer"
$DeployUserName = "atf@hotmail.com"
$DeployUserPassword = "XXXXX"
$Azurepwd = ConvertTo-SecureString $DeployUserPassword -AsPlainText -Force
$AzureCredential = new-object -typename System.Management.Automation.PSCredential -argumentlist $DeployUserName, $Azurepwd
Add-AzureRmAccount -credential $AzureCredential -SubscriptionName Development
New-AzureRmResourceGroup -Name $RG -Location $Location
$fesub = New-AzureRmVirtualNetworkSubnetConfig -Name $SubName -AddressPrefix $SubPrefix
$gwsub = New-AzureRmVirtualNetworkSubnetConfig -Name $GWSubName -AddressPrefix $GWSubPrefix
New-AzureRmVirtualNetwork -Name $VNetName -ResourceGroupName $RG -Location $Location -AddressPrefix $VNetPrefix1 -Subnet $fesub, $gwsub -DnsServer $DNS
$vnet = Get-AzureRmVirtualNetwork -Name $VNetName -ResourceGroupName $RG
$subnet = Get-AzureRmVirtualNetworkSubnetConfig -Name "GatewaySubnet" -VirtualNetwork $vnet
$pip = New-AzureRmPublicIpAddress -Name $GWIPName -ResourceGroupName $RG -Location $Location -AllocationMethod dynamic
$ipconf = New-AzureRmVirtualNetworkGatewayIpConfig -Name $GWIPconfName -Subnet $subnet -PublicIpAddress $pip
$MyP2SRootCertPubKeyBase64 = "XXXXX"
$p2srootcert = New-AzureRmVpnClientRootCertificate -Name "P2SVNETRootCertName" -PublicCertData $MyP2SRootCertPubKeyBase64
New-AzureRmVirtualNetworkGateway -Name $GWName -ResourceGroupName $RG -Location $Location -IpConfigurations $ipconf -GatewayType Vpn -VpnType RouteBased -EnableBgp $false -GatewaySku Standard -VpnClientAddressPool $VPNClientAddressPool -VpnClientRootCertificates $p2srootcert
Get-AzureRmVpnClientPackage -ResourceGroupName $RG -VirtualNetworkGatewayName $GWName -ProcessorArchitecture Amd64
因为我能够使用GUI连接。我希望脚本正在做它的工作。
答案 0 :(得分:1)
4个月后,我得到了MS的回复(因为我为此提出了一张票)。 他们告诉Rasdial直到日期才支持Azure VPN客户端软件包。此外,即使在解构 - 天蓝点到站点 - vpn缺乏添加路线之后,应明确添加路线。
作为解决方法,我执行了博客中提供的步骤 - http://www.diaryofaninja.com/blog/2013/11/27/deconstructing-the-azure-point-to-site-vpn-for-command-line-usage
然而,添加路线的最后一部分有点复杂。因此,为了添加路线,我创建了自己的PS脚本 -
$Subnet = @("10.0.1.0", "10.0.2.0","10.0.3.0")
$VPNClientAddressPool = "x.x.x"
$Mask = "255.255.0.0"
$azureIpAddress = ""
$VPNCmd = "MYVPNName"
这里x.x.x是可以在VPN的“GateWay - 点到站点配置”中找到的3个八位字节 -
$routeExists = route print | findstr $VPNClientAddressPool
if($routeExists)
{
route delete $Subnet
}
rasdial $VPNCmd > $null
$azureIPAddress = ipconfig | findstr $VPNClientAddressPool
if($azureIPAddress -ne $null)
{
$azureIpAddress = $azureIpAddress.Split(": ")
$azureIpAddress = $azureIpAddress[$azureIpAddress.Length-1]
$azureIpAddress = $azureIpAddress.Trim()
route add $Subnet MASK $Mask $azureIPAddress
}
这解决了我的目的。基本上你只需要照顾路线添加部分。
答案 1 :(得分:0)
您的PowerShell脚本似乎没问题(我没有尝试登录和资源组件,但其他所有内容都来自$ fesub。)除了底部的第三行。您当前拥有的-Name标记为" P2SVNETRootCertName"需要与$ P2SRootCertName相同。有关更多信息,请参阅Azure文档:https://azure.microsoft.com/en-us/documentation/articles/vpn-gateway-howto-point-to-site-rm-ps/
至于Rasdial,另一篇StackOverflow帖子回答了这个问题:Azure Virtual Network Point-to-Site (ex. Azure Connect) autoconnect
-Bridget [MSFT]