hep.conf.sample 1.8 KB

1234567891011121314151617181920212223242526272829303132
  1. ;
  2. ; res_hep Module configuration for Asterisk
  3. ;
  4. ;
  5. ; Note that this configuration file is consumed by res_hep, which is responsible
  6. ; for the HEPv3 protocol manipulation and managing the connection to the Homer
  7. ; capture server. Additional modules provide specific messages to be sent to
  8. ; the Homer server:
  9. ; - res_hep_pjsip: Send SIP messages transmitted/received by the PJSIP stack
  10. ; - res_hep_rtcp: Send RTCP information (all channels)
  11. ;
  12. ; All settings are currently set in the general section.
  13. [general]
  14. enabled = no ; Enable/disable forwarding of packets to a
  15. ; HEP server. Default is "yes".
  16. capture_address = 192.168.1.1:9061 ; The address of the HEP capture server.
  17. capture_password = foo ; If specified, the authorization passsword
  18. ; for the HEP server. If not specified, no
  19. ; authorization password will be sent.
  20. capture_id = 1234 ; A unique integer identifier for this
  21. ; server. This ID will be embedded sent
  22. ; with each packet from this server.
  23. uuid_type = call-id ; Specify the preferred source for the Homer
  24. ; correlation UUID. Valid options are:
  25. ; - 'call-id' for the PJSIP or chan_sip SIP
  26. ; Call-ID
  27. ; - 'channel' for the Asterisk channel name
  28. ; Note: If 'call-id' is specified but the
  29. ; channel is not PJSIP or chan_sip then the
  30. ; Asterisk channel name will be used instead.