[Freeswitch-users] Freeswitch does not start in Debian 9/10

David Villasmil david.villasmil.work at gmail.com
Mon Aug 10 22:55:31 UTC 2020


Check the listen ip on event_socket.

This can’t be a clean install. A clean install comes with 127.0.0.1 and
8021.

On Mon, 10 Aug 2020 at 21:12, John Tuxies <atuxnull at gmail.com> wrote:

> @Villasmil
> from modules.conf i commented out the <load module="mod_event_socket"/>.
> Also the event_socket.conf.xml has port 8021, but
> netstat -putan | grep 8021does not return anything.
>
> @Conroy
> The cli of FS starts, but there is an error for ESL.
>
>
> This is a clean install failed attempt #27 from Fresswitch's Debian
> Repository.
>
>
> On Sat, Aug 8, 2020 at 5:17 PM David Villasmil <
> david.villasmil.work at gmail.com> wrote:
>
>> If
>>
>> service freeswitch status
>>
>> Returns freeswitch is active and
>>
>> ps -ef
>>
>> Shows freeswitch running, but still can’t connect with fs_cli and
>> according to your
>>
>> netstat -putan | grep 8021
>>
>> Either the event_socket is not loaded or it’s not listening on 8021
>>
>> You need to look at modules.xml file and make sure “event_socket” is not
>> commented out. And check event_socket.conf.xml and check the port it is
>> listening on.
>>
>>
>>
>> On Fri, 7 Aug 2020 at 23:13, Lawrence Conroy <lconroy at insensate.co.uk>
>> wrote:
>>
>>> Hi there,
>>>  yesterday (6th cAugust) you said that the first thing you did was start
>>> it manually as root but had the same error.
>>> From the many responses you've given (including this one), it looks like
>>> you're trying to run this as a service.
>>>
>>> When I've had problems working out what's happening (or not) with
>>> freeswitch, this is what I've done:
>>>
>>> Start freeswitch manually SO I HAVE AN INTERACTIVE CONSOLE LISTING I CAN
>>> DEBUG ...
>>>
>>> 1. If freeswitch is running (because you've enabled the service -- 'ps
>>> -auxwww|grep freeswitch' is, as always, your friend), stop it with
>>> 'systemctl stop freeswitch'
>>> Now you have a known state (without a zombie freeswitch running in the
>>> background).
>>>
>>> 2. from the command line, type: '/usr/local/freeswitch/bin/freeswitch -u
>>> freeswitch -g freeswitch'
>>> [note -- no -ncwait, no -nc]
>>> You should have screens full of startup lines where everything is
>>> initialised,  and, with luck, eventually a freeswitch prompt
>>> Check each of the startup lines to see if there's been an error.
>>> If you do get to the prompt and 'status' shows it's running OK, that
>>> tells you that freeswitch CAN startup & run on your system -- so the
>>> problem is connecting to it when it's backgrounded.
>>> Else If it stops with an error, you have other problems and freeswitch
>>> is not happy starting up to a stable state.
>>>
>>> => Give that a go -- whatever happens, you should at least be able to
>>> get some more answers.
>>> I'd STRONGLY recommend you try to get freeswitch running manually like
>>> this before worrying about anything else (such as ITSP or WAN IP setups)
>>> yet.
>>>
>>> best regards
>>>   Lawrence
>>>
>>>
>>>
>>> On 7 Aug 2020, at 06:08, John Tuxies <atuxnull at gmail.com> wrote:
>>>
>>> > Hi. Here is the output of the aforementioned commands. Still i cannot
>>> connect.
>>> >
>>> > root at debian: ~ $ fs_cli -r
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > [INFO] fs_cli.c:1697 main() Retrying
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > [INFO] fs_cli.c:1697 main() Retrying
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > [INFO] fs_cli.c:1697 main() Retrying
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > ^CInterrupted.
>>> > root at debian: ~ $
>>> >
>>> > root at debian: ~ $ netstat -putan | grep 8021
>>> > root at debian: ~ $
>>> >
>>> >
>>> >
>>> >
>>> > root at debian: ~ $ service freeswitch status
>>> > ● freeswitch.service - freeswitch
>>> >    Loaded: loaded (/lib/systemd/system/freeswitch.service; enabled;
>>> vendor preset: enabled)
>>> >    Active: active (running) since Fri 2020-08-07 08:02:15 EEST; 4min
>>> 38s ago
>>> >   Process: 436 ExecStartPre=/bin/chown -R ${USER}:${GROUP}
>>> /var/lib/freeswitch /var/log/freeswitch /etc/freeswitch
>>> /usr/share/freeswitch /va
>>> >   Process: 508 ExecStart=/usr/bin/freeswitch -u ${USER} -g ${GROUP}
>>> -ncwait ${DAEMON_OPTS} (code=exited, status=0/SUCCESS)
>>> >  Main PID: 509 (freeswitch)
>>> >     Tasks: 32 (limit: 1148)
>>> >    Memory: 211.8M
>>> >    CGroup: /system.slice/freeswitch.service
>>> >            └─509 /usr/bin/freeswitch -u freeswitch -g freeswitch
>>> -ncwait -nonat
>>> >
>>> > Aug 07 08:02:07 debian systemd[1]: Starting freeswitch...
>>> > Aug 07 08:02:09 debian freeswitch[508]: 509 Backgrounding.
>>> > Aug 07 08:02:15 debian freeswitch[508]: FreeSWITCH[508] Waiting for
>>> background process pid:509 to be ready.....
>>> > Aug 07 08:02:15 debian freeswitch[508]: FreeSWITCH[508] System Ready
>>> pid:509
>>> > Aug 07 08:02:15 debian systemd[1]: Started freeswitch.
>>> > lines 1-16/16 (END)
>>> > root at debian: ~ $
>>> >
>>> >
>>> >
>>> >
>>> > root at debian: ~ $ lsb_release -a
>>> > No LSB modules are available.
>>> > Distributor ID: Debian
>>> > Description:    Debian GNU/Linux 10 (buster)
>>> > Release:        10
>>> > Codename:       buster
>>> > root at debian: ~ $
>>> > root at debian: ~ $ fs_cli -H ::
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > Usage: fs_cli [-H <host>] [-P <port>] [-p <secret>] [-d <level>] [-x
>>> command] [-t <timeout_ms>] [profile]
>>> >
>>> >   -?,-h --help                    Usage Information
>>> >   -H, --host=hostname             Host to connect
>>> >   -P, --port=port                 Port to connect (1 - 65535)
>>> >   -u, --user=user at domain          user at domain
>>> >   -p, --password=password         Password
>>> >   -i, --interrupt                 Allow Control-c to interrupt
>>> >   -x, --execute=command           Execute Command and Exit
>>> >   -l, --loglevel=command          Log Level
>>> >   -U, --log-uuid                  Include UUID in log output
>>> >   -S, --log-uuid-short            Include shortened UUID in log output
>>> >   -q, --quiet                     Disable logging
>>> >   -r, --retry                     Retry connection on failure
>>> >   -R, --reconnect                 Reconnect if disconnected
>>> >   -d, --debug=level               Debug Level (0 - 7)
>>> >   -b, --batchmode                 Batch mode
>>> >   -t, --timeout                   Timeout for API commands (in
>>> milliseconds)
>>> >   -T, --connect-timeout           Timeout for socket connection (in
>>> milliseconds)
>>> >   -n, --no-color                  Disable color
>>> >
>>> > root at debian: ~ $
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > On Thu, Aug 6, 2020 at 11:34 PM David Villasmil <
>>> david.villasmil.work at gmail.com> wrote:
>>> > It’s not “group”. It’s “grep”
>>> >
>>> > netstat -putan | grep 8021
>>> >
>>> >
>>> >
>>> > On Thu, 6 Aug 2020 at 20:55, David Villasmil <
>>> david.villasmil.work at gmail.com> wrote:
>>> > Do:
>>> >
>>> > netstat -putan | Grup 8021
>>> >
>>> > And make sure freeswitch is listening for the event socket
>>> >
>>> > If it is and you still can’t connect, try
>>> >
>>> > fs_cli -H ::
>>> >
>>> >
>>> >
>>> > On Thu, 6 Aug 2020 at 19:52, John Tuxies <atuxnull at gmail.com> wrote:
>>> > here is the log file. It starts, but i cannot connect to the console
>>> > root at debian: ~ $ fs_cli -r
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > [INFO] fs_cli.c:1697 main() Retrying
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > [INFO] fs_cli.c:1697 main() Retrying
>>> > [ERROR] fs_cli.c:1691 main() Error Connecting []
>>> > ^CInterrupted.
>>> > root at debian: ~ $ ps -aux | grep freeswitch
>>> > freeswi+   603  2.3 10.5 910728 106172 ?       S<Lsl 09:07   0:00
>>> /usr/local/freeswitch/bin/freeswitch -u freeswitch -g freeswitch -nonat -rp
>>> > root       651  0.0  0.0   6208   892 pts/0    S+   09:08   0:00 grep
>>> freeswitch
>>> > root at debian: ~ $ service freeswitch status
>>> > ● freeswitch.service - freeswitch
>>> >    Loaded: loaded (/etc/systemd/system/freeswitch.service; enabled;
>>> vendor preset: enabled)
>>> >    Active: deactivating (stop-sigterm) (Result: timeout)
>>> > Cntrl PID: 603 (freeswitch)
>>> >     Tasks: 8 (limit: 1148)
>>> >    Memory: 149.1M
>>> >    CGroup: /system.slice/freeswitch.service
>>> >            └─603 /usr/local/freeswitch/bin/freeswitch -u freeswitch -g
>>> freeswitch -nonat -rp
>>> >
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1186 Deleting Codec b64 116 B64
>>> (STANDARD) 8000hz 20ms
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [CONSOLE] switch_loadable_module.c:2399 mod_b64 has no shutdown routine
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1263 Deleting Application 'socket'
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1318 Deleting API Function 'event_sink'
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [CONSOLE] switch_loadable_module.c:2396 Stopping: mod_event_socket
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1158 Deleting Endpoint 'SIP'
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1158 Deleting Endpoint 'IAX2'
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1230 Deleting Dialplan 'asterisk'
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1263 Deleting Application 'Dial'
>>> > Aug 04 09:08:35 debian freeswitch[603]: 2020-08-04 09:08:35.393517
>>> [NOTICE] switch_loadable_module.c:1263 Deleting Application 'Goto'
>>> > root at debian: ~ $
>>> >
>>> >
>>> > Any solution on that please?
>>> >
>>> > On Sun, Aug 2, 2020 at 7:40 AM John Tuxies <atuxnull at gmail.com> wrote:
>>> > Hi David. Starting it manually as root, without any changes, ia the
>>> first thing done. Same error
>>> >
>>> >
>>> > On Saturday, August 1, 2020, David Villasmil <
>>> david.villasmil.work at gmail.com> wrote:
>>> > Start it manually with root and see what happens
>>> >
>>> > On Fri, 31 Jul 2020 at 23:21, John Covici <covici at ccs.covici.com>
>>> wrote:
>>> > Don't change your systemd file, execute by hand from the command line
>>> > with the exact same command and see what happens.
>>> >
>>> > On Fri, 31 Jul 2020 00:36:40 -0400,
>>> > John Tuxies wrote:
>>> > >
>>> > > [1  <multipart/alternative (7bit)>]
>>> > > [1.1  <text/plain; UTF-8 (quoted-printable)>]
>>> > > Does anyone have a solution to make it work in Debian (9 or 10),
>>> please?
>>> > > It is imperative to fix it as soon as possible.
>>> > >
>>> > >
>>> > >
>>> > > On Thu, Jul 30, 2020 at 8:54 AM John Tuxies <atuxnull at gmail.com>
>>> wrote:
>>> > >
>>> > > > I am afraid that it does not work. Here is what i have in
>>> > > > */etc/systemd/system/freeswitch.service*
>>> > > > *ExecStart=/usr/bin/freeswitch -u freeswitch -g freeswitch -nonat*
>>> > > > and here is the outcome
>>> > > >
>>> > > >
>>> > > >
>>> > > >
>>> > > >
>>> > > >
>>> > > > *[ERROR] fs_cli.c:1691 main() Error Connecting [][INFO]
>>> fs_cli.c:1697
>>> > > > main() Retrying[ERROR] fs_cli.c:1691 main() Error Connecting
>>> [][INFO]
>>> > > > fs_cli.c:1697 main() Retrying[ERROR] fs_cli.c:1691 main() Error
>>> Connecting
>>> > > > [][INFO] fs_cli.c:1697 main() Retrying[ERROR] fs_cli.c:1691 main()
>>> Error
>>> > > > Connecting []*
>>> > > >
>>> > > > Freeswitch is not starting
>>> > > >
>>> > > >
>>> > > > *root at debian: /etc/systemd/system $ ps aux | grep freeswitchroot
>>>      503
>>> > > >  0.0  0.0   6208   888 pts/0    S+   08:53   0:00 grep
>>> > > > freeswitchroot at debian: /etc/systemd/system $*
>>> > > >
>>> > > >
>>> > > >
>>> > > > On Wed, Jul 29, 2020 at 6:31 PM Flavio Donadio <
>>> flavio at donadio.com.br>
>>> > > > wrote:
>>> > > >
>>> > > >> John,
>>> > > >>
>>> > > >>
>>> > > >> Here is your previous command:
>>> > > >>
>>> > > >> /usr/bin/freeswitch -u freeswitch -g freeswitch -ncwait -nonat
>>> > > >>
>>> > > >> Now, try it like this:
>>> > > >>
>>> > > >> /usr/bin/freeswitch -u freeswitch -g freeswitch -nonat
>>> > > >>
>>> > > >>
>>> > > >> Cheers,
>>> > > >> Flavio
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> On 28 Jul 2020, at 15:30, John Covici <covici at ccs.covici.com>
>>> wrote:
>>> > > >>
>>> > > >> Take your original command and just omit the -ncwiat of whatever
>>> it
>>> > > >> was, I don't have it any more.
>>> > > >>
>>> > > >> On Mon, 27 Jul 2020 14:36:32 -0400,
>>> > > >> John Tuxies wrote:
>>> > > >>
>>> > > >>
>>> > > >> [1  <multipart/alternative (7bit)>]
>>> > > >> [1.1  <text/plain; UTF-8 (quoted-printable)>]
>>> > > >> Hey John.
>>> > > >>
>>> > > >>
>>> > > >> Could you post the whole command please?
>>> > > >> So i could move forward with Freeswitch
>>> > > >>
>>> > > >> On Saturday, July 25, 2020, John Tuxies <atuxnull at gmail.com>
>>> wrote:
>>> > > >>
>>> > > >> Please post the whole command as it should be typed. We are
>>> missing
>>> > > >> something
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> On Friday, July 24, 2020, John Covici <covici at ccs.covici.com>
>>> wrote:
>>> > > >>
>>> > > >> You need to get rid of the -ncwait to see anything.
>>> > > >>
>>> > > >> On Fri, 24 Jul 2020 06:33:20 -0400,
>>> > > >> John Tuxies wrote:
>>> > > >>
>>> > > >>
>>> > > >> [1  <multipart/alternative (7bit)>]
>>> > > >> [1.1  <text/plain; UTF-8 (quoted-printable)>]
>>> > > >> No luck.
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> *root at debA: ~ $ systemctl start freeswitchroot at debA: ~ $ ps -aux
>>> | grep
>>> > > >> freeswifreeswi+ 12569  5.4 10.2 879236 103824 ?       S<Lsl
>>> 13:32   0:01
>>> > > >> /usr/bin/freeswitch -u freeswitch -g freeswitch -ncwait -nonatroot
>>> > > >> 12614  0.0  0.0   6076   892 pts/0    S+   13:32   0:00 grep
>>> > > >> freeswiroot at debA: ~ $ fs_cli -r[ERROR] fs_cli.c:1691 main() Error
>>> > > >> Connecting [][INFO] fs_cli.c:1697 main() Retrying[ERROR]
>>> fs_cli.c:1691
>>> > > >> main() Error Connecting []^CInterrupted.root at debA: ~ $*
>>> > > >>
>>> > > >> On Fri, Jul 24, 2020 at 12:24 AM John Covici <
>>> covici at ccs.covici.com>
>>> > > >>
>>> > > >> wrote:
>>> > > >>
>>> > > >>
>>> > > >> hmmm?  Just take the line from the system unit file, and run it by
>>> > > >> hand from the console, eliminating the -nc parameter.
>>> > > >>
>>> > > >> On Thu, 23 Jul 2020 14:27:12 -0400,
>>> > > >> John Tuxies wrote:
>>> > > >>
>>> > > >>
>>> > > >> [1  <multipart/alternative (7bit)>]
>>> > > >> [1.1  <text/plain; UTF-8 (quoted-printable)>]
>>> > > >> Could you elaborate on how to do that please?
>>> > > >>
>>> > > >> On Thursday, July 23, 2020, John Covici <covici at ccs.covici.com>
>>> > > >>
>>> > > >> wrote:
>>> > > >>
>>> > > >>
>>> > > >> What I do in those cases is execute the freeswitch command by
>>> > > >>
>>> > > >> hand,
>>> > > >>
>>> > > >> eliminating the -nc parameter, if any, but leaving the -u and -g
>>> > > >>
>>> > > >> and
>>> > > >>
>>> > > >> possibly other parameters.  Also, see if there is anything in the
>>> > > >>
>>> > > >> log
>>> > > >>
>>> > > >> file, but the first method may be enlightening.
>>> > > >>
>>> > > >> On Thu, 23 Jul 2020 08:41:46 -0400,
>>> > > >> John Tuxies wrote:
>>> > > >>
>>> > > >>
>>> > > >> [1  <multipart/alternative (7bit)>]
>>> > > >> [1.1  <text/plain; UTF-8 (quoted-printable)>]
>>> > > >> hi Franceso and thanks for the reply. i did install from debian
>>> > > >>
>>> > > >> repo
>>> > > >>
>>> > > >> and
>>> > > >>
>>> > > >> it
>>> > > >>
>>> > > >> should get the systemd, but non the less, i created the file.
>>> > > >>
>>> > > >> Still
>>> > > >>
>>> > > >> Freeswitch refuses to start!
>>> > > >>
>>> > > >> On Thu, Jul 23, 2020 at 10:29 AM Francesco Facco de Lagarda <
>>> > > >> francesco at delagarda.com> wrote:
>>> > > >>
>>> > > >> Did you create Freeswitch service?
>>> > > >>
>>> > > >>
>>> > > >> cd /etc/systemd/system
>>> > > >>
>>> > > >>
>>> > > >> nano freeswitch.service
>>> > > >>
>>> > > >> ; This file in installations built from Master can be found in
>>> > > >> ; /usr/src/freeswitch.git/debian
>>> > > >> ; or
>>> > > >> ; /usr/src/freeswitch/debian
>>> > > >> [Unit]
>>> > > >> Description=freeswitch
>>> > > >> After=syslog.target network.target local-fs.target
>>> > > >> [Service]
>>> > > >> ; service
>>> > > >> Type=forking
>>> > > >> PIDFile=/usr/local/freeswitch/run/freeswitch.pid
>>> > > >> PermissionsStartOnly=true
>>> > > >> ; blank ExecStart= line flushes the list
>>> > > >> ExecStart=
>>> > > >> ExecStart=/usr/local/freeswitch/bin/freeswitch -u freeswitch
>>> > > >>
>>> > > >> -g
>>> > > >>
>>> > > >> freeswitch
>>> > > >>
>>> > > >> -ncwait -nonat -rp
>>> > > >> TimeoutSec=45s
>>> > > >> Restart=on-failure
>>> > > >> ; exec
>>> > > >> WorkingDirectory=/usr/local/freeswitch/bin
>>> > > >> User=root
>>> > > >> Group=daemon
>>> > > >> LimitCORE=infinity
>>> > > >> LimitNOFILE=100000
>>> > > >> LimitNPROC=60000
>>> > > >> ;LimitSTACK=240
>>> > > >> LimitRTPRIO=infinity
>>> > > >> LimitRTTIME=7000000
>>> > > >> IOSchedulingClass=realtime
>>> > > >> IOSchedulingPriority=2
>>> > > >> CPUSchedulingPolicy=rr
>>> > > >> CPUSchedulingPriority=89
>>> > > >> UMask=0007
>>> > > >> [Install]
>>> > > >> WantedBy=multi-user.target
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> Next, notify systemd to look for changes in its configuration:
>>> > > >> systemctl daemon-reload
>>> > > >> Now you are ready to start FreeSWITCH for the first time.
>>> > > >>
>>> > > >> Because
>>> > > >>
>>> > > >> FS is
>>> > > >>
>>> > > >> owned by user freeswitch it should create its databases and
>>> > > >>
>>> > > >> log
>>> > > >>
>>> > > >> files
>>> > > >>
>>> > > >> under
>>> > > >>
>>> > > >> that user (instead of root) so that those files will still be
>>> > > >>
>>> > > >> accessible to
>>> > > >>
>>> > > >> it under future runs.
>>> > > >> systemctl start freeswitch
>>> > > >> To stop FreeSWITCH:
>>> > > >> systemctl stop freeswitch
>>> > > >>
>>> > > >>
>>> > > >> To configure FreeSWITCH to start automatically at boot time:
>>> > > >> systemctl enable freeswitch
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> To be able to launch fs_cli without having to go to bin
>>> > > >>
>>> > > >> directory,
>>> > > >>
>>> > > >> add
>>> > > >>
>>> > > >> directory to path:
>>> > > >>
>>> > > >>
>>> > > >> export PATH=$PATH:/usr/local/freeswitch/bin/
>>> > > >>
>>> > > >> Francesco Facco de Lagarda
>>> > > >>
>>> > > >>
>>> > > >> On 23 Jul 2020, at 03:43, John Tuxies <atuxnull at gmail.com>
>>> > > >>
>>> > > >> wrote:
>>> > > >>
>>> > > >>
>>> > > >> 
>>> > > >> Trying to install Freeswitch in Debian 9 and 10. Both systems
>>> > > >>
>>> > > >> failed to
>>> > > >>
>>> > > >> start:
>>> > > >> Running hooks in
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> * /etc/ca-certificates/update.d...done.done.root at debian: ~ $
>>> > > >>
>>> > > >> fs_cli
>>> > > >>
>>> > > >> -rRS[ERROR] fs_cli.c:1691 main() Error Connecting [][INFO]
>>> > > >>
>>> > > >> fs_cli.c:1697
>>> > > >>
>>> > > >> main() Retrying[ERROR] fs_cli.c:1691 main() Error Connecting
>>> > > >> []^CInterrupted.root at debian: ~ $*
>>> > > >>
>>> > > >> I have tried to install from
>>> > > >>
>>> > > >>
>>> https://freeswitch.org/confluence/display/FREESWITCH/Debian+10+Buster
>>> > > >>
>>> > > >> to
>>> > > >>
>>> > > >> install using debian packages.
>>> > > >>
>>> > > >> Any suggestions, please?
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> ____________________________________________________________
>>> > > >>
>>> > > >> _____________
>>> > > >>
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> > > >>
>>> > > >> https://signalwire.com
>>> > > >>
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS
>>> > > >>
>>> > > >> and PSTN
>>> > > >>
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/
>>> > > >>
>>> > > >> options/freeswitch-users
>>> > > >>
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> ____________________________________________________________
>>> > > >>
>>> > > >> _____________
>>> > > >>
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> > > >>
>>> > > >> https://signalwire.com
>>> > > >>
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS
>>> > > >>
>>> > > >> and PSTN
>>> > > >>
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/
>>> > > >>
>>> > > >> options/freeswitch-users
>>> > > >>
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> [1.2  <text/html; UTF-8 (quoted-printable)>]
>>> > > >> [2  <text/plain; utf-8 (base64)>]
>>> > > >> ____________________________________________________________
>>> > > >>
>>> > > >> _____________
>>> > > >>
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> > > >>
>>> > > >> https://signalwire.com
>>> > > >>
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> > > >>
>>> > > >> PSTN
>>> > > >>
>>> > > >> services.
>>> > > >>
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >>
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:
>>> > > >>
>>> > > >> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > > >>
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >>
>>> > > >> --
>>> > > >> Your life is like a penny.  You're going to lose it.  The
>>> > > >>
>>> > > >> question is:
>>> > > >>
>>> > > >> How do
>>> > > >> you spend it?
>>> > > >>
>>> > > >>         John Covici wb2una
>>> > > >>         covici at ccs.covici.com
>>> > > >>
>>> > > >>
>>> > > >> ____________________________________________________________
>>> > > >>
>>> > > >> _____________
>>> > > >>
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> > > >>
>>> > > >> https://signalwire.com
>>> > > >>
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> > > >>
>>> > > >> PSTN
>>> > > >>
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:
>>> > > >>
>>> > > >> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > > >>
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> [1.2  <text/html; UTF-8 (quoted-printable)>]
>>> > > >> [2  <text/plain; utf-8 (base64)>]
>>> > > >> ____________________________________________________________
>>> > > >>
>>> > > >> _____________
>>> > > >>
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> > > >>
>>> > > >> https://signalwire.com
>>> > > >>
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> PSTN
>>> > > >>
>>> > > >> services.
>>> > > >>
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >>
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/
>>> > > >>
>>> > > >> freeswitch-users
>>> > > >>
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >>
>>> > > >> --
>>> > > >> Your life is like a penny.  You're going to lose it.  The
>>> question is:
>>> > > >> How do
>>> > > >> you spend it?
>>> > > >>
>>> > > >>         John Covici wb2una
>>> > > >>         covici at ccs.covici.com
>>> > > >>
>>> > > >> ____________________________________________________________
>>> > > >>
>>> > > >> _____________
>>> > > >>
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> > > >>
>>> > > >> https://signalwire.com
>>> > > >>
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> PSTN
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/
>>> > > >>
>>> > > >> freeswitch-users
>>> > > >>
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> [1.2  <text/html; UTF-8 (quoted-printable)>]
>>> > > >> [2  <text/plain; utf-8 (base64)>]
>>> > > >> ____________________________________________________________
>>> > > >>
>>> > > >> _____________
>>> > > >>
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> > > >>
>>> > > >> https://signalwire.com
>>> > > >>
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> PSTN
>>> > > >>
>>> > > >> services.
>>> > > >>
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >>
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/
>>> > > >>
>>> > > >> freeswitch-users
>>> > > >>
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >>
>>> > > >> --
>>> > > >> Your life is like a penny.  You're going to lose it.  The
>>> question is:
>>> > > >> How do
>>> > > >> you spend it?
>>> > > >>
>>> > > >>         John Covici wb2una
>>> > > >>         covici at ccs.covici.com
>>> > > >>
>>> > > >>
>>> _________________________________________________________________________
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> PSTN
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >>
>>> > > >>
>>> > > >> [1.2  <text/html; UTF-8 (quoted-printable)>]
>>> > > >> [2  <text/plain; utf-8 (base64)>]
>>> > > >>
>>> _________________________________________________________________________
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> PSTN
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >>
>>> > > >> --
>>> > > >> Your life is like a penny.  You're going to lose it.  The
>>> question is:
>>> > > >> How do
>>> > > >> you spend it?
>>> > > >>
>>> > > >>         John Covici wb2una
>>> > > >>         covici at ccs.covici.com
>>> > > >>
>>> > > >>
>>> _________________________________________________________________________
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> PSTN
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >>
>>> > > >>
>>> _________________________________________________________________________
>>> > > >>
>>> > > >> The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > > >> Enhance your FreeSWITCH install with disruptive priced SMS and
>>> PSTN
>>> > > >> services.
>>> > > >> Build your next product on our scalable cloud platform.
>>> > > >>
>>> > > >> Join our online community to chat in real time
>>> > > >> https://signalwire.community
>>> > > >>
>>> > > >> Professional FreeSWITCH Services
>>> > > >> sales at freeswitch.com
>>> > > >> https://freeswitch.com
>>> > > >>
>>> > > >> Official FreeSWITCH Sites
>>> > > >> https://freeswitch.com/oss
>>> > > >> https://freeswitch.org/confluence
>>> > > >> https://cluecon.com
>>> > > >>
>>> > > >> FreeSWITCH-users mailing list
>>> > > >> FreeSWITCH-users at lists.freeswitch.org
>>> > > >> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > >> UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > > >> https://freeswitch.com
>>> > > >
>>> > > >
>>> > > [1.2  <text/html; UTF-8 (quoted-printable)>]
>>> > > [2  <text/plain; utf-8 (base64)>]
>>> > >
>>> _________________________________________________________________________
>>> > >
>>> > > The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
>>> services.
>>> > > Build your next product on our scalable cloud platform.
>>> > >
>>> > > Join our online community to chat in real time
>>> https://signalwire.community
>>> > >
>>> > > Professional FreeSWITCH Services
>>> > > sales at freeswitch.com
>>> > > https://freeswitch.com
>>> > >
>>> > > Official FreeSWITCH Sites
>>> > > https://freeswitch.com/oss
>>> > > https://freeswitch.org/confluence
>>> > > https://cluecon.com
>>> > >
>>> > > FreeSWITCH-users mailing list
>>> > > FreeSWITCH-users at lists.freeswitch.org
>>> > > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > > UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > > https://freeswitch.com
>>> >
>>> > --
>>> > Your life is like a penny.  You're going to lose it.  The question is:
>>> > How do
>>> > you spend it?
>>> >
>>> >          John Covici wb2una
>>> >          covici at ccs.covici.com
>>> >
>>> >
>>> _________________________________________________________________________
>>> >
>>> > The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
>>> services.
>>> > Build your next product on our scalable cloud platform.
>>> >
>>> > Join our online community to chat in real time
>>> https://signalwire.community
>>> >
>>> > Professional FreeSWITCH Services
>>> > sales at freeswitch.com
>>> > https://freeswitch.com
>>> >
>>> > Official FreeSWITCH Sites
>>> > https://freeswitch.com/oss
>>> > https://freeswitch.org/confluence
>>> > https://cluecon.com
>>> >
>>> > FreeSWITCH-users mailing list
>>> > FreeSWITCH-users at lists.freeswitch.org
>>> > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > https://freeswitch.com
>>> > --
>>> > Regards,
>>> >
>>> > David Villasmil
>>> > email: david.villasmil.work at gmail.com
>>> > phone: +34669448337
>>> >
>>> _________________________________________________________________________
>>> >
>>> > The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
>>> services.
>>> > Build your next product on our scalable cloud platform.
>>> >
>>> > Join our online community to chat in real time
>>> https://signalwire.community
>>> >
>>> > Professional FreeSWITCH Services
>>> > sales at freeswitch.com
>>> > https://freeswitch.com
>>> >
>>> > Official FreeSWITCH Sites
>>> > https://freeswitch.com/oss
>>> > https://freeswitch.org/confluence
>>> > https://cluecon.com
>>> >
>>> > FreeSWITCH-users mailing list
>>> > FreeSWITCH-users at lists.freeswitch.org
>>> > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > https://freeswitch.com
>>> > --
>>> > Regards,
>>> >
>>> > David Villasmil
>>> > email: david.villasmil.work at gmail.com
>>> > phone: +34669448337
>>> > --
>>> > Regards,
>>> >
>>> > David Villasmil
>>> > email: david.villasmil.work at gmail.com
>>> > phone: +34669448337
>>> >
>>> _________________________________________________________________________
>>> >
>>> > The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
>>> services.
>>> > Build your next product on our scalable cloud platform.
>>> >
>>> > Join our online community to chat in real time
>>> https://signalwire.community
>>> >
>>> > Professional FreeSWITCH Services
>>> > sales at freeswitch.com
>>> > https://freeswitch.com
>>> >
>>> > Official FreeSWITCH Sites
>>> > https://freeswitch.com/oss
>>> > https://freeswitch.org/confluence
>>> > https://cluecon.com
>>> >
>>> > FreeSWITCH-users mailing list
>>> > FreeSWITCH-users at lists.freeswitch.org
>>> > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > https://freeswitch.com
>>> >
>>> _________________________________________________________________________
>>> >
>>> > The FreeSWITCH project is sponsored by SignalWire
>>> https://signalwire.com
>>> > Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
>>> services.
>>> > Build your next product on our scalable cloud platform.
>>> >
>>> > Join our online community to chat in real time
>>> https://signalwire.community
>>> >
>>> > Professional FreeSWITCH Services
>>> > sales at freeswitch.com
>>> > https://freeswitch.com
>>> >
>>> > Official FreeSWITCH Sites
>>> > https://freeswitch.com/oss
>>> > https://freeswitch.org/confluence
>>> > https://cluecon.com
>>> >
>>> > FreeSWITCH-users mailing list
>>> > FreeSWITCH-users at lists.freeswitch.org
>>> > http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> > UNSUBSCRIBE:
>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> > https://freeswitch.com
>>>
>>>
>>> _________________________________________________________________________
>>>
>>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
>>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
>>> services.
>>> Build your next product on our scalable cloud platform.
>>>
>>> Join our online community to chat in real time
>>> https://signalwire.community
>>>
>>> Professional FreeSWITCH Services
>>> sales at freeswitch.com
>>> https://freeswitch.com
>>>
>>> Official FreeSWITCH Sites
>>> https://freeswitch.com/oss
>>> https://freeswitch.org/confluence
>>> https://cluecon.com
>>>
>>> FreeSWITCH-users mailing list
>>> FreeSWITCH-users at lists.freeswitch.org
>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> https://freeswitch.com
>>
>> --
>> Regards,
>>
>> David Villasmil
>> email: david.villasmil.work at gmail.com
>> phone: +34669448337
>> _________________________________________________________________________
>>
>> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
>> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
>> services.
>> Build your next product on our scalable cloud platform.
>>
>> Join our online community to chat in real time
>> https://signalwire.community
>>
>> Professional FreeSWITCH Services
>> sales at freeswitch.com
>> https://freeswitch.com
>>
>> Official FreeSWITCH Sites
>> https://freeswitch.com/oss
>> https://freeswitch.org/confluence
>> https://cluecon.com
>>
>> FreeSWITCH-users mailing list
>> FreeSWITCH-users at lists.freeswitch.org
>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
>> https://freeswitch.com
>
> _________________________________________________________________________
>
> The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
> Enhance your FreeSWITCH install with disruptive priced SMS and PSTN
> services.
> Build your next product on our scalable cloud platform.
>
> Join our online community to chat in real time
> https://signalwire.community
>
> Professional FreeSWITCH Services
> sales at freeswitch.com
> https://freeswitch.com
>
> Official FreeSWITCH Sites
> https://freeswitch.com/oss
> https://freeswitch.org/confluence
> https://cluecon.com
>
> FreeSWITCH-users mailing list
> FreeSWITCH-users at lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
> https://freeswitch.com

-- 
Regards,

David Villasmil
email: david.villasmil.work at gmail.com
phone: +34669448337
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20200810/d0374d05/attachment-0001.html>


More information about the FreeSWITCH-users mailing list