Asterisk 13.6.0/How To Set Up Default_outbound_endpoint

Home » Asterisk Users » Asterisk 13.6.0/How To Set Up Default_outbound_endpoint
Asterisk Users 1 Comment

I am trying to set up a default outbound endpoint for my Asterisk 13.6.0
PBX, and per https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+Configuration_res_pjsip, I do in pjsip.conf:

[global]
default_outbound_endpoint=SillyEndpoint

[SillyEndpoint]
type=endpoint

etc.

However, when I check the endpoint in Asterisk CLI, it doesn’t seem to take:

ip-2-1-7-4*CLI> pjsip show settings

Global Settings:

ParameterName : ParameterValue
==================================================== debug : no default_from_user : asterisk default_outbound_endpoint : default_outbound_endpoint endpoint_identifier_order : ip,username,anonymous keep_alive_interval : 0
max_forwards : 70
max_initial_qualify_time : 0
user_agent : Asterisk PBX 13.6.0

Any ideas why? Is this a bug?

One thought on - Asterisk 13.6.0/How To Set Up Default_outbound_endpoint

  • I figured this out. The issue was that I did not have a

    type=global

    configuration in the [global] context. It should be:

    [global]
    type=global default_outbound_endpoint=SillyEndpoint

    [SillyEndpoint]
    type=endpoint

    etc.