Versions Compared

Key

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

When the feature Internal telephony is enabled, new settings/parameters are available:

  • SIP accounts
  • Handset assignment to SIP accounts


Panel
titleColor#F85404
titleBGColor#F0F0F0
titleSIP accounts

Example how to add a SIP account

Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">
    <nvm> <!-- Add SIP Account example-->
         <oper name="add_trunk">
	       <param name="SipAccount.TrunkName" value="Trunkname"/>
	       <param name="SipAccount.ProviderId" value="0"/>
           <param name="SipAccount.AuthName" value="SIP Auth name"/>
           <param name="SipAccount.AuthPassword" value="SIP Auth Password"/>
           <param name="SipAccount.DisplayName" value="SIP display name"/>
           <param name="SipAccount.UserName" value="SIP username"/>
           </oper> 
    </nvm> 
</provisioning>

If the SIP account needs to be changed after creation, this can be done using the example below for trunk_0000

Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">
    <nvm>
         <param name="SipAccount.trunk_0000.TrunkName" value="Trunkname"/>
         <param name="SipAccount.trunk_0000.ProviderId" value="0"/> 
         <param name="SipAccount.trunk_0000.AuthName" value="SIP Auth name"/>
         <param name="SipAccount.trunk_0000.AuthPassword" value="SIP Auth Password"/> 
         <param name="SipAccount.trunk_0000.DisplayName" value="SIP display name"/>
         <param name="SipAccount.trunk_0000.UserName" value="Sup username"/>
    </nvm>
</provisioning>
Panel
titleColor#F85404
titleBGColor#F0F0F0
title...