What can I do?
I want to make an outbound call from FS1 to FS2 but on FS2’s fs_cli is showing that error:
2024-08-06 14:28:24.746848 99.40% [DEBUG] sofia.c:10554 verifying acl "domains" fo r ip/port 192.168.10.218:0.
2024-08-06 14:28:24.746848 99.40% [WARNING] sofia_reg.c:3210 Can't find user [Free [email protected]] from 192.168.10.218
You must define a domain called '192.168.10.225' in your directory and add a user with the id="FreeSWITCH" attribute
and you must configure your device to use the proper domain in its authentication credentials.
2024-08-06 14:28:24.746848 99.40% [NOTICE] sofia.c:2417 Hangup sofia/internal/0210 [email protected] [CS_NEW] [CALL_REJECTED]
IP FS1 : 192.168.10.218
IP FS2 : 192.168.20.225
FS1 /etc/freeswitch/sip_profiles/external/fs_test2.xml :
<include>
<gateway name="fs-test2">
<param name="proxy" value="192.168.10.225"/>
<param name="register" value="false"/>
<param name="caller-id-in-from" value="true"/>
<variables>
<variable name="verbose_sdp" value="true"/>
<variable name="absolute_codec_string" value="PCMU,PCMA" >
</variables>
</gateway>
</include>
FS1 /etc/freeswitch/dialplan/default/fs_test2.xml :
<include>
<extension name="outbound_calls">
<condition field="destination_number" expression="^(022022)$">
<action application="bridge" data="sofia/gateway/fs-test2>
</condition>
</extension>
</include>
FS1 /etc/freeswitch/dialplan/public/fs_test2.xml :
<include>
<extension name="public_did">
<condition field="destination_number" expression="^(021021)$">
<action application="set" data="domain_name=$${domain}"/>
<action application="transfer" data="1000 XML default"/>
</condition>
</extension>
</include>
I Want to solve this problem, i want FS1 can do outbound call to FS2
New contributor
Fahmi Rasyied is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.