Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. [transport_t](!)
  2. type=transport
  3. bind=0.0.0.0
  4.  
  5. [transport_udp](transport_t)
  6. protocol=udp
  7.  
  8. [transport_ws](transport_t)
  9. protocol=ws
  10.  
  11. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  12.  
  13. [encryption_t](!)
  14. media_encryption=dtls
  15. dtls_verify=fingerprint
  16. dtls_cert_file=/opt/asterisk/14/etc/asterisk/keys/asterisk.pem
  17. dtls_ca_file=/opt/asterisk/14/etc/asterisk/keys/ca.crt
  18. dtls_setup=actpass
  19.  
  20. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  21.  
  22. [endpoint_t](!)
  23. type=endpoint
  24. context=default
  25. direct_media=no
  26. allow=!all,ulaw,vp8,h264
  27. ;rtcp_mux=yes
  28.  
  29. [aor_t](!)
  30. type=aor
  31. max_contacts=20
  32.  
  33. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  34.  
  35. [alice](aor_t)
  36. mailboxes=alice@default
  37.  
  38. [alice]
  39. type=auth
  40. auth_type=userpass
  41. username=alice
  42. password=xxx
  43.  
  44. [alice](endpoint_t,encryption_t)
  45. aors=alice
  46. auth=alice
  47. use_avpf=yes
  48. ice_support=yes
  49. media_use_received_transport=yes
  50. max_audio_streams=2
  51. max_video_streams=2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement