Search results

  1. Adrian Fretwell

    Route call to external number

    This is where all GUI wraps can cause confusion, not just the PBX you are using. An outbound route is really just a dialplan entry like any other. I don't use Fusion now but there used to be a menu item called Dailplan->Outbound Routes Here you used to be able to add as many extra lines as...
  2. Adrian Fretwell

    Route call to external number

    Agree with voipBull, but will just add, if you don't want to create another outbound route you can just bounce through the dialplan without creating an actual extension, see image below, this creates a dummy extension 6843 and also allows you to set channel variables the same as you may do in an...
  3. Adrian Fretwell

    Sharing a full system phone reboot script

    Be careful running this kind of script on a big system, you may want to consider dividing groups of endpoints into chunks and put in a small delay between each chunk for two reasons: 1. You don't want to create an sustained outbound SIP message load that may saturate mod_sofia. 2. If you run a...
  4. Adrian Fretwell

    SOLVED Limit the number of simultaneous calls per domain

    https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Troubleshooting-Debugging/Hangup-Cause-Code-Table_3964945/
  5. Adrian Fretwell

    SOLVED Limit the number of simultaneous calls per domain

    It will largely depend on: A. What else you have set in the inbound route/dialplan. or B. What the calling system is programmed to do with a USER_BUSY response.
  6. Adrian Fretwell

    Retrieve deleted voice files

    There are (were) some Linux deleted file recovery tools, I used them many many years ago with some success but can't remember the details now. It will probably depend on your filing system type, and it is also very important that the disk is not written to until you recover the files. I would...
  7. Adrian Fretwell

    SOLVED Limit the number of simultaneous calls per domain

    Just one line should do: action limit hash myinout ${domain_uuid} ${max_calls} !USER_BUSY
  8. Adrian Fretwell

    SOLVED Limit the number of simultaneous calls per domain

    Your fist one should work but you will need to set the "inline" flag on the set action otherwise the max_calls variable will not be available for the limit action. You may also want to use a more simple name for the realm without the (, |, and) characters.
  9. Adrian Fretwell

    SOLVED Limit the number of simultaneous calls per domain

    Have a look at https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Modules/mod-dptools/3375201/ When you say "limit the number of incoming and outgoing channels per domain", I assume you mean inbound and outbound calls via gateways not simply channels connecting two extensions. If...
  10. Adrian Fretwell

    How can I use ${sip_h_Referred-By} in an inbound dialplan?

    Unless it's changed in newer versions of FusionPBX, you can just select any of the ${sip_ choices and then click on it to edit it to whatever you want. Screen shot below:
  11. Adrian Fretwell

    SOLVED sip calling with udp working intermittently, but tcp always working good ?

    Yes, so the lower capture confirms it, there is fragmentation going on. The choices are 1. Switch to TCP (bigger system overhead) or 2. Reduce your UDP packet size. One of the easiest way of reducing the UDP packet size is to limit the number of codecs you offer, thus reducing the size of the...
  12. Adrian Fretwell

    SOLVED sip calling with udp working intermittently, but tcp always working good ?

    Maybe start by looking at your UDP packet sizes. If the packet size is exceeding the MTU, then it will be fragmented, TCP is unaffected by this. I have seen it many times when an initial INVITE message is OK, but then the proxy responds with w WWW-Authenticate, the client sends the INVITE...
  13. Adrian Fretwell

    Need to pass +1 as caller ID

    @alan If I understand your original question correctly, you are asking how to set the caller_id in the dialplan, if so, then just set effective_caller_id_number=+1xxxx etc. If you are trying to make a call from India, look like it originated in the USA, your call may get blocked or have the CLI...
  14. Adrian Fretwell

    Ringback not working, Choppy voice, and Cannot hear callers

    I apologise for butting in here, I noticed that in your original post you mention cross talk, it was common in the analogue telephony days, but now few people take reports of it seriously with VoIP, however there are ways it can happen. If nothing had changed in your Fusion/Freeswitch...
  15. Adrian Fretwell

    Two step verification

    Thank you for that, and I agree about the spam problem. I sometimes find 2FA difficult, because I work in places that don't allow mobile phones, and I don't always have an email account setup on the laptop I may be using at the time. I do generally have a soft phone though, so I can call...
  16. Adrian Fretwell

    Two step verification

    I was forced to enable two step verification this morning when logging in here. I see there is an option to disable it, but if I do , will it just force me to enable it again?
  17. Adrian Fretwell

    Mod_python3 freezes after running two scripts at the same time

    I wanted to use python in preference to Lua whilst developing DjangoPBX. But I found the interface buggy, I could never track it down but there seemed to be some memory corruption between successive calls to Python within the FreeSWITCH module. I did submit some pull requests to FreeSWITCH...
  18. Adrian Fretwell

    UK Voice Sounds

    We bought the ones we use many years ago, the vendors are still going, link below: https://www.westany.com/united_kingdom_voice_prompts/
  19. Adrian Fretwell

    Webrtc Client

    I have no plans currently. But there is no reason why it can't be done. You can configure the bindings in the SIP profiles and adjust the firewall rules accordingly, the only caveat is that there is no hook currently for a successful webrtc registration to place a whitelist rule into the...
  20. Adrian Fretwell

    Proxmox virtualisation choices

    @AGIDI Thankyou we have run on XCP-Ng for years with no problems, but are seriously considering moving to Proxmox, I just haven't managed to work through the find detail yet. I wondered if an LXC Container would be better for FreeSWITCH than a VM.