Search results

  1. bcmike

    Pause while dialing

    Thanks, the first solution works perfectly. My user wanted a set of speed dials that would dial the IVR of the remote office and enter an appropriate extension. To do this in Fusion (without any scripting, etc) I had to create outbound routes that would catch the speed dial and then add...
  2. bcmike

    Pause while dialing

    Hi, I have a user that wants to have an outbound destination that dials a remote system, pauses and then dials a remote extension. In asterisk you insert a w into the dial string and on other systems it's usually a comma or series of commas. After searching though I can't seem to find the...
  3. bcmike

    Simple Bash script to show MOS scores

    Thanks for the detailed response. Regarding your customer, I'm not sure where you are but I have a relationship with a local ISP where I can get a pretty cheap 5/1 DSL circuit ($40.00/month). So for small offices where the customer insists on using a congested Internet circuit, I install a cheap...
  4. bcmike

    Simple Bash script to show MOS scores

    Thanks, I was just looking at CDRs and was wondering. I knew what MOS scores were in general but when I google I got a lot of conflicting info and not much really related to Fusion or Freeswitch. Most of my calls are 4.5 so i think I'm ok.
  5. bcmike

    Simple Bash script to show MOS scores

    Sorry, I know I'm digging up an old thread. When you look at Fusion CDRs what is considered a "good" MOS score? What is the range? Thanks.
  6. bcmike

    New Freeswitch Vulnerabilities

    Knock on wood I have not had any problems, although my use case might be different than yours. I upgraded via binaries for Debian. It might help to know your environment better.
  7. bcmike

    blind transfer back to caller is possible to return the call if no answer

    Hi, old thread I know, but just in case someone is looking for a solution, I came up with one albeit kind of kludgey. If you want recall to reception after a an attended, or blind transfer activate follow me. Your first follow me entry will be the extension with 0 delay and 20 timeout (its up...
  8. bcmike

    Upgrade to 1.10.7

    See this thread for the upgrade procedure that worked for me. Your mileage may vary: https://www.pbxforums.com/threads/new-freeswitch-vulnerabilities.5725/
  9. bcmike

    Setting up FusionPBX with Public IP

    Go to Advanced => Defualt Settings, scroll down to provisioning. Find the http_auth settings and make sure they are all correct. Then on the command line of your pbx type the following: ngrep -d ens18 port 80 -W byline (where ens18 is your adapter name, it could be eth1, etc) Then try to...
  10. bcmike

    SOLVED Outbound call timer

    Maybe it's a firewall thing. The Nat mapping is closing after two hours or something like that
  11. bcmike

    Auto Provisioning Help

    How do you provision via http or https? Have you set credentials? Try to provision via http and on your fusion machine, via the command line run: ngrep -d ens15 port 80 -W byline You will have to replace ens15 to whatever your adapter name is. You should see http messages scroll by with some...
  12. bcmike

    How to change internal domain?

    Under Advanced=>Domains, if you select your domain the domain name field is editable. My assumption is that if you change it all the child entries under that uuid would change as well. I have never tried it though so I don't know for sure. If you do try it, make sure the domain your changing...
  13. bcmike

    Migration from OpenSIPS to Kamailio

    I know you probably have a complex use case and want to roll your own, but if you want to get something up quick you might want to check out DSipRouter: https://dsiprouter.org/ It's a Kamailio GUI and they have a Fusion integration as well.
  14. bcmike

    MOH Issue

    My stuff is on an older version..
  15. bcmike

    MOH Issue

    I worked through a similar problem, there's usually something about "reverting to default" during the call. Or I could be leading you a on a wild goose chase LOL! However that was my issue.
  16. bcmike

    MOH Issue

    I'd look at your logs and see if there's something in there about not being able to play the file. Fusion will revert back to default if it can't play the file and I'm thinking since you have so many codec options somethings getting confused when accepting a call from the outside. We have a...
  17. bcmike

    MOH Issue

    In your music on hold category do you have 8 kHz files (that are actually encoded at 8k)? Maybe your internals are a wideband codec but your inbounds are G711?
  18. bcmike

    MOH Issue

    Try setting your ring strategy to "Enterprise" .
  19. bcmike

    Elastic Search, Logstash, and Kibana (ELK) stack for Freeswitch

    Thanks for this, we'll investigate Graylog as well.
  20. bcmike

    Elastic Search, Logstash, and Kibana (ELK) stack for Freeswitch

    Hi, ELK is basically a very fancy log parser. It will suck logs from almost anything and let you put them into dashboards, set alerts, run queries against the data, etc.. I'm currently implementing it to get real time logs from my firewalls so hopefully we can detect attacks quicker. However...