Search results

  1. Adrian Fretwell

    Ring Group - Prefix Name & Number - Not Saving

    Like @JamesBorne said above, it may be worth having a look at the code. You could clone the latest master into a separate directory and then run a diff on ring_group_edit.php between your current version and the latest. I have also known some web browsers to do strange things, I tend to avoid...
  2. Adrian Fretwell

    Ring Group - Prefix Name & Number - Not Saving

    Jim, I don't know what software versions you are running with but... FusionPBX 4.5.11 pulled 9th Jan Freeswitch 1.10.2 Unable to replicate the issue. Both CID Name Prefix and CID Number Prefix save and work correctly.
  3. Adrian Fretwell

    Tips for safely upgrade

    Do your backup at the command line interface. https://docs.fusionpbx.com/en/latest/getting_started/backup.html https://github.com/fusionpbx/fusionpbx-install.sh/blob/master/debian/resources/backup/fusionpbx-backup The public document covering upgrades is here...
  4. Adrian Fretwell

    Sip nat only working when forced external ip into internal profile rather than varibles

    I have seen this before, this thread may shed some light. https://www.pbxforums.com/threads/unable-to-change-internal-profile-ip.620/
  5. Adrian Fretwell

    Extensions register/unregister at begining of work time

    Hmm... I wonder if it could be associated with load, do you know what the loading is when the problems start? Do you ever see entries in the freeswitch log (depending on loglevel) similar to: 2020-01-26 13:04:12.677862 [WARNING] switch_core_db.c:92 SQLite is BUSY, ...
  6. Adrian Fretwell

    Extensions register/unregister at begining of work time

    First, when registrartions start to drop, check your fail2ban logs, you could have a rouge device that is causing your IP to be put in a drop list (f2b jail). iptables -nvL will show you at a glance what jails are active, what IP address are in the jails and how may packets have been matched...
  7. Adrian Fretwell

    Hangup not noticed by other PSTN party?

    OK, that may be the reason then. If the system is connected via ISDN, then it should get a distant end clear down notification, but it has to be configured correctly to recognise it and act upon it. If it is on an analogue line (copper pair) then we get into loop guarded and loop unguarded...
  8. Adrian Fretwell

    Hangup not noticed by other PSTN party?

    A thought just occurred to me... You said that mobiles hang up as expected but calls from PSTN landlines do not. Are these landline endpoints analogue phones?
  9. Adrian Fretwell

    Opensips integration

    Opensips is hugely versatile with its routing script and loadable modules, but with this versatility comes complexity. From what you have written, it sounds like you are in for a monumental learning curve! There are hundreds of different ways that you could use Opensips, but you have not said...
  10. Adrian Fretwell

    Device Profiles not taking effect

    No, they are not hidden. They have been removed from the latest builds for security reasons. They are now in separate repositories so you can fetch them and add them back in manually, at your own risk, if you wish.
  11. Adrian Fretwell

    Device Profiles not taking effect

    Setting a provision variable only has an effect if it is coded into the provision template. For example if you look at: /var/www/fusionpbx/resources/templates/provision/yealink/t46s/{$mac}.cfg You will see lines like: account.1.label = {$account.1.display_name} account.1.display_name =...
  12. Adrian Fretwell

    Hangup not noticed by other PSTN party?

    Hi I have had a quick look through your latest log/SIP trace, I can't see anything obviously wrong with it right now, I will have a closer look in the morning. I feel sure the issue is not within your network. I'm not at all familiar with the way your provider works. The wholesale providers I...
  13. Adrian Fretwell

    Hangup not noticed by other PSTN party?

    For this call the hangup looks fine from your side. Your edge sends the BYE and 131ms later it is responded to with a 200 OK from your provider. Does this hangup delay happen for every inbound call from a land line? Clearly from what you say, an inbound call from a mobile hangs up OK. Have...
  14. Adrian Fretwell

    Hangup not noticed by other PSTN party?

    You may get more help if you describe your system setup and post relevant log entries and/or a packet capture of the SIP messages. Just a guess, it may be an issue related to NAT. Possibly your BYE is going missing because of an incorrect SIP contact header. Without more detail we can only guess.
  15. Adrian Fretwell

    SAFEHOSTNAME

    If you want to change your host name you only need to edit a few files: /etc/hostname /etc/hosts /etc/mailname /etc/ssh/ssh_host_ed25519_key.pub /etc/ssh/ssh_host_rsa_key.pub /etc/ssh/ssh_host_ecdsa_key.pub and depending on the build possibly /etc/motd
  16. Adrian Fretwell

    SAFEHOSTNAME

    So you have the answer, it is the name of your server.
  17. Adrian Fretwell

    SAFEHOSTNAME

    Try cat /etc/hostname What does that come back with?
  18. Adrian Fretwell

    New installation and I need help -- outbound calling not working

    The only difference between the two bridge statements is the 1 inserted before the $1. The $1 is a variable populated from the capturing group, the bit between the () brackets, in your regular expression "^\+?1?(\d{10})$". XML is basically very simple, it is a method of representing data using...
  19. Adrian Fretwell

    Call Recording Problem

    Exactly as @ad5ou says but make sure to download the pre-install and then edit config.sh and then run the install. Don't do it as a one liner as per the quick install documentation because then you will not get chance to edit the config file.
  20. Adrian Fretwell

    Call Recording Problem

    Have a look at the docs, all you need is here: https://docs.fusionpbx.com/en/latest/advanced/version_upgrade.html If all you want to do is upgrade the fusion code and nothing else then: Backup your database first mv /var/www/fusionpbx /var/www/fusionpbx-old-version cd /var/www && git clone -b...