Transports
Here you can define transports that will be used for SIP signaling. You can then assign the selected transport to SIP channels. If you do not assign any, the transport used by the client will be used.

Creating, Editing and Deleting a Transport
Create a new transport by clicking the New Record button located in the top toolbar. Edit by clicking the Edit button. If you wish to remove a transport, click the Delete button. You can also edit and delete by right-clicking on the selected transport.

Transport Properties

- Active — enables or disables the use of the transport
- Name — transport name
- Data — transport configuration content. Below are examples from Asterisk documentation. Variables that work with values from Global SIP Settings: %BIND_IP% — SIP IP address, %BIND_PORT% — SIP port, %TLS_BIND_PORT% — TLS SIP port, %NAT% — sets the public address in SIP headers, %TOS%, %COS%
; Basic UDP transport[transport-udp]type=transportprotocol=udpbind=%BIND_IP%:%BIND_PORT%tos=%TOS%cos=%COS%%NAT%
; UDP transport behind NAT[transport-udp-nat]type=transportprotocol=udpbind=%BIND_IP%:%BIND_PORT%tos=%TOS%cos=%COS%local_net=192.168.0.0/16external_media_address=1.2.3.4external_signaling_address=1.2.3.4
; Basic IPv6 UDP transport[transport-udp6]type=transportprotocol=udpbind=[::]:%BIND_PORT%
; IPv4 TLS transport example[transport-tls]type=transportprotocol=tlsbind=%BIND_IP%:%TLS_BIND_PORT%cert_file=/etc/asterisk/keys/asterisk.pemca_list_file=/etc/asterisk/keys/ca.crtmethod=tlsv1
; IPv4 TCP transport with Keepalive example[transport-tcp]type=transportprotocol=tcpbind=%BIND_IP%:%BIND_PORT%tos=%TOS%cos=%COS%%NAT%
; IPv4 TLS transport with Keepalive example[transport-tls-keepalive]type=transportprotocol=tlsbind=%BIND_IP%:%TLS_BIND_PORT%cert_file=/etc/asterisk/keys/asterisk.pemca_list_file=/etc/asterisk/keys/ca.crtmethod=tlsv1- Note — informational text