Search results

  1. Adrian Fretwell

    anyone deployed on AWS Lightsail

    nft delete chain inet filter trace_chain That should do it.
  2. Adrian Fretwell

    Subdomain Help

    Ok, so do all the subdomain names point to the same IP address? and is this the IP address of your FusionPBX box?
  3. Adrian Fretwell

    anyone deployed on AWS Lightsail

    The system is designed to be run on an internet facing machine, I've even got it running on a Raspberry Pi connected directly to the internet. There is no reason why you can't use the nftables firewall behind a NAT, all you need do is comment out the whole section: # Drop IPv4s not in internet...
  4. Adrian Fretwell

    Zoiper Registration

    Why do you need such short registration times? In most cases 1800 or 3600 seconds is fine. Short registration times can seriously increase the workload on you server if you have subscriptions and BLFs etc. A push server being static will generally want a 3600 second registration or even...
  5. Adrian Fretwell

    Subdomain Help

    I have seen your PM, we will work through what you need and post back here for the benefit of others. I will pick this up in the (UK) morning.
  6. Adrian Fretwell

    Subdomain Help

    I'm not sure what "set them up through GoDaddy" means here. Do you understand A records and CNAME? An A record associates your domain name with an IP address: mypbx.com 1800 IN A 1.2.3.4 A CNAME allows you to reference the A record: customer-1 1800...
  7. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    Ok the files in autoload_configs are: callcenter.conf.xml db.conf.xml fifo.conf.xml switch.conf.xml voicemail.conf.xml If you are delivering configuration dynamically with DjangoPBX or similar, modifications to callcenter.conf.xml are not required. The parameters reference variables that are...
  8. Adrian Fretwell

    anyone deployed on AWS Lightsail

    Do those lists exist now? What output do you see if you issues the following commands as root? /usr/sbin/nft list set netdev filter ipv4_block_list /usr/sbin/nft list set inet filter ipv4_white_list
  9. Adrian Fretwell

    anyone deployed on AWS Lightsail

    I've had some issues with the drop fragments rule in the past, you could also try commenting that out at some point. https://github.com/djangopbx/djangopbx/issues/5
  10. Adrian Fretwell

    anyone deployed on AWS Lightsail

    @ardyhash Thankyou for looking at this. I can't see a reason why we can't use 0.0.0.0 as long as listen 127.0.0.1:8009; remains intact.
  11. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    Yes, I will help if I can, I'm out most of today and tomorrow, so there may be a delay in my responding. The DjangoPBX install script will give you some help on how we do it. I have replicated the relevant sections below for you: The steps are basically: 1. Make sure you create the FreeSWITCH...
  12. Adrian Fretwell

    Outbound call issues.

    Your provider responded with a 403 forbidden. Your call was rejected for some reason. These debug logs are large and do contain a lot of information, don't become intimidated by that, just sit down and read through it slowly, and, for sure, it will tell you what is happening. I cannot comment...
  13. Adrian Fretwell

    DST a Week Early

    Hi, has anyone else in the UK seen their Yealink phones switch to BST a week early? About 600 of our phones have gone to BST a week early, I suspect it is an issue with the autoDST.xml file provided with the default firmware. I have raised a ticket with Yealink.
  14. Adrian Fretwell

    Outbound call issues.

    You could put a literal 9 on the front of the expression or make it optional with a question mark: ^9?(?:\+1|1)?([2-9]\d{2}[2-9]\d{2}\d{4})$
  15. Adrian Fretwell

    Outbound call issues.

    Your regex is not matching the 9.
  16. Adrian Fretwell

    Redis changing to a non-free licensing model.

    I have learned that Redis is changing to a non-free licensing model. Forks have already started appearing. I have a very strict policy of "open source only" for the components that make up my VoIP platform so I now need to work out if Redis remains a viable option for me, or if I need to look...
  17. Adrian Fretwell

    anyone deployed on AWS Lightsail

    I'll just give this one a nudge. Any AWS experts out there? I have been involved in this for @s2svoip, I have logged in to the machine and it is still not clear to me exactly what is going on. This debian12 deployment used by AWS appears to have iptables installed despite nft now being the...
  18. Adrian Fretwell

    Access Control List

    External port is 5080 by default, this is the port that will normally face your SIP providers. You would normally put the IP address of your SIP provider in the ACL. Freeswitch gets is 't configuration from DjangoPBX via mod_xml_curl. The diagram below may help you understand the basic...
  19. Adrian Fretwell

    Softphone recommendation

    No, I don't. I is my intention to create an add-on application to integrate Saraphone into DjangoPBX, but I have not started that yet.
  20. Adrian Fretwell

    Something is wrong with my freeswitch config/startup

    I'm sure you will work out what to do from reading the install script, but what you will need is a management command called menudefaults, you must be logged in as django-pbx user or su - djangopbx to run any management command...