View previous topic :: View next topic |
Author |
Message |
jason at jasonjgw.net Guest
|
Posted: Fri Jul 03, 2009 11:03 pm Post subject: [Freeswitch-users] -ERR SERVICE_NOT_IMPLEMENTED on mobiles a |
|
|
Edmar Cruz <darklion11@yahoo.com> wrote:
Quote: |
I have a GSM gateway. The issue is sometimes the calls failed what is the
cause of the error this is my logs?
|
The cause of the error is that you are searching the dial plan for
639273642511 in context public, and no dial plan entry matches, so FreeSWITCH
terminates the call.
It's your task to look at your configuration and work out why this is
happening, since clearly it isn't what you intended.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
jason at jasonjgw.net Guest
|
Posted: Fri Jul 03, 2009 11:09 pm Post subject: [Freeswitch-users] -ERR SERVICE_NOT_IMPLEMENTED on mobiles a |
|
|
Edmar Cruz <darklion11@yahoo.com> wrote:
Quote: |
I think the problem is on the bridge
|
No, it's in the fact that FreeSWITCH fails to match the destination number in
the public context. If you've placed the user that is making the call in the
public context, and the dial plan entry that you want to match the destination
number is in the default context, it isn't going to work.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
darklion11 at yahoo.com Guest
|
Posted: Fri Jul 03, 2009 11:17 pm Post subject: [Freeswitch-users] -ERR SERVICE_NOT_IMPLEMENTED on mobiles a |
|
|
Sometimes it works but someyimes not? SERVICE_ NOT_IMPLEMENTED
This is my dialpla/public/00_test.xml
<condition field="destination_number" expression="^(\d+)$">
<action application="set" data="gate_site_id=1"/>
<action application="set"
data="effective_caller_id_name=${effective_caller_id_name}"/>
<action application="set"
data="effective_caller_id_number=${effective_caller_id_number}"/>
<action application="bridge" data="sofia/default/$1@116.45.15.10"/>
Actually am connecting Freeswitch and Asterisks
Do you think the issue is the codec?
Asterisks has a G729 License while Freeswitch has none an received an error
passthrough mode only available?
Jason White-14 wrote:
Quote: |
Edmar Cruz <darklion11@yahoo.com> wrote:
Quote: |
I have a GSM gateway. The issue is sometimes the calls failed what is the
cause of the error this is my logs?
|
The cause of the error is that you are searching the dial plan for
639273642511 in context public, and no dial plan entry matches, so
FreeSWITCH
terminates the call.
It's your task to look at your configuration and work out why this is
happening, since clearly it isn't what you intended.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
|
--
View this message in context: http://www.nabble.com/-ERR-SERVICE_NOT_IMPLEMENTED-on-mobiles-and-landlines-tp24316987p24331250.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
jason at jasonjgw.net Guest
|
Posted: Sat Jul 04, 2009 1:20 am Post subject: [Freeswitch-users] -ERR SERVICE_NOT_IMPLEMENTED on mobiles a |
|
|
Edmar Cruz <darklion11@yahoo.com> wrote:
Quote: | This is my dialpla/public/00_test.xml
<condition field="destination_number" expression="^(\d+)$">
|
Where's your
<extension name="test_extension">
tag to open the extension element and give it a name?
Quote: | <action application="set" data="gate_site_id=1"/>
<action application="set"
data="effective_caller_id_name=${effective_caller_id_name}"/>
<action application="set"
data="effective_caller_id_number=${effective_caller_id_number}"/>
|
The above two lines won't do anything - you're setting the variables to values
that they already have.
Quote: | <action application="bridge" data="sofia/default/$1@116.45.15.10"/>
|
You now need to close the elements:
</condition>
</extension>
Quote: | Actually am connecting Freeswitch and Asterisks
Do you think the issue is the codec?
|
No. I've explained this already: the issue in the log that you provided is a
failure of FreeSWITCH to match your dial plan extension.
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
|