Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
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="e2mx3b">

<nvm>
   <firmware>
    <!-- <file       <param name="SipProvider.0.Name" value="PBX"/>
        version="2.22.4" url="http://192.168.178.200/firmware/maxwell3/GC_MAX_2.22.4-pre-release.bin" flags="FORCE_ACCEPT"/> -->
  </firmware>
  
  <nvm>
    
        <!-- General data of your service provider SIP -->

    <param name="SIP.DefaultAccount"   value="0" />
    <param name="SIP.Account.0.AccountName"   value="1012" />
    <param name="SipProviderSIP.Account.0.DomainActive" value="192.168.178.210"1" />
    <param name="SIP.Account.0.Provider"   value="PBX" />
    <param name="SipProviderSIP.Account.0.ProxyServerAddressAuthName" value="192.168.178.210"1012" />
    <param name="SIP.Account.0.AuthPassword"   value="password" />
    <param name="SipProviderSIP.Account.0.ProxyServerPortDisplayName" value="50601012" />
    <param name="SIP.Account.0.Username" value="1012" />
     <param name="SipProviderSIP.Account.0.RegServerAddressDomain" value="192.168.178.210" />
    <param name="SIP.Account.0.CallWaiting" value="1" />
     <param name="SipProviderSIP.Account.0.ProxyServer.RegServerPortAddress" value="5060192.168.178.210"/>
    <param name="SIP.Account.0.ProxyServer.Port"   value="5060" />
    <param name="SipProviderSIP.Account.0.RegistrationServer.RegServerRefreshTimerAddress" value="180192.168.178.210"/>
    <param    name="SIP.Account.0.RegistrationServer.Port" value="5060"/>
    <param name="SipProviderSIP.Account.0.TransportProtocolOutboundProxy.Mode" value="2"/>
    <param    name="SIP.Account.0.OutboundProxy.Address" value=""/>
    <param name="SipProviderSIP.Account.0.OutboundProxy.UseSIPSPort" value="05060"/>
            <param name="SipProviderSIP.Account.0.SRTP_FailoverServer.Enabled" value="0"/>
            <param name="SipProviderSIP.Account.0.AcceptNonSRTPCallsCLIPSource" value="02"/>
  
</nvm>
  
  <custom>
        
</nvm>

<EXTENDED_PROFILE class<step type="stringRedirect" valueurl="http://192.168.178.201/nestedprofile/test_secondmaxwelltemplate2.xml" />
  </custom>
  
</provisioning>


The Parameter: <EXTENDED_PROFILE class<step type="stringRedirect" value url="http://192.168.178.201/nestedprofile/test_secondmaxwelltemplate2.xml" />

Contains the URL to the second provisioning file.

URL can contain:

  • Name of the file (Example: test_second.xml)
  • %MACD.xml (%MACD will be replaced with own MAC address)

Code Block
titleExample for the second provisioning file
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2mx3b">

<nvm>

        <!-- Handset 1 -->
        <oper value="029e74a599" name="add_hs">
        <nvm>
    <param name="hs.RegStatus" value="ToReg"/>
        </oper> 
        
            <param name="SipAccount.029e74a599.AuthName" value="1024" />
            <param name="SipAccount.029e74a599.AuthPassword" value="p?t_JrH1nz1zrNZE" />
            <param name="SipAccount.029e74a599.UserName" value="1024" />
            <param name="SipAccount.029e74a599SIP.Account.0.DisplayName" value="N670 1024" />
            <param name="SipAccount.029e74a599.ProviderId" value="0" />
            <param name="hs.029e74a599.DirectAccessDir" value="250" /> 
            <param name="hs.029e74a599.DECT_AC" value="00001012_3" />
            <param name="hs.029e74a599.IntKeyDir" value="252"/>
         
</nvm>

<!-- If required you could add an URL to the next file
<EXTENDED_PROFILE class="string" value="http://192.168.178.201/nestedprofile/test_third.xml"/> -->

</provisioning>