-
when I am reloading pjsip I am getting:
vandana-server*CLI> pjsip reload
Module ‘res_pjsip.so’ reloaded successfully.
Module ‘res_pjsip_authenticator_digest.so’ reloaded successfully.
Module ‘res_pjsip_endpoint_identifier_ip.so’ reloaded successfully.
Module ‘res_pjsip_mwi.so’ reloaded successfully.
Module ‘res_pjsip_notify.so’ reloaded successfully.
Module ‘res_pjsip_outbound_publish.so’ reloaded successfully.
Module ‘res_pjsip_publish_asterisk.so’ reloaded successfully.
Module ‘res_pjsip_outbound_registration.so’ reloaded successfully.
– Reloading module ‘res_pjsip.so’ (Basic SIP resource)
[Jan 22 12:29:37] NOTICE[22212]: sorcery.c:1348 sorcery_object_load: Type ‘system’ is not reloadable, maintaining previous values
– Reloading module ‘res_pjsip_authenticator_digest.so’ (PJSIP authentication resource)
– Reloading module ‘res_pjsip_endpoint_identifier_ip.so’ (PJSIP IP endpoint identifier)
– Reloading module ‘res_pjsip_mwi.so’ (PJSIP MWI resource)
– Reloading module ‘res_pjsip_notify.so’ (CLI/AMI PJSIP NOTIFY Support)
– Reloading module ‘res_pjsip_outbound_publish.so’ (PJSIP Outbound Publish Support)
– Reloading module ‘res_pjsip_publish_asterisk.so’ (PJSIP Asterisk Event PUBLISH Support)
– Reloading module ‘res_pjsip_outbound_registration.so’ (PJSIP Outbound Registration Support)
[Jan 22 12:29:42] WARNING[22212]: res_pjsip_registrar.c:1166 find_registrar_aor: AOR ‘’ not found for endpoint ‘1001’ (X.X.X.X:5060)
[Jan 22 12:29:42] WARNING[22212]: res_pjsip_outbound_registration.c:1386 handle_registration_response: Fatal response ‘404’ received from ‘sip:X.X.X.X:5060’ on registration attempt to ‘sip:1001@X.X.X.X:5060’, stopping outbound registration
[Jan 22 12:29:45] WARNING[22212]: res_pjsip_registrar.c:1166 find_registrar_aor: AOR ‘’ not found for endpoint ‘1000’ (X.X.X.X:5060)
[Jan 22 12:29:45] WARNING[22212]: res_pjsip_outbound_registration.c:1386 handle_registration_response: Fatal response ‘404’ received from ‘sip:X.X.X.X:5060’ on registration attempt to ‘sip:1000@10.0.1.86:5060’, stopping outbound registration
[Jan 22 14:01:00] WARNING[22301]: res_pjsip_registrar.c:1166 find_registrar_aor: AOR ‘’ not found for endpoint ‘1001’ (X.X.X.X:5060)
[Jan 22 14:01:00] WARNING[22301]: res_pjsip_registrar.c:1166 find_registrar_aor: AOR ‘’ not found for endpoint ‘1000’ (X.X.X.X:5060) -
If I am trying to make call from Linphone on different VM I am getting:
Executing [1001@outbound:1] Dial(“PJSIP/1000-0000000f”, “PJSIP/1001@1000”) in new stack
– Called PJSIP/1001@1000
[Jan 22 14:33:14] ERROR[22376]: res_pjsip_outbound_authenticator_digest.c:450 digest_create_request_with_auth: Endpoint: ‘1000’: There were no auth ids available
== Everyone is busy/congested at this time (1:0/0/1)
– Executing [1001@outbound:2] Dial(“PJSIP/1000-0000000f”, “PJSIP/1001@1001”) in new stack
– Called PJSIP/1001@1001
[Jan 22 14:33:14] ERROR[22376]: res_pjsip_outbound_authenticator_digest.c:450 digest_create_request_with_auth: Endpoint: ‘1001’: There were no auth ids available
== Everyone is busy/congested at this time (1:0/0/1)
– Auto fallthrough, channel ‘PJSIP/1000-0000000f’ status is ‘CHANUNAVAIL’ -
Endpoints state is NOT IN USE and Registrations status is Rejected
-
Below are my files for reference
pjsip.conf
[transport-udp]
type = transport
protocol = udp
bind = 0.0.0.0:5060
[outbound_auth_1000]
type = auth
auth_type = userpass
username = 1000
password = password
[outbound_aor_1000]
type = aor
contact = sip:1000@X.X.X.X:5060
max_contacts = 2
[outbound_registration_1000]
type = registration
outbound_auth = outbound_auth_1000
server_uri = sip:X.X.X.X:5060
client_uri = sip:1000@X.X.X.X:5060
contact_user = 1000
transport = transport-udp
retry_interval = 60
[1000]
type = endpoint
transport = transport-udp
context = outbound
disallow = all
allow = ulaw
auth = outbound_auth_1000
aors = outbound_aor_1000
[outbound_auth_1001]
type = auth
auth_type = userpass
username = 1001
password = password
[outbound_aor_1001]
type = aor
contact = sip:1001@X.X.X.X:5060
max_contacts = 2
[outbound_registration_1001]
type = registration
outbound_auth = outbound_auth_1001
server_uri = sip:X.X.X.X:5060
client_uri = sip:1001@X.X.X.X:5060
contact_user = 1001
transport = transport-udp
retry_interval = 60
[1001]
type = endpoint
transport = transport-udp
context = outbound
disallow = all
allow = ulaw
auth = outbound_auth_1001
aors = outbound_aor_1001
extensions.conf
[outbound]
exten => _X.,1,Dial(PJSIP/${EXTEN}@1000)
exten => _X.,2,Dial(PJSIP/${EXTEN}@1001)
ari.conf
[general]
enabled = yes
pretty = yes
[user1]
type = user
read_only = no
password = password
I am not able to make calls please help.