Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Panel
titleColor#F85404
titleBGColor#F0F0F0
titleIntroduction

In some situations you would like to have the possibility to load multiple provisioning files.

  • First file with general settings
  • Second file with device specific settings
  • If required more files then 2 can be used

Panel
titleColor#F85404
titleBGColor#F0F0F0
titleAuto-provisioning

The device receives an provisioning URL to download the first file.


Code Block
titleExample provisioning file with general settings.
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">

<nvm>
   
            <param name="SipProvider.0.Name" value="PBX"/>
            
        <!-- General data of your service provider -->
        
            <param name="SipProvider.0.Domain" value="192.168.178.210"/>
            <param name="SipProvider.0.ProxyServerAddress" value="192.168.178.210"/>
            <param name="SipProvider.0.ProxyServerPort" value="5060"/>
            <param name="SipProvider.0.RegServerAddress" value="192.168.178.210"/>
            <param name="SipProvider.0.RegServerPort" value="5060"/>
            <param name="SipProvider.0.RegServerRefreshTimer" value="180"/>
            <param name="SipProvider.0.TransportProtocol" value="2"/>
            <param name="SipProvider.0.UseSIPS" value="0"/>
            <param name="SipProvider.0.SRTP_Enabled" value="0"/>
            <param name="SipProvider.0.AcceptNonSRTPCalls" value="0"/>  
            
</nvm>

<EXTENDED_PROFILE class="string" value="http://192.168.178.201/nestedprofile/test_second.xml"/>

</provisioning>


The Parameter:

<EXTENDED_PROFILE class="string" value="http://192.168.178.201/nestedprofile/test_second.xml"/>

Contains the URL to the second provisioning file.