You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

Introduction

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.


Provisioning 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"/>

</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"/>
<param name="hs.DECT_AC" value="0000"/>
<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>


</nvm>
</provisioning>

Provisioning example add handset without IPUI

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

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

<nvm>


<!-- 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 and DECT registrations must be completed in order.

-->

<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>

</nvm>
</provisioning>

  • No labels