Search results

  1. DigitalDaz

    SOLVED udp protocol is not working with internal call

    It is very possible that your UDP packets are being fragmented because they are too big and that is why the calls are not working. TCP will not suffer from this problem. Using TCP for SIP is not a problem, all the media streams, eg audio/video still use UDP anyway.
  2. DigitalDaz

    Fresh install: DESTINATION_OUT_OF_ORDER on all inbound calls

    What is your destination entry for this look like? The answer would appear to be here: a1a63f08-cb55-4a47-8a3e-3eaa43db4cbb 2023-09-14 03:43:30.980362 99.07% [ERR] switch_core_session.c:2760 Invalid Application It looks like it is trying to call an invalid application.
  3. DigitalDaz

    SOLVED udp protocol is not working with internal call

    So freeswitch is clearly listening there on UDP on the internal profile: udp 0 0 172.26.9.223:5060 Are you saying the phones register OK with UDP? On another note, why are you not using TCP anyway?
  4. DigitalDaz

    SOLVED udp protocol is not working with internal call

    What does this command show? If netstat is not installed, use: apt install net-tools netstat -antup | grep freeswitch
  5. DigitalDaz

    SOLVED udp protocol is not working with internal call

    UDP should absolutely be working unless you have made changes to stop it working.
  6. DigitalDaz

    Event Guard

    But if event guard is in play, they shouldn't be seen in the freeswitch cli. Try restarting the event guard service, the iptables chains get created when the service starts.
  7. DigitalDaz

    VIP List

    Being a redis fan, because of its speed and the fact that it will be in memory, thats what I'd use. Load the numbers into redis and then use a lua script in the dialplan to do the lookup.
  8. DigitalDaz

    Assigning Specific Extension to Seperate Outbound Routes

    Sorry, not to user, here is an example off a live box put it just under the user exists condition....
  9. DigitalDaz

    Assigning Specific Extension to Seperate Outbound Routes

    My point is, if you just are trying to present a different caller id, you do not need multiple trunks if you are using a standard carrier. I use one carrier with hundreds of caller IDs. If you do really need a trunk per extension then just add a condition to the outbound route that matches the...
  10. DigitalDaz

    Assigning Specific Extension to Seperate Outbound Routes

    Have you set a specific caller ID in the outbound route? If not, this should just work. Check the outgoing invite to the carrier with SNGREP to see if it is being sent to the cariier correctly and maybe the carrier is overriding it.
  11. DigitalDaz

    Assigning Specific Extension to Seperate Outbound Routes

    What are you trying to achieve her by using specific outbound routes, is it just to get a different caller id or is there another purpose?
  12. DigitalDaz

    SOLVED Changing settings does not apply but shows in GUI

    Cache files on new systems are in /var/cache/fusionpbx That is the directory you want to empty.
  13. DigitalDaz

    SOLVED call is rejected, fusionpbx is hosted on aws

    Show us the actual message rather than the flow. Press F6 on the invite
  14. DigitalDaz

    PBX refusing just one specific number with a 480 temp unavailable

    So you have a destination configured for 18555285538? That is what they are sending it as? If you have the destination set up, post a log from fs_cli.
  15. DigitalDaz

    Strange behavior port forwarding 5060

    We need the detail not a picture. Inside the register press F6 and paste that.
  16. DigitalDaz

    Strange behavior port forwarding 5060

    Post some logs when doing the forwarding, preferably using sngrep of the attempt to register to the provider.
  17. DigitalDaz

    Call Privacy

    Which bit is not working? eg, is the privacy id set in the outbound invite, etc?
  18. DigitalDaz

    Deny overriding customer key/button changes and additions when provisioning

    What is this order 195 you are referring to? Your 195 may not be the same as mine. Everything that you can set in the webui should be available to set in provisioning, variables may need to be added to the template if they are not already there but it is doable. The gui helps with this. For...
  19. DigitalDaz

    Deny overriding customer key/button changes and additions when provisioning

    Hi, Everything is probably working as expected. I'm not familiar with Grandstream but it looks like the phones are set to autoprovision at boot. Ideally, you want the BLFs etc set in the device config so that the server provisions the buttons otherwise you will always face this situation when...