ast: add identify block

This commit is contained in:
mpmc 2023-06-24 15:42:33 +01:00
parent ce5d7e191d
commit 72f5bcca59
3 changed files with 14 additions and 8 deletions

View File

@ -1,13 +1,9 @@
;
; /etc/asterisk/pjsip_wizard_trunk_one.conf
; /etc/asterisk/pjsip_trunk_one.conf
;
; For a local system to register as a trunk.
;
[trunk-one](trunk-defaults)
; Local network address of trunk.
remote_hosts = 192.168.255.2
; Accept inbound auth for this trunk.
accepts_auth = yes
@ -27,3 +23,12 @@ endpoint/context = from-trunk-one
; Only one registration please.
aor/max_contacts = 1
[trunk-one]
; An identify block is needed for this trunk to match for incoming calls.
type = identify
; IP / hostname.
match = 192.168.255.2
; What endpoint does this identify block belong to?
endpoint = trunk-one

View File

@ -1,4 +1,5 @@
; /etc/asterisk/pjsip_wizard_users.conf
;
; /etc/asterisk/pjsip_users.conf
;
; Modifed and "borrowed" (read: stolen) https://www.sacredheartsc.com/blog/building-a-personal-voip-system/
;

View File

@ -48,8 +48,8 @@ endpoint/subscribe_context = subscribe
;
; Load user extensions.
#tryinclude pjsip_wizard_users.conf
#tryinclude pjsip_users.conf
; Load trunks.
#tryinclude pjsip_wizard_trunk_one.conf
#tryinclude pjsip_trunk_one.conf