Interpreting Pjsip.conf

Home » Asterisk Users » Interpreting Pjsip.conf
Asterisk Users 1 Comment

I am looking at the pjsip.conf file shipped with Asterisk, and trying to understand it. For example, there are 3 transport-X sections as noted below. Does this mean I could uncomment all 3? Must I uncomment 1? Is the -X portion of [transport-X] arbitrary?

; Basic UDP transport
;
;[transport-udp]
;type=transport
;protocol=udp ;udp,tcp,tls,ws,wss
;bind=0.0.0.0

; UDP transport behind NAT
;
;[transport-udp-nat]
;type=transport
;protocol=udp
;bind=0.0.0.0
;localnet=192.0.2.0/24
;external_media_address=203.0.113.1
;external_signaling_address=203.0.113.1

; Basic IPv6 UDP transport
;
;[transport-udp-ipv6]
;type=transport
;protocol=udp
;bind=::

One thought on - Interpreting Pjsip.conf