Recent content by MrGlasspoole

  1. M

    Upgrade to Buster and move to other machine

    I really have problems understanding the upgrade process of FusionPBX. What exactly are the steps (one by one) that are needed: https://docs.fusionpbx.com/en/latest/advanced/upgrade.html That mix of GIT and GUI is confusing. Do you need to do both? How do I know if there are customized...
  2. M

    Callee sees wrong number

    I have two gateways: 1. Easybell_Bjoern 2. Easybell_Eltern I also have two outbound routes: 1. Easybell_Bjoern.d 2. Easybell_Eltern.d Then i have two extensions: 1001 1002 1002 is my parents DECT phone that should use route "Easybell_Eltern.d" and gateway "Easybell_Eltern". If i would change...
  3. M

    Callee sees wrong number

    Ok, my provider says the setting in there backend overwrites everything i would set in my PBX/Phone. So it doesn't matter what i put in Caller ID, Display name, From user... So maybe my second extension is not using the second gateway? 2017-11-29 12:41:55.044651 [NOTICE]...
  4. M

    Callee sees wrong number

    I have two phone numbers at my provider and made two gateways (one for each number). The problem is that if my parents call somebody then my number shows up. I have in the gateway settings: From User: xxxxxxxx685 In my parents extension settings: Outbound Caller ID Name: xxxxxxxx685 Outbound...
  5. M

    Port confusion

    I'm still not sure what ports to use on the phones. This is what my provider writes: Registrar_________________: sip.easybell.de TLS SIP Port______________: 5061 TCP/UDP SIP Port__________: 5060 (alternative 5064) Proxy_____________________: sip.easybell.de (use only in exceptional cases)...
  6. M

    Port confusion

    I don't really understand that port thing. 1. Why is external 5080 if most providers use 5060? My provider says: TCP/UDP SIP Port 5060 (alternative 5064) So why does it work while FreeSwitch is using 5080? 2. All phones have the random option. Can it not happen that 2 phones trying to use the...
  7. M

    German voice - Cepstral

    I need german and there are only this files i can find: http://freeswitch.xpirio.com/ The problem is they need Cepstral: https://freeswitch.org/confluence/display/FREESWITCH/mod_cepstral But from that tutorial it seems like you have to rebuild/compile FreeSwitch? I also tried this trick here...
  8. M

    Making calls from fs_cli - not working

    Ok, i'm a step further. This two examples work: originate user/1001 &echo() originate user/1001 &playback(/usr/share/freeswitch/sounds/music/default/8000/ponce-preludio-in-e-major.wav) But trying echo by number or tetris not: originate user/1001 *9196 < No Route, Aborting originate user/1001...
  9. M

    Making calls from fs_cli - not working

    It was 370 and i moved it to 333. But nothing changed :(
  10. M

    Making calls from fs_cli - not working

    Ok, trying to ring extension 1001: freeswitch@GORT> originate sofia/internal/1001@10.1.0.11 *2222 -ERR NO_ROUTE_DESTINATION 2017-11-17 17:17:06.360002 [DEBUG] switch_ivr_originate.c:2142 Parsing global variables 2017-11-17 17:17:06.360002 [NOTICE] switch_channel.c:1104 New Channel...
  11. M

    Making calls from fs_cli - not working

    Next thing I cant figure out since hours... I tried all of this: originate sofia/internal/1009@10.1.0.11 &echo() originate sofia/internal/1009@10.1.0.11 *9196 originate sofia/internal/1009@10.1.0.11 &tone_stream-copy() originate sofia/internal/1009@10.1.0.11 *2222 originate...
  12. M

    Webapi Voicemail - how to?

    Ok, the normal voicemail in Fusion is not mod_voicemail? I build my own website/app (Android) for home-automation stuff. I want to control FreeSwitch from the tablet or micro controllers (http, mqtt). That voicemail api is not really important but i thought i try it. Maybe later it would be...
  13. M

    Webapi Voicemail - how to?

    I'm testing the Webapi/XML-RPC but seems like I'm missing something. I did open the Firewall with: iptables -A INPUT -p tcp -s 10.1.0.0/16 --dport 8080 -j ACCEPT I can reach '10.1.0.11:8080/webapi/help' and with the user and password from Advanced -> Settings the page opens. Also...
  14. M

    Where is mod_xml_rpc?

    Ok thanks. I had to install it via apt. I did wonder i can't find it. Because here it sounds like it should be there but is just disabled: http://fusionpbx-docs.readthedocs.io/en/latest/getting_started/security.html#xml-rpc Also i did not know that i just can install in Fusion like in a normal...