Skip to content

Examples: Asterisk

Lorenzo Mangani edited this page Nov 21, 2015 · 10 revisions

Asterisk 12+ ships with HEP encapsulation support (res_hep) and is able to natively mirror its packets to a SIPCAPTURE Collector such as HOMER. Enabling the HEP feature is as simple as configuring /etc/asterisk/hep.conf

Once configured and enabled, the module will begin forwarding all handled SIP packets to HOMER for handling.

Example Configuration:

/etc/asterisk/hep.conf

;
; res_hep Module configuration for Asterisk
;

; All settings are currently set in the general section.
[general]
enabled = yes 
; Enable/disable forwarding of packets to a
; HEP server. Default is "yes".
capture_address = 10.0.0.1:9060 
; The address of the HEP capture server.
capture_password = foo 
; If specified, the authorization passsword
; for the HEP server. If not specified, no
; authorization password will be sent.
capture_id = 1234 
; A unique integer identifier for this
; server. This ID will be embedded sent
; with each packet from this server.
Clone this wiki locally