Versions Compared

Key

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

Below you can find some examples how to add/remove DECT handsets via auto provisioning.

The preferred method is to use the IPUI number of the handsets. The IPUI number can be found on the packaging or in the handset menu: Press: Menu - *#06# on position 1 you can find the IPUI.


Info
iconfalse
titleProvisioning example add handset with IPUI

<?xml version="1.0" encoding="UTF-8"?>

<provisioning version="1.1" productID="e2">

<nvm>

<oper name="add_hs" value="02b6ec8aa5">

<param name="hs.RegStatus" value="ToReg"/>

</oper>

<!-- This is the preferred method as when the settings are part of the <oper> </oper>, when you change the settings and the handset is already available in the config. All what is in the <oper> </oper> is ignored. So new/updates settings are not used.-->


<param name="hs.02b6ec8aa5.DECT_AC" value="0000"/>
<param name="SipAccount.02b6ec8aa5.AuthName" value="1014"/>
<param name="SipAccount.02b6ec8aa5.AuthPassword" value="123456"/>
<param name="SipAccount.02b6ec8aa5.ProviderId" value="0"/>
<param name="SipAccount.02b6ec8aa5.UserName" value="1014"/>

</oper>

</nvm>
</provisioning>

Or

<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">

<nvm>

<oper name="add_hs" value="02b6ec8aa5">

<param name="hs.RegStatus" value="ToReg"/>

</oper>

<!-- This is the preferred method as when the settings are part of the <oper> </oper>, when you change the settings and the handset is already available in the config. All what is in the <oper> </oper> is ignored. So new

/

updates settings are not used.--

>
<param name="hs.02b6ec8aa5.DECT_AC" value="0000"/>
<param name="SipAccount.02b6ec8aa5.AuthName" value="1014"/>
<param name="SipAccount.02b6ec8aa5.AuthPassword" value="123456"/>
<param name="SipAccount.02b6ec8aa5.ProviderId" value="0"/>
<param name="SipAccount.02b6ec8aa5.UserName" value="1014"/>

</oper>


</nvm>
</provisioning>

Info
iconfalse
titleProvisioning example add handset without IPUI

<?xml version="1.0" encoding="UTF-8"?>
<settings version="1.0" productID="e2">

<!-- using wildcard handset identifier ( starting with "0_ " , without IPUI ), handset cannot be identified to be assigned to a specific account:
      so all handset are considered to be equivalent, all handsets need to have the same DECT_AC -->

<oper name="add_hs" value="0_1">

<param name="hs.RegStatus" value="ToReg"/>
<param name="hs.DECT_AC" value="1111"/>
<param name="SipAccount.Active" value="1"/>
<param name="SipAccount.AuthName" value="1014"/>
<param name="SipAccount.AuthPassword" value="123456"/>
<param name="SipAccount.ProviderId" value="0"/>
<param name="SipAccount.UserName" value="1014"/>

</oper>


<oper name="add_hs" value="0_2">

<param name="hs.RegStatus" value="ToReg"/>
<param name="hs.DECT_AC" value="1111"/>
<param name="SipAccount.Active" value="1"/>
<param name="SipAccount.AuthName" value="1015"/>
<param name="SipAccount.AuthPassword" value="123456"/>
<param name="SipAccount.ProviderId" value="0"/>
<param name="SipAccount.UserName" value="1015"/>

</oper>

</settings>