Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] Gateway issue!! ----- need help


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
xtpl.gayatri at gmail.com
Guest





PostPosted: Thu Sep 11, 2008 3:26 am    Post subject: [Freeswitch-users] Gateway issue!! ----- need help Reply with quote

Hi all,

I need help on this urgently!

I have a gateway configured - I have done everything mentioned on
http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Sample_Gateway_Configuration

If I configure my X-lite to register directly to the gateway, I can make a call

but if I do originate sofia/internal/1001 sofia/gateway/net4india/13024301635 on FS the call fails, saying:


freeswitch@Comp36 ([email]freeswitch@Comp36[/email])> 2008-09-11 01:07:43 [INFO] mod_dialplan_xml.c:222 dialplan_hu
nt() Processing FreeSWITCH->sofia/gateway/net4india/13024301635@default
2008-09-11 01:07:44 [NOTICE] switch_ivr.c:1098 switch_ivr_session_transfer() Tra
nsfer sofia/internal/1001 to enum[sofia/gateway/net4india/13024301635@default]
2008-09-11 01:07:46 [INFO] switch_core_state_machine.c:114 switch_core_standard_
on_routing() No Route, Aborting
2008-09-11 01:07:46 [NOTICE] switch_core_state_machine.c:115 switch_core_standar
d_on_routing() Hangup sofia/internal/1001 [CS_ROUTING] [NO_ROUTE_DESTINATION]
2008-09-11 01:07:46 [ERR] mod_xml_cdr.c:115 my_on_hangup() Error writing [C:\Pro
gram Files\FreeSWITCH\log\xml_cdr\16151ab7-5698-2f49-9b0e-8e27221ce849.cdr.xml][
No such file or directory]
2008-09-11 01:07:47 [NOTICE] switch_core_session.c:807 switch_core_session_threa
d() Session 1 (sofia/internal/1001) Ended
2008-09-11 01:07:47 [NOTICE] switch_core_session.c:809 switch_core_session_threa
d() Close Channel sofia/internal/1001 [CS_HANGUP]

Thanks a lot for help,

Regards,
Gayatri Kulkarni

-----
Whenever you find yourself on the side of the majority, it is time to pause and reflect.
Back to top
brian at freeswitch.org
Guest





PostPosted: Thu Sep 11, 2008 8:34 am    Post subject: [Freeswitch-users] Gateway issue!! ----- need help Reply with quote

Your originate syntax is invalid.

Try this:

originate sofia/internal/1001 &bridge(sofia/gateway/net4india/
13024301635)

If by change you don't want the bridge to execute till 1001 is
answered you do this:

originate {ignore_early_media=true}sofia/internal/1001
&bridge(sofia/gateway/net4india/13024301635)

Otherwise it's going into the dialplan looking for 13024301635 and not
finding it.

/b



On Sep 11, 2008, at 3:19 AM, Gayatri Kulkarni wrote:

Quote:
but if I do originate sofia/internal/1001 sofia/gateway/net4india/
13024301635 on FS the call fails, say

Brian West
sip:brian@freeswitch.org







_______________________________________________
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
anthony.minessale at g...
Guest





PostPosted: Thu Sep 11, 2008 1:33 pm    Post subject: [Freeswitch-users] Gateway issue!! ----- need help Reply with quote

originate sofia/internal/1001 &bridge(sofia/gateway/net4india/13024301635)

or

originate sofia/internal/1001 13024301635

assuming you have an extension in your dialplan that routes DID over that gateway.




On Thu, Sep 11, 2008 at 8:32 AM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
Quote:
Your originate syntax is invalid.

Try this:

originate sofia/internal/1001 &bridge(sofia/gateway/net4india/
13024301635)

If by change you don't want the bridge to execute till 1001 is
answered you do this:

originate {ignore_early_media=true}sofia/internal/1001
&bridge(sofia/gateway/net4india/13024301635)

Otherwise it's going into the dialplan looking for 13024301635 and not
finding it.

/b



On Sep 11, 2008, at 3:19 AM, Gayatri Kulkarni wrote:

Quote:
but if I do originate sofia/internal/1001 sofia/gateway/net4india/
13024301635 on FS the call fails, say


Brian West
sip:brian@freeswitch.org ([email]sip%3Abrian@freeswitch.org[/email])







_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (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



--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
xtpl.gayatri at gmail.com
Guest





PostPosted: Sat Sep 13, 2008 3:38 am    Post subject: [Freeswitch-users] Gateway issue!! ----- need help Reply with quote

>an extension in your dialplan that routes DID over that gateway.

how do I administer that?


On Thu, Sep 11, 2008 at 11:31 AM, Anthony Minessale <anthony.minessale@gmail.com (anthony.minessale@gmail.com)> wrote:
Quote:
originate sofia/internal/1001 &bridge(sofia/gateway/net4india/13024301635)


or

originate sofia/internal/1001 13024301635

assuming you have an extension in your dialplan that routes DID over that gateway.





On Thu, Sep 11, 2008 at 8:32 AM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
Quote:
Your originate syntax is invalid.

Try this:

originate sofia/internal/1001 &bridge(sofia/gateway/net4india/
13024301635)

If by change you don't want the bridge to execute till 1001 is
answered you do this:

originate {ignore_early_media=true}sofia/internal/1001
&bridge(sofia/gateway/net4india/13024301635)

Otherwise it's going into the dialplan looking for 13024301635 and not
finding it.

/b



On Sep 11, 2008, at 3:19 AM, Gayatri Kulkarni wrote:

Quote:
but if I do originate sofia/internal/1001 sofia/gateway/net4india/
13024301635 on FS the call fails, say


Brian West
sip:brian@freeswitch.org ([email]sip%3Abrian@freeswitch.org[/email])







_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (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





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (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




--
Regards,
Gayatri Kulkarni
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services