Skip to main content

Provider equada (Germany)

About

equada GmbH, Am neuen Berg 3, 63755 Alzenau

Voice: 0800 / 729 - 0000

Web site: www.equada.de

Email: info@equada.de

Geschäftsführer: Lorenz Barth, Bernd Büdenbender Eingetragen unter HRB10130 beim AG Aschaffenburg

This provider has thoughtfully provided these example SIP profile and dialplan examples to help you configure and test FreeSWITCH™ more quickly.

Click here to expand Table of Contents

SIP Profile

conf/sip_profiles/external/equada.xml

equada.xml

<include>
<gateway name="equada-trunk">
<param name="username" value="SIP-Account"/> <== Ihre SIP-Account hier liegt
<param name="realm" value="SIP-Domain/Realm"/> <== geben Sie Ihre SIP-Domäne
<param name="password" value="SIP-Password"/> <== Ihre SIP-Passwort hier liegt
<param name="outbound-proxy" value="trunking.pbx-network.de"/>
<param name="register-proxy" value="trunking.pbx-network.de"/>
<param name="expire-seconds" value="800"/>
<param name="register" value="true"/>
<param name="retry-seconds" value="20"/>
<param name="ping" value="10"/>
<param name="context" value="public"/>
</gateway>
</include>

Dialplan

Outbound

conf/dialplan/default/equada-outbound.xml

equada-outbound.xml

<include>
<extension name="equada-outbound">
<condition field="destination_number" expression="(\d+)$">
<action application="set" data="effective_caller_id_number=${outbound_caller_id_number}"/>
<action application="set" data="sip_h_P-Preferred-Identity=sip:${outbound_caller_id_number}@pbx-network.de"/>
<action application="bridge" data="{sip_cid_type=pid}sofia/gateway/equada-trunk/$1"/>
</condition>
</extension>
</include>

Inbound

conf/dialplan/public/00_inbound_did.xml

00_inbound_did.xml

<include>
<extension name="public_did">
<condition field="destination_number" expression="DID_nummer"> <== geben Sie Ihre Zielnummer hier
<action application="set" data="domain_name=$${domain}"/>
<action application="answer"/>
<action application="playback" data="/usr/share/freeswitch/sounds/en/us/callie/misc/48000/misc-your_call_has_been_terminated.wav"/>
</condition>
</extension>
</include>

This inbound dialplan snippet plays a FS prompt to the caller to indicate successful termination of the call for testing purposes, Once this is successful you should delete the last 2 action lines and add an action that transfers the call to the desired internal extension in the default context, for example.