Skip to content

-- layout: liquibase lang: en


Identities#

Default Identities.xml#

Identities.xml
<?xml version="1.0" encoding="utf-8"?>
  <identity version="1.4.0">
    <displayName></displayName>
    <username></username>
    <password></password>
    <domain></domain>
    <port>5060</port>
    <secure>true</secure>
    <extension></extension>
    <apiPassword></apiPassword>
    <vmb></vmb>
    <stunServer>stun.auerproxy.de:3478</stunServer>
    <certificatePath></certificatePath>
    <dtmfMethod>rtpPayload</dtmfMethod>
    <countryCode>DE</countryCode>
    <areaCode>5306</areaCode>
    <subscriptionHandling>
      <type>static</type>
      <interval>180</interval>
    </subscriptionHandling>
    <registrationHandling>
      <type>static</type>
      <interval>180</interval>
    </registrationHandling>
    <useIp6>noPreference</useIp6>
    <useIce>false</useIce>
    <additionalDNSServer></additionalDNSServer>
    <useSystemDns>false</useSystemDns>
    <useStun>false</useStun>
    <useTurn>false</useTurn>
  </identity>

Commented File-structure#

Identities.xml
<?xml version="1.0" encoding="utf-8"?>
  <identity version="1.4.0">
    <!-- The display name of the identity
          type: string -->
    <displayName></displayName>
    <!-- The user part of a SIP URI to register the identity
          type: string -->
    <username></username>
    <!-- The password to authenticate the identity register
          type: string -->
    <password></password>
    <domain>s123.pbx.auerproxy.de</domain>
    <port>5060</port>
    <secure>true</secure>
    <extension>44</extension>
    <apiPassword></apiPassword>
    <vmb></vmb>
    <stunServer>stun.auerproxy.de:3478</stunServer>
    <certificatePath></certificatePath>
    <!-- How to signal dtmf-digits:
          - rtpPayload: use event-packages in rtp-stream
          - inband: code tone-signal right into the rtp-stream
          - sipInfo: use sip-info messages
          type: enum
          accepted values:
            rtpPayload
            inband
            sipInfo -->
    <dtmfMethod>rtpPayload</dtmfMethod>
    <countryCode>DE</countryCode>
    <areaCode>5306</areaCode>
    <subscriptionHandling>
      <type>static</type>
      <interval>180</interval>
    </subscriptionHandling>
    <registrationHandling>
      <type>static</type>
      <interval>180</interval>
    </registrationHandling>
    <useIp6>noPreference</useIp6>
    <!-- Enables the best possible transmission route 
         to be found between the softphone and PBX.
         type: boolean -->
    <useIce>true</useIce>
    <!-- Optional in the event of connection problems: 
         Address of a DNS server additional to the 
         Auerswald DNS servers 
         (only for <useSystemDns>false</useSystemDns>)
         type: string -->
    <additionalDNSServer></additionalDNSServer>
    <!-- Optional in the event of connection problems: 
         Changes the used DNS server
         type: boolean
            false: Use of the Auerswald DNS servers 
            true: Use of the system's own DNS servers -->
    <useSystemDns>false</useSystemDns>
    <!-- Enables the use of the STUN server.
         type: boolean -->
    <useStun>false</useStun>
    <!-- Enables the use of the Auerswald TURN server 
         to make RTP data available outside your own network.
         type: boolean -->
    <useTurn>false</useTurn>
  </identity>