Displaying 2 results from an estimated 2 matches for "publicipofec2instance".
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
2015 Mar 06
0
PJSIP configuration for AWS/EC2 based Asterisk 13.1.0
...I found the issue.
The key is to add
rtp_symmetric=yes
Here's what my final configuration looks like:
[transport-udp]
type=transport
protocol=udp
bind=0.0.0.0
;; for within EC2
local_net=172.31.32.0/20
;; For softphones within EC2
local_net=192.168.1.0/24
external_media_address=<publicIPOfEC2Instance>
external_signaling_address=<publicIPOfEC2Instance>
;Templates for the necessary config sections
[endpoint_internal](!)
type=endpoint
context=from-internal
disallow=all
allow=!all,ulaw
direct_media=no
rtp_symmetric=yes
On Thu, Mar 5, 2015 at 5:52 PM, Sonny Rajagopalan <
son...