Share via


Adding a Null Proxy Connection Example

Send Feedback

This example adds a null proxy connection named "NullProxy1" to the device. This proxy is used to ensure all traffic to the Internet metanetwork uses the PPP connection provisioned using the CM_PPPEntries configuration service provider below. The DestId parameter of the CM_PPPEntries characteristic and the SrcId parameter of the CM_ProxyEntries characteristic must match. The GUID used here matches the DestId parameter specified for a network defined using the CM_Networks configuration service provider.

This example creates a null proxy connection that appears in the user interface. More information about creating dedicated network connections using a null proxy appears in the topic Configuring a Network to Exclusively Use a Specified Path to the Internet.

<characteristic type="CM_Networks">
    <characteristic type="ISP: MSN">
      <parm name="DestId" 
      value="{C1D06580-B364-45ec-8421-5ACF34129C58}" />
      </characteristic>
</characteristic>

<characteristic type="CM_ProxyEntries">
    <nocharacteristic type="HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"/>
</characteristic>

<characteristic type="CM_PPPEntries">
      <characteristic type="InternetPPP">
         <parm name="DestId" value="{C1D06580-B364-45ec-8421-5ACF34129C58}" />
         <parm name="CountryCode" value="1" />
         <parm name="AreaCode" value="425" />
         <parm name="Phone" value="5550124" />
         <parm name="UserName" value="USERNAME" />
         <parm name="Password" value="PASSWORD" />
         <parm name="Domain" value="DOMAIN" />
      </characteristic>
   </characteristic>

<characteristic type="CM_ProxyEntries">
    <characteristic type="NullProxy1">
      <parm name="SrcId" value="{C1D06580-B364-45ec-8421-5ACF34129C58}" />
      <parm name="DestId" value="{436EF144-B4FB-4863-A041-8F905A62C572}" />
      <parm name="Type" value="0" />
    </characteristic>
</characteristic>

See Also

CM_ProxyEntries Configuration Service Provider Examples for OMA Client Provisioning | CM_ProxyEntries Configuration Service Provider | CM_PPPEntries Configuration Service Provider | CM_Networks Configuration Service Provider | Configuring a Network to Exclusively Use a Specified Path to the Internet

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.