ITC-2300 VoIP Lab Sample pjsip.conf File

From ITCwiki
Revision as of 23:07, 5 November 2019 by BenFranske (talk | contribs) (Created page with "The following shows an example of the things you may need to change in your pjsip.conf file. =Example Minimal pjsip.conf File Changes= <pre> [simpletrans] type=transport proto...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The following shows an example of the things you may need to change in your pjsip.conf file.

Example Minimal pjsip.conf File Changes

[simpletrans]
type=transport
protocol=udp
bind=0.0.0.0

[debra-line1] ; The value inside the [] will be the username on the device
type=endpoint
context=default
disallow=all
allow=ulaw
transport=simpletrans
auth=debra-auth ; This will be the name for the authentication section of the configuration found below
aors=debra-line1 ; This will be the name for the AoRs registration section of the configuration found below
trust_id_outbound=yes
callerid=Debra Donaldson <2903> ; This is the caller ID name and extension (in the < >)

[debra-line1] ; This is the AoRs registration entry. The value in the [ ] must match the endpoint aors line
type=aor
max_contacts=1

[debra-auth] ; This is the authentication entry. The value in the [ ] must match the endpoint auth line
type=auth
auth_type=userpass
password=debrapass ; This is the authentication name used by the endpoint
username=debra ; This is the authentication password used by the endpoint

Voicemail pjsip.conf File Changes

You can add the ability to enable the Message Waiting Indicator (MWI) lamp on SIP phones when there is a message in a mailbox.