Search results

  1. Adrian Fretwell

    Softphone recommendation

    The recommendation may deffer depending on the platform on which you intend to run the softphone. For the PC/Workstation Saraphone is a nice option. https://github.com/gmaruzz/saraphone For the mobile, I have used both Zoiper and Bria, with no issues. Not used it for a long time but Zoiper...
  2. Adrian Fretwell

    Something is wrong with my freeswitch config/startup

    Hi, yes I understand now, I have put 2 and 2 together! I will try to work through a raspberry Pi install myself so I can better understand what you are encountering. Please bear with me, because I am quite busy at the moment. Does anything change if you restart the Pi?
  3. Adrian Fretwell

    Ring Group Issues

    The reason your SLA behaves differently when called from a ring group is the way the bridge statement is built from the contact details. May be you can get some packet captures... Many ITSPs will not allow multiple registrations to a single extension because, they operate a per seat charging...
  4. Adrian Fretwell

    Something is wrong with my freeswitch config/startup

    Someone else contacted me recently about getting this running on a Raspberry Pi. Your issue may be around freeswitch loading its modules, if there is nothing in the log and freeswitch is running, then chances are mod_logfile is not loaded. I will do a bit of digging into this and get back to...
  5. Adrian Fretwell

    Ring Group Issues

    What you are describing with your 201, sounds like "shared line appearance". This is not well supported by FreeSWITCH, see the link below: https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Configuration/Shared-Line-Appearance_13174046/ As the page says, there are some settings...
  6. Adrian Fretwell

    Ring Group Issues

    I have never seen what you are describing. You may need to describe your setup in more detail, provide some log files and/or screenshots. We have very complicated ring groups working with features such as delays and the confirm mechanism for mobile phone destinations.
  7. Adrian Fretwell

    Ring Group Issues

    I would not recommend turning the caching off, but you can reduce it's time. In /home/django-pbx/pbx/pbx/settings.py there is a cache section. You will see the 300, this is seconds (five min), you could maybe set this to 10. CACHES = { 'default': { 'BACKEND'...
  8. Adrian Fretwell

    Ring Group Issues

    It could be a caching issue, did you flush the dialplan cache? (Utilities->Clear Cache) PS: Dialplans are cached for five minutes.
  9. Adrian Fretwell

    Ring Group Issues

    When you say you can't get them to ring together, what is happening? Is just one ringing? or nothing at all?
  10. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    Hi @babak I have not yet noticed any difference, but we don't have any very heavily loaded systems to compare performance with. Several people have been doing some load testing using sipp with no reported issues. SqLite in ramfs is going to be about as fast as you can get, but I don't mind...
  11. Adrian Fretwell

    New FreeSWITCH Db application added.

    A new application has been added to the DjangoPBX Applications repository: https://github.com/djangopbx/djangopbx-applications If, in the installer, you opted to move the FreeSWITCH database from SQLite into PostgreSql, then this application provides access to the FreeSWITCH tables and also...
  12. Adrian Fretwell

    DjangoPBX House keeping application added.

    I didn't like having add-on shell scripts for ordinary house keeping tasks. So now we have an application that takes care of many of these tasks. Making database and file backups Removing json content form XML CDR records Converting .wav files to mp3s to save on storage space Removing call...
  13. Adrian Fretwell

    Unblocking IP's from fail2ban

    If I remember correctly there is an option to unban everything, I can't test it for you because we no longer use fail2ban. fail2ban-client unban --all
  14. Adrian Fretwell

    Unblocking IP's from fail2ban

    That would probably be the name, but I don't think sip-auth-fail should stop you getting to the GUI.
  15. Adrian Fretwell

    yealink set remote phone book for transfer to directory

    Well we do now, because we no longer use FusionPBX.
  16. Adrian Fretwell

    yealink set remote phone book for transfer to directory

    I try to stick with Yealinks, It's nice to only have the one manufacturer to deal with, but the customer generally chooses the model. We have more t42s models out there than anything else but we are currently selling a lot of T53s and t54ws.
  17. Adrian Fretwell

    yealink set remote phone book for transfer to directory

    I don't get that issue on a T46s, maybe it is phone model specific.
  18. Adrian Fretwell

    Unblocking IP's from fail2ban

    It depends on which jail is blocking you. fail2ban-client set <jail> unbanip <ip> fail2ban-client set sshd unbanip 1.2.3.4 If the version of FusionPBX you are using still uses iptables then you will be able see a list of firewall rules with the following command: iptables -nvL Look for...
  19. Adrian Fretwell

    yealink set remote phone book for transfer to directory

    It is the local phone book. Directory->Remote Phone Book->Local Phone Book.
  20. Adrian Fretwell

    Many single extension tenants.

    @DigitalDaz That is exactly what we did back in 2016, and it's still running well today. I added a Django GUI wrap around it in 2020. I may eventually publish that on Github.