Search results

  1. Adrian Fretwell

    Proxmox virtualisation choices

    Does anyone have a view on virtual machine vs LXC containers?
  2. Adrian Fretwell

    call tranfers from extensins using *99 or 99, calls just drops.

    In your Dialplan screen: Remove the data=" and the expression=" text. Remove the "/> from the end of each line. Finally the set actions should come before the Transfer action. PS: Please post questions only once.
  3. Adrian Fretwell

    Proxmox virtualisation choices

    Hello One & All, I know many people/organisations choose to use Proxmox for their virtualisation. I find Proxmox interesting because it offers the choice of running an LXC container as a lightweight alternative to fully virtualised KVM machines. If you use Proxmox, how you virtualise your...
  4. Adrian Fretwell

    freeSWITCH-403 forbidden sip/2.0 (Intermittent 403 Forbidden Errors with SIP WebRTC Client on FreeSWITCH)

    Hi @manikanta , I'm sorry I do not know the answer. Are you absolutely sure it is WebRTC related? The 403, would suggest that FreeSWITCH received the response to the WWW-Authenticate OK, but either (username or password was incorrect) or FreeSWITCH was unable to retrieve the directory...
  5. Adrian Fretwell

    Recreating 1471 functionality

    In your inbound route put the caller ID into a hash store: Then create a dialplan entry called last_caller with a destination number of 1471, see screenshot below:
  6. Adrian Fretwell

    Anybody using this in production

    Thank you for the information, I have not seen MirtaPBX and I will drop you a PM. I haven't used Asterisk for a long time, I have compiled it from source many times in the distant past and also played with distributions like Trixbox. When we ran just purely a SIP trunking platform I used...
  7. Adrian Fretwell

    Hallo everyone

    Hi Alan, you are very welcome.
  8. Adrian Fretwell

    Anybody using this in production

    Hi @gflow I wanted to give others time to respond before jumping in, but as no one has... The DjangoPBX software is still at the Alpha stage of testing, so I imagine it would only be a few brave individuals that will have deployed into production. I have a couple of instances in production...
  9. Adrian Fretwell

    FusionPBX Outbound calls dropped at 30 seconds

    Default command line sngrep with no switches should provide the detail you require.
  10. Adrian Fretwell

    FusionPBX Outbound calls dropped at 30 seconds

    Sounds like the ACK following the 200 OK is going missing. See if you can get a packet capture of a call to prove this. sngrep is a very useful tool.
  11. Adrian Fretwell

    Add a user to more than one domain

    I believe the database structure only allows for a user to be allocated to one domain. There is a one to many relationship between Domains and Users. One Domain can have many users but a User can have only one Domain.
  12. Adrian Fretwell

    502 Bad Gateway

    Having said the above, I notice that there is a line in the installer that changes the Nginx user: sed -i "s/www-data/django-pbx/g" /etc/nginx/nginx.conf I looked at a couple of working test installs done last week and they all have www-data as the Nginx user in the nginx.conf file. I ran...
  13. Adrian Fretwell

    502 Bad Gateway

    Probably need to did into this a little deeper. There should be no problem with Nginx running as the www-data user. uWSGI creates the socket with user django-pbx and group www-data so there should be no permissions issue. As @jcre says we need to confirm the operating system, and if it is a...
  14. Adrian Fretwell

    IP Allowed Addresses

    It doesn't really mater, I would upgrade and then do this immediately after.
  15. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    @manikanta when you come back, either PM me or start a new thread rather than adding to this one.
  16. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    @manikanta I'm sorry, I don't have time for calls. I freely help people when time allows, but I do need to work at the day job.
  17. Adrian Fretwell

    Help with my security - SIP profile

    No $$ variables are fine. I just meant that I can't tell what they are set to. You probably set some of them in Switch Variables and FreeSWITCH uses defaults for the rest. I don't think there is a problem with your SIP profile. Someone hacking a customer phone is far more likely. We had that...
  18. Adrian Fretwell

    Move FreeSWITCH DB from SQLite into PostgreSql

    I'm sorry but I do not understand what you are trying to do or how you are trying to do it. I read your point 1 above and I don't even understand that! By default FreeSWITCH uses an SQLite database for internal storage including registrations, why do you need to keep a record of them? You can...
  19. Adrian Fretwell

    Help with my security - SIP profile

    The first thing I noticed is that $${internal_auth_calls is missing a closing bracket. There is not much we can tell from a SIP profile alone, for example we don't know the actual value in the $$ variables. Can you be more specific about what happened? Did they use a password? I assume it...
  20. Adrian Fretwell

    SOLVED bridge Inbound transport=udp to outbound transport=tls

    If I'm understanding your question correctly, bridging outbound using TLS is fairly straight forward. You can pass all the required parameters in the bridge statement: <action application="bridge" data="{rtp_secure_media=true}sofia/internal/$1@server.b.com:5061;transport=tls"/> In the above...