Search results

  1. M

    SIP BYE to Parking Lot instead of Hangup

    I'm trying to make the B leg of the call go to parking lot on a BYE instead of hangup. When the BYE comes, it just hangs up and ends session. I've got a version of this working (sorta), but I dont like it. I'd prefer it to happen in dialplan. I'd then probably just XML-RPC to query the parking...
  2. M

    Forcing OPUS

    I'll have a lot of hardware to counteract the performance hit, but not even sure if its worth it at the moment. When I test, even with simulated network issues (packet loss, jitter) it barely sounds better.. it just sounds "different". More robotic, perhaps, instead of dropping audio.
  3. M

    Forcing OPUS

    It has nothing to do with FreeSWITCH - it was upstream. These settings worked.
  4. M

    Forcing OPUS

    oh one more thing, on my extension I set absolute codec string to insist the user gets opus.
  5. M

    Forcing OPUS

    I'm having a weird issue, and am stumped. GOAL: Have all endpoints use Opus, and all calls to/from gateway to use PCMU. On the vars, I have: media_mix_inbound_outbound_codec true True global_codec_prefs opus@48000h@20i,PCMU,PCMA True outbound_codec_prefs...
  6. M

    Conference Call

    When I've set up a conference center + room, and dial in as a participant, It does not play a "moderator has not joined" message. I see no options to configure this in Fusion. Is it tucked away somewhere? I'm stumped.
  7. M

    call is disconnected after 90 seconds in call center module

    I'm curious to see if its the same bug I've encountered. Go the the fs_cli console, and type callcenter_config queue list. Do you have a lowercase UUID and an uppercase UUID? (ie. two entries)? then if you unload mod_callcenter and then load mod_callcenter does it clear up?
  8. M

    FusionPBX on FreeSWITCH 1.8

    With FreeSWITCH 1.8 being released, I'd like to upgrade to it and still use FusionPBX. Has anybody had success with this? Any breadcrumbs you could share?
  9. M

    mod_callcenter odbc configuration

    welp. i'm an idiot. /usr/share/freeswitch/scripts/app/xml_handler/resources/scripts/configuration/callcenter.conf.lua and remember kids.. memcache flush
  10. M

    mod_callcenter odbc configuration

    I'm unable to find it, but apparently in 1.8 there is fixed up multi server support. I'm trying to add odbc-dsn, cc-instance-id, and reserver-agents.. but nothing I change seems to pick it up, and it really wants to use sqlite3. changed some lua scripts, and so on.. lost, cant find it.. ideas?
  11. M

    ext-rtp-ip question

    I'm thinking its back to opensips with the freeswitch integration for balancing/weighting, but I thought I'd ask.
  12. M

    ext-rtp-ip question

    I can't seem to find anything that documents this parameter well. I'll probably just test it. Question is: Server A: Primary Node Server B: Standby Node Server C+n = dumb transcoder nodes Is it possible to do something like set the exp-rtp-ip to Server C from Server A, and have server C do...
  13. M

    Disabling Voicemail Globally

    I think I got it.. I checked how the queries were run, and the numbers were always quoted. ie "voicemail_id = '1234'". So I felt text would be safe. Because BDR prevents changing data type, I did an add new column, update v_voicemails set newcolumn = voicemail_id, then dropped voicemail_id, and...
  14. M

    Disabling Voicemail Globally

    When I update v_voicemails and set voicemail_enabled to false, and disable all the voicemail routes in dialplan manager, it sort of works. However, on registration I still get an SQL error. I cannot figure out how to make registration not try to grab voicemails. For context - my extensions are...
  15. M

    ClueCon

    Anybody heading to Chicago this year?
  16. M

    Multiple FreeSWITCH Servers

    I think it depends on function, certainly. Like straight up routing is pretty easy to cluster. If I was to route to voicemail servers, I would probably do active/active. Same with IVRs.. things like queuing, parking, conferencing, etc.. tend to have to have an active/standby mode. My approach...
  17. M

    Proper way of doing memcache flush and reloadxml/reloadacl

    Here's a quick script I spent a solid 5 minutes on. It does what I need, and I'll just build this into the save button on fusion. #!/usr/bin/perl # Quick and dirty flush, reload, and rescan for multiple servers, using XMLRPC # By mutt (PBXforums.com) use warnings; use strict; use...
  18. M

    Proper way of doing memcache flush and reloadxml/reloadacl

    I've found two versions of ha_monitor, and configured them both. i installed and enabled xml_rpc (not default installed) tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN I've also tested credentials through my web browser. They work. I can't find anything on this...
  19. M

    Proper way of doing memcache flush and reloadxml/reloadacl

    n+1 works for what I'm after. i'm not doing anything other than the most basic incoming/outgoing A to B
  20. M

    Proper way of doing memcache flush and reloadxml/reloadacl

    I'm about to embark on building a new save mechanism, but before I do I thought I'd ask the smart people. When I hit save in the GUI, it does a memcache flush, reloadxml and/or reloadacl. How do I disperse that across multiple servers? Say n+1 other servers. Currently I just have a bunch of...