Displaying 20 results from an estimated 500 matches similar to: "Asterisk 13 externip"
2016 Sep 15
2
Asterisk 13 externip
On Thu, Sep 15, 2016 at 7:17 AM, Faheem Muhammad <faheem2084 at gmail.com>
wrote:
>
>
> On Wednesday, 14 September 2016, Madushan Geethanga <
> mgliyanage.rc at gmail.com> wrote:
>
>> Hi,
>>
>> What is the equal option for externip in asterisk 13 with pjsip. I have
>> tried
>>
>> external_media_address=XX.XX.XX.XX
>>
2016 Sep 15
2
Asterisk 13 externip
On Thu, Sep 15, 2016 at 8:38 AM, Madushan Geethanga <mgliyanage.rc at gmail.com
> wrote:
> Hi,
>
> Thanks for the reply.
>
> Yes my PABX is on the cloud when I try to register to the server, the
> server sends registration OK with public address but OPTION method
> includes the private address of the server in from header not the public
> address. I have include
2016 Sep 16
3
Asterisk 13 externip
On Fri, Sep 16, 2016 at 5:55 AM, Madushan Geethanga <mgliyanage.rc at gmail.com
> wrote:
> Hi,
>
> Tried with both softphone (Ekiga) and snom IP phone, contact header
> contains the public IP. but from header contains the private IP. after
> OPTIONS method sent by the server. client sends an Register with expires 0.
>
Ok, did setting from_domain work?
>
> Best
2016 Sep 09
2
Asterisk 13 PJSIP with Snom 710
Le 09/09/2016 ? 18:32, Madushan Geethanga a ?crit :
> Hi,
If you're not using RTP encryption did you uncheck the option in your
RTP TAB from identity ?
>
> This is the log. ex dialling 0 from snom phone
>
>
> <--- Received SIP request (1230 bytes) from UDP:123.231.72.210:33878
> <http://123.231.72.210:33878> --->
> INVITE sip:0 at 54.206.59.252
2016 Mar 03
2
Asterisk Call Forwarding
Hi,
Thanks Phil, I will implement this and get back to you.
Best Regards,
Madushan
On Thu, Mar 3, 2016 at 4:12 PM, Phil Reynolds <
phil-asterisk at tinsleyviaduct.com> wrote:
> On Thu, 3 Mar 2016 08:21:14 +0530
> Madushan Geethanga <mgliyanage.rc at gmail.com> wrote:
>
> > Hi
> > I have to setup call forwarding. How do we setup Call forwarding in
> >
2017 Mar 16
2
PJSIP client - Incoming doesn't work after IP change
Hi All,
I have a Asterisk 13 with PJSIP running on cloud, and snom phones at client
site, but when my clients home internet public ip changes incoming does not
work. the PJSIP Contact seems to be not updated. is there a solution for
this. I have allowed multiple registrations to the extension.
Best Regards,
Madushan
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2016 Sep 09
2
Asterisk 13 PJSIP with Snom 710
Hi,
I'm trying to setup snom 710 phone with asterisk 13 with PJSIP. inbound is
working fine but i cannot dial out. i don't hear anything on the phone and
asterisk CLI also does not show anything. my config is. please advice.
[2001]
type=endpoint
context=out-local
disallow=all
allow=ulaw
allow=alaw
transport=system-udp
auth=2001
2016 Mar 03
2
Asterisk Call Forwarding
Hi
I have to setup call forwarding. How do we setup Call forwarding in
asterisk?. Eg. user dials a number and insert some mobile number for
forwarding and dial another number to cancel the forwarding. thanks a lot.
Best Regards,
Madushan?
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2017 Oct 09
6
PJSIP, NAT and STUN/ICE
I'm quite new to Asterisk and using Asterisk 13 on FreeBSD current. Asterisk is behind a
NAT router, the physical setup is very much a trivial one. The Asterisk PBX is supposed
to act as the telephone gateway for several VoIP/SIP phones.
I'm using throughout pjsip as configuration, I have no experience with chan_sip since I
started recently using Asterisk for several SoHo and lab's
2016 Jul 15
2
VoiceMail Audio playing
Hi Guys
Which module on Asterisk is the one in charge of playing the VoiceMail Server Audio to the end customer?
I have work with MRFP but is it a module included in the SW? Need and external source?
BR
Joaquin
This email is confidential and may be subject to privilege. If you are not the intended recipient, please do not copy or disclose its content but contact the sender immediately upon
2015 Mar 05
2
PJSIP configuration for AWS/EC2 based Asterisk 13.1.0
Hello All,
I have an Asterisk server v13.1.0 running on EC2 and I am able to connect
and register SIP devices and "see" them on the asterisk CLI. I am also able
to place calls, but I am not able to hear any audio on either end after the
call is picked up.
I was wondering if you can tell me what a minimal configuration for
Asterisk on EC2 looks like. My current pjsip.conf configuration
2023 Apr 08
1
TLS and NAT
Hello Steve,
use the following configuration for the transport and bind this
transport to the trunk:
[transport_name]
type=transport
protocol=tls
bind=192.168.13.24 ; your bind IP
ca_list_file=/etc/pki/tls/certs/ca-bundle.crt
; method=tlsv1_2
verify_server=yes
allow_reload=no
;tos=0xb8
;cos=3
external_media_address=your.ext.host.name ; hostname pointing to your
ext. IP
2016 Mar 03
3
RTP / NAT question ( pjsip )
Thank you for the response Joshua .
I had rtp_symmetric=yes before I wrote the email, then I set it to no, restart asterisk, and tried to make the call from the remote endpoint again but still tcpdump is showing me the RTP packets are being sent from Asterisk to the private IP.
tcpdump on asterisk server showing UDP packet bound for my remote endpoints internal IP:
17:07:57.130212 IP
2023 Apr 09
1
TLS and NAT
Thanks, Michael. A few questions:
Is [transport_name] a reserved word, or am I supposed to replace it with
a name of my own, like '[did-transport]'?
Some of the keywords I haven't seen before. Is ca_list_file supposed to
be an aggregate of the public and private key? And what are the
'method,' 'tos' and 'cos' keywords, which are commented out in your
2023 Apr 07
1
TLS and NAT
I want to configure communication with my phone provider using TLS for
all the obvious reasons. Since I'm behind a firewall, I'll be needing to
do it with NAT. There are examples of UDP plus NAT in pjsip.conf, but
none for TLS plus NAT. Would it be correct to set up the TLS transport
stanza to look like the [transport-udp-nat] stanza example, replacing
UDP with TLS in lines like
2014 Dec 16
3
PJSIP configuration question
Ok Dan, try this... I was able to get this to work behind a NAT and with
ip address authentication.
[global]
type = global
debug = yes
[transport1]
type = transport
bind = 0.0.0.0
protocol = udp
*local_net=<yourlocalnet I.E. 10.10.10.10/24
<http://10.10.10.10/24>>external_media_address=<your public ip
address>external_signaling_address=<your public address>*
2020 Jan 23
3
PJSIP and Grandstream Wave with TSL and SRTP
On Thursday, January 23, 2020 11:31:46 PM CET Sean Bright wrote:
> On 1/21/2020 9:18 PM, hw wrote:
> > [transport-tls]
> > type = transport
> > protocol = tls
> > bind = 0.0.0.0:5061
> > tos = cs5
> > cert_file = /etc/asterisk/cert/asterisk.pem
> > ca_list_file = /etc/pki/tls/certs/ca-bundle.crt
> > method = sslv23
>
> This is what mine
2016 Jan 26
2
PJSIP Stun/ICE
I have an asterisk 13 server behind NAT on a dynamic IP Address. It is
running the PJSIP Stack
It is registering to another asterisk 13 server that is on a Static IP
outside of the firewall at a different location (also on the PJSIP Stack).
How do we implement STUN/ICE on the server behind the dynamic Address. It
does not appear to be registering properly without knowing the NAT pubic
2017 Jul 29
2
[asterisk13] Multiple transport objects of same protocol in pjsip.conf
Scenario:
Our Asterisk 13 PBX (on network 192.168.254.0/24, bound to 192.168.254.1:5060) is behind
a NAT, acting as a client to our ITSPs SIP server. But also, this Asterisk is server for
various VoIP telephones.
Acoording to Asterisk's wiki, the transport section of pjsip.conf is configured as
follows:
; Transport via UDP
[transport-nat-udp]
type= transport
2018 Feb 08
3
pjsip trunking configuration issue
Greetings !
My goal is to get Twilio trunking working, and with TLS/SRTP.
I see this concerning message in my log:
[Feb 7 16:50:26] ERROR[20596] res_sorcery_config.c: Could not create an object of type 'endpoint' with id ?twilio' from configuration file ?pjsip.conf?
Thus, ?pjsip show endpoints? does not show the endpoint for the Twilio trunk.
Hoping for a sanity check of