--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To view this discussion on the web visit https://groups.google.com/d/msg/bigbluebutton-setup/-/gqdaqwaGp6IJ.
To post to this group, send email to bigbluebu...@googlegroups.com.
To unsubscribe from this group, send email to bigbluebutton-s...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bigbluebutton-setup?hl=en.
Hi Stéphane,We modified the setup of BigBlueButton so FreeSWITCH now binds to 127.0.0.1. See
http://code.google.com/p/bigbluebutton/issues/detail?id=1133
You'll need to modify the FreeSWITCH configuration to listen to an external IP (the above issue shows the files we changed to bind to 127.0.0.1).Regards,... Fred--
BigBlueButton DeveloperBigBlueButton on twitter: @bigbluebutton
On Mon, Mar 5, 2012 at 2:02 PM, Stéphane <step...@lux.io> wrote:
Hi,I am trying to connect bbb with our sip trunk. It seems, that freeswitch only listens to 127.0.0.1:5060 and not to the external ip. Doesn't freeswitch bind automatically to the external ip? Do I have to enable it?Regards,Stéphane
--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To view this discussion on the web visit https://groups.google.com/d/msg/bigbluebutton-setup/-/gqdaqwaGp6IJ.
To post to this group, send email to bigbluebutton-setup@googlegroups.com.
To unsubscribe from this group, send email to bigbluebutton-setup+unsub...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To post to this group, send email to bigbluebu...@googlegroups.com.
To unsubscribe from this group, send email to bigbluebutton-s...@googlegroups.com.
Asterisk-FreeSwitch Dial-Plan
PSTN=>ELX=>FreePBX (MD)=>BBB-Freeswitch=>BBB-CONF
VoIP=>ELX=fs-gw(Trunk)=> BBB-Freeswitch=>BBB-CONF
/opt/freeswtich/conf/dialplan/public.xml/Public Context
<extension name="phone pin">
<condition field="destination_number" expression="71111">
<action application="answer"/>
<action application="sleep" data="500"/>
<action application="play_and_get_digits" data="5 5 3 7000 #
conference/conf-pin.wav ivr/ivr-that_was_an_invalid_entry.wav pin \d+"/>
<action application="transfer" data="SEND_TO_CONFERENCE XML default"/>
</condition>
</extension>
/opt/freeswtich/conf/dialplan/public.xml/default Context
<extension name="phone conference">
<condition field="${conference ${pin} list}" expression="/sofia/g" />
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="conference" data="${pin}@wideband"/>
</condition>
</extension>
<extension name="conference_not_active_or_no_valid_pin_entered">
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="answer"/>
<action application="sleep" data="500"/>
<action application="play_and_get_digits" data="5 5 2 5000 #
conference/conf-pin.wav ivr/ivr-that_was_an_invalid_entry.wav pin \d+"/>
<action application="transfer" data="SEND_TO_CONFERENCE XML dropme1"/>
</condition>
</extension>
/opt/freeswtich/conf/dialplan/public.xml/dropme1 Context
<context name="dropme1">
<extension name="phone conf1">
<condition field="${conference ${pin} list}" expression="/sofia/g" />
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="conference" data="${pin}@wideband"/>
</condition>
</extension>
<extension name="conference_not_active_or_no_valid_pin_entered1">
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="answer"/>
<action application="sleep" data="500"/>
<action application="play_and_get_digits" data="5 5 1 5000 #
conference/conf-pin.wav ivr/ivr-that_was_an_invalid_entry.wav pin \d+"/>
<action application="transfer" data="SEND_TO_CONFERENCE XML dropme2"/>
<context name="dropme2">
<extension name="phone conf2">
<condition field="${conference ${pin} list}" expression="/sofia/g" />
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="conference" data="${pin}@wideband"/>
</condition>
</extension>
<extension name="conference_not_active_or_no_valid_pin_entered1">
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="answer"/>
<action application="sleep" data="500"/>
<action application="play_and_get_digits" data="5 5 1 5000 #
conference/conf-pin.wav ivr/ivr-that_was_an_invalid_entry.wav pin \d+"/>
<action application="transfer" data="SEND_TO_CONFERENCE XML dropme3"/>
</condition>
<context name="dropme3">
<extension name="phone conf3">
<condition field="${conference ${pin} list}" expression="/sofia/g" />
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="conference" data="${pin}@wideband"/>
</condition>
</extension>
<extension name="conference_not_active_or_no_valid_pin_entered3">
<condition field="destination_number" expression="^(SEND_TO_CONFERENCE)$">
<action application="playback" data="conference/conf-goodbye.wav"/>
<action application="hangup"/>
</condition>
</extension>
</context>
Hello,
Is it the same process if I want to connect using Ekiga for example? I should open up FreeSWITCH as explained here: https://code.google.com/p/bigbluebutton/issues/detail?id=1133 ?
I tried to understand it but no luck so far.
On Monday, 5 March 2012 20:02:04 UTC+1, Stéphane wrote:Hi,I am trying to connect bbb with our sip trunk. It seems, that freeswitch only listens to 127.0.0.1:5060 and not to the external ip. Doesn't freeswitch bind automatically to the external ip? Do I have to enable it?Regards,Stéphane
--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-s...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-setup+unsub...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at https://groups.google.com/group/bigbluebutton-setup.
Hello Richard,
Thank you for your response.
I tried as you suggested but it's still not working.
I replaced your 192.168.23.19 with my server IP address, of course, but when I try to enter aaa.bbb.ccc.ddd:5060 and call from Ekiga, it just says "Could not connect to remote host".
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-s...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at https://groups.google.com/group/bigbluebutton-setup.
--
--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-s...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at https://groups.google.com/group/bigbluebutton-setup.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-setup+unsub...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at https://groups.google.com/group/bigbluebutton-setup.
--
--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-setup+unsub...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at https://groups.google.com/group/bigbluebutton-setup.
For more options, visit https://groups.google.com/d/optout.
2016-01-16 03:10:26.925557 [NOTICE] switch_ivr.c:1863 Transfer sofia/external/10...@1xx.xx.xx.xx to XML[SEND_TO_CONFERENCE@default]
2016-01-16 03:10:26.925557 [INFO] mod_dialplan_xml.c:635 Processing 10001 <10001>->SEND_TO_CONFERENCE in context default
2016-01-16 03:10:26.925557 [INFO] switch_core_state_machine.c:241 No Route, Aborting
2016-01-16 03:10:26.925557 [NOTICE] switch_core_state_machine.c:242 Hangup sofia/external/10...@1xx.xx.xx.xx [CS_ROUTING] [NO_ROUTE_DESTINATION]
2016-01-16 03:10:26.925557 [NOTICE] switch_core_session.c:1641 Session 12 (sofia/external/10...@1xx.xx.xx.xx) Ended
2016-01-16 03:10:26.925557 [NOTICE] switch_core_session.c:1645 Close Channel sofia/external/10...@1xx.xx.xx.xx [CS_DESTROY]
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-setup+unsub...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at https://groups.google.com/group/bigbluebutton-setup.