From 534e01cd24db619fad0dc2399ee207f428643e42 Mon Sep 17 00:00:00 2001 From: jdeckerMS Date: Tue, 20 Sep 2016 12:10:51 -0700 Subject: [PATCH] stage --- windows/keep-secure/vpn-profile-options.md | 103 ++++++++++++++++++++- 1 file changed, 102 insertions(+), 1 deletion(-) diff --git a/windows/keep-secure/vpn-profile-options.md b/windows/keep-secure/vpn-profile-options.md index 4ec14191b0..1f723a767d 100644 --- a/windows/keep-secure/vpn-profile-options.md +++ b/windows/keep-secure/vpn-profile-options.md @@ -16,7 +16,10 @@ localizationpriority: high - Windows 10 - Windows 10 Mobile -Most of the VPN settings in Windows 10 can be configured in VPN profiles using Microsoft Intune or System Center Configuration Manager. All VPN settings in Windows 10 can be configued using the **ProfileXML** node in the [VPNv2 configuration service provider (CSP)](https://msdn.microsoft.com/library/windows/hardware/mt755930.aspx) +Most of the VPN settings in Windows 10 can be configured in VPN profiles using Microsoft Intune or System Center Configuration Manager. All VPN settings in Windows 10 can be configued using the **ProfileXML** node in the [VPNv2 configuration service provider (CSP)](https://msdn.microsoft.com/library/windows/hardware/dn914776.aspx) + +>[!NOTE] +>If you're not familiar with CSPs, read [Introduction to configuration service providers (CSPs)](https://technet.microsoft.com/itpro/windows/manage/how-it-pros-can-use-configuration-service-providers) first. The following table lists the VPN settings and whether the setting can only be configured using **ProfileXML**. @@ -38,6 +41,104 @@ The following table lists the VPN settings and whether the setting can only be c | Windows Information Protection (WIP) | no | | Traffic filters | yes | +The sections in this topic provide XML examples for the VPN profile settings in this guide. You can get additional examples in the [ProfileXML XSD](https://msdn.microsoft.com/library/windows/hardware/mt755930.aspx) topic. + + + +## Connection type + +**Example:** set connection type to **Automatic** + +``` +NativeProtocolType + + + 10002 + + + ./Vendor/MSFT/VPNv2/VPNProfileName/NativeProfile/NativeProtocolType + + Automatic + + +``` + +**Example:** set connection type for a Universal Windows Platform (UWP) VPN plug-in + +``` + + + 10002 + + + ./Vendor/MSFT/VPNv2/VPNProfileName/PluginProfile/PluginPackageFamilyName + + TestVpnPluginApp-SL_8wekyb3d8bbwe + + +``` + +**Example:** add custom configuration for UWP VPN plug-in + +``` + + + 10003 + + + ./Vendor/MSFT/VPNv2/VPNProfileName/PluginProfile/CustomConfiguration + + <pluginschema><ipAddress>auto</ipAddress><port>443</port><networksettings><routes><includev4><route><address>172.10.10.0</address><prefix>24</prefix></route></includev4></routes><namespaces><namespace><space>.vpnbackend.com</space><dnsservers><server>172.10.10.11</server></dnsservers></namespace></namespaces></networksettings></pluginschema> + + +``` + +## Split-tunnel routing + + +## Forced-tunnel routing + + +## EAP authentication + + +## Conditional access + + +## NRPT name resolution + + +## DNS suffix name resolution + + +## Persistent name resolution + + +## App trigger + + +## Name trigger + + +## Always On + + +## Trusted network detection + + +## LockDown + + +## Windows Information Protection + + +## Traffic filters + + + + + + For more information about ProfileXML including sample profiles (both native and UWP VPN plugin): OMA-DM Uri: /Vendor/MSFT/VPNv2/[Profile Name]/ProfileXML The below is a sample Native VPN profile (found in the link above). This blob would fall under the ProfileXML node. Profiles can be created for UWP apps as well. An example can be found in the link above as well.