Deploy VPN Profile - Azure P2S Radius Authentication

Copper Contributor

Hello all,

 

I am building a PoC for a client for Azure P2S VPN and I'm stuck on utilizing Intune to deploy the profile properly to Intune managed devices. I have a custom XML which deploys the profile but it is not populating the Virtual Gateway FQDN in the server address field. Once I copy/paste the FQDN to server address, it works fine. Can anyone review the below XML and let me know what changes I would need to make to ensure the FQDN is populated in the profile on a Windows 10 computer? Thank you.

 

 

<?xml version="1.0"?>
<VPNProfile>
  <DnsSuffix>domain.local</DnsSuffix>
  <NativeProfile>
<Servers>azuregateway-<>.vpn.azure.com</Servers>
<NativeProtocolType>IKEv2</NativeProtocolType>
<Authentication>
  <UserMethod>Eap</UserMethod>
  <Eap>
    <Configuration>
     <EapHostConfig xmlns="http://www.microsoft.com/provisioning/EapHostConfig"><EapMethod><Type xmlns="http://www.microsoft.com/provisioning/EapCommon">26</Type><VendorId xmlns="http://www.microsoft.com/provisioning/EapCommon">0</VendorId><VendorType xmlns="http://www.microsoft.com/provisioning/EapCommon">0</VendorType><AuthorId xmlns="http://www.microsoft.com/provisioning/EapCommon">0</AuthorId></EapMethod><Config xmlns="http://www.microsoft.com/provisioning/EapHostConfig"><Eap xmlns="http://www.microsoft.com/provisioning/BaseEapConnectionPropertiesV1"><Type>26</Type><EapType xmlns="http://www.microsoft.com/provisioning/MsChapV2ConnectionPropertiesV1"><UseWinLogonCredentials>false</UseWinLogonCredentials></EapType></Eap></Config></EapHostConfig>
    </Configuration>
  </Eap>
</Authentication>
<RoutingPolicyType>SplitTunnel</RoutingPolicyType>
  </NativeProfile>
  <AlwaysOn>true</AlwaysOn>
  <RememberCredentials>true</RememberCredentials>
  <TrustedNetworkDetection></TrustedNetworkDetection>
  <DomainNameInformation>
<DomainName>domain.local</DomainName>
<DnsServers>10.x.x.x</DnsServers>
</DomainNameInformation>
</VPNProfile>
0 Replies