Receiving IPFIX data by ipfixreceiver [Документация VAS Experts]

This is an old revision of the document!


Receiving IPFIX data by ipfixreceiver

Introduction

The utility is designed to receive data stream from devices using the IPFIX protocol and save the data as a file for subsequent processing by other means.

Installation and Update

CentOS6

  1. add the VAS Experts repository according to the item 1 of DPI installation instruction manual.
  2. instal the ipfixreceiver:
    yum install -y ipfixreceiver
  3. check for the changes in the configuration files so they to be consistent with ipfixreceiver current version, see the "Important changes" section.

CentOS7

  1. add the VAS Experts repository according to the item 1 of DPI installation instruction manual.
  2. install the epel repository
    yum -y install epel-release
  3. install the forencis repository:
    rpm --import https://forensics.cert.org/forensics.asc
    rpm -Uvh https://forensics.cert.org/cert-forensics-tools-release-el7.rpm
  4. установите ipfixreceiver:
    yum -y install libfixbuf --disablerepo=forensics
    yum -y install  netsa-python netsa_silk
    yum -y install ipfixreceiver --disablerepo=forensics
  5. check for the changes in the configuration files so they to be consistent with ipfixreceiver current version, see the "Important changes" section.

Important changes in version 1.0.3 relative to 1.0.2 one

  1. the configuration file has been changed with respect to IP address translation, starting from the 1.0.3 version you should specify decodeipv4, decodeipv6 in the export model, for example:
      source_ip4, ''decodeipv4''
      destination_ip4, decodeipv4
  2. the process of information saving has been allocated to a separate process; remember that when dealing with a large number of sessions (> 25k sessions per second) the process will completely load 2 processor cores. In order to check that the process has time to process the entire data stream the following messages are added in the DEBUG mode:
    (a)cnt=NNNNN - the buffer has been sent with the given number
    (b)cnt=YYYYY - the buffer with the given number is saved.
  3. a new buffer_size parameter is added; it specifies the size of the i/o buffer between the process of receiving and writing to a file, it is used in the [dump] section, the default value of the parameter is 100000 records (it is focused on 20 Gbit traffic or 25 000 sessions per second). If the number of sessions per second is considerably less than the mentioned value, then you should to change this parameter proportionally.

The files supplied with the ipfixreceiver

  1. configuration examples:
    /etc/dpiui/ipfixreceiver.conf is the clickstream configuration sample (http requests)
    /etc/dpiui/ipfixreceiverflow.conf is the sample configuration for information on sessions (netflow counterpart)
    /etc/dpiui/ipfixreceiversip.conf is the sample configuration for information on sip connections
  2. program files are located under the:
    /usr/local/lib/ipfixreceiver.d/

    directory

  3. auxiliary files:
    /etc/dpiui/port_proto.txt contains the information on the translation of protocol identifier to its string representation,
    it is used by the utility to get the protocol text-based name by its identifier
  4. links to the executable:
    /usr/local/bin/ipfixreceiver -> link to the /usr/local/lib/ipfixreceiver.d/ipfixreceiver

Additional OS settings

  1. configure iptables to accept external data
    For ipfixreceiver to work properly, you should open the ports that will also be used in the [connect] section of the configuration. For example, you use the TCP protocol, port 1500 and IP=212.12.11.10
    [connect]
    protocol=tcp
    host=212.12.11.10
    port=1500


    To receive an IPFIX stream, you should have the following rule in the /etc/sysconfig/iptables:

    -A INPUT -p tcp -m state --state NEW -m tcp --dport 1500 -j ACCEPT

    Do not forget that after the adding rule to iptables a restart is required:

    service iptables restart
  2. configure log rotation
    An example of rotation for the /var/log/dpiuiflow.log log file: you should create within the /etc/logrotate.d/ directory the flowlog file of the following content:
    /var/log/dpiui*.log {
        rotate 5
        missingok
        notifempty
        compress
        size 10M
        daily
        copytruncate
        nocreate
        postrotate
        endscript
    }


    Please pay attention that the copytruncate method is used, otherwise the file will be recreated and writing the log by the process will stop.
    Respectively, in the ipfixreceiver configuration file, you have the following settings in the [handler_ipfixreceiverlogger] section:

    args=('/var/log/dpiuiflow.log', 'a+')
  3. Configure the deleting of old files. For example, deleting old archives (more than 31 days) containing sessions records packed with gzip:
    15 4 * * * /bin/find /var/dump/dpiui/ -name url_\*.dump.gz -cmin +44640 -delete > /dev/null 2>&1


    Change the line according to your requirements and add to the /var/spool/cron/root file.

Ipfixreceiver startup options

The ipfixreceiver utility has the following startup options:

usage: ipfixreceiver start|stop|restart|status|-v [-f <config file>]
где
  start   - start as a service
  stop    - service stop
  state   - get the service state
  restart - service restart
  -v      - show version info
  -f <config file> - specify the configuration file for the service to start

Example:
  ipfixreceiver start -f /etc/dpiui/ipfixreceiverflow.conf

Configuration

The default configuration file is /etc/dpiui/ipfixreceiver.conf.
:!:More information on configuring logging can be found here: Logging

Service sections

  1. loggers - specifies the log identifiers used
  2. handlers - specifies the handlers used to save the log
  3. formatters - specifies the formats used for the log

logger_root

  1. level - specifies the logging level (upper level)
    Possible values are:
    CRITICAL  - only critical errors, minimum message level
    ERROR     - including errors
    WARNING   - including warnings
    INFO      - including information
    DEBUG     - including debug messages
    NOTSET    - all, the maximum level of messages (including all of the above)


    Example:

    level=DEBUG
  2. handlers - message handlers used
    Example:
    handlers=ipfixreceiverlogger

handler_ipfixreceiverlogger

  1. class - handler class
    Example:
    class=FileHandler
  2. level - message level
    level=DEBUG
  3. formatter - message format name
    formatter=ipfixreceiverlogger
  4. args - handler parameters
    args=('/var/log/dpiuiflow.log', 'a+')

formatter_ipfixreceiverlogger

  1. format - message format description
    Example:
    format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
    here
    %(name)s      - log name
    %(levelname)s - message level ('DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL').
    %(asctime)s   - date, the default format is “2003-07-08 16:49:45,896” (the comma field corresponds to milliseconds).
    %(message)s   - message
  2. datefmt - date format description
    Example:
    datefmt='%m-%d %H:%M'

connect

  1. protocol - protocl (tcp or udp).
    protocol=udp
  2. host - server IP or its name.
    host=localhost
  3. port - port number.
    port=9996

dump

  1. rotate_minutes is the period in minutes, after which the temporary file in dumpfiledir/<port>.url.dump will be moved to the archive (mv) and a new temporary file will be created.
rotate_minutes=10
  1. processcmd is the command that will be launched at the end of the file rotation, the file name parameter with the path to it.
    processcmd=gzip %%s
  2. dumpfiledir is a directory to store the files with data received.
    dumpfiledir=/var/dump/dpiui/ipfixflow/
  3. buffer_size is the size of the i/o buffer between the process of receiving and writing to a file, it is used in the [dump] section, the default value of the parameter is 100000 records (it is focused on 20 Gbit traffic or 25 000 sessions per second). If the number of sessions per second is considerably less than the mentioned value, then you should to change this parameter proportionally.

InfoModel

The block specifies the data received via the IPFIX protocol.

  1. InfoElements - parameter describing the information model elements for IPFIX
    InfoElements =  octetDeltaCount,       0,    1, UINT64, True
                    packetDeltaCount,      0,    2, UINT64, True
                    protocolIdentifier,    0,    3, UINT8
                    session_id,        43823, 2000, UINT64, True
    here,
      session_id - is the name of the field from the IPFIX description, for more detail see corresponding sections
      43823  - unique organization number (enterprise number)
      1      - unique field number
      UINT64 - field type
      True   - use reverse byte order (endian). Possible values are: True or empty.

Field types:

Type Length Type IPFIX
OCTET_ARRAY VARLEN octetArray
UINT8 1 unsigned8
UINT16 2 unsigned16
UINT32 4 unsigned32
UINT64 8 unsigned64
INT8 1 signed8
INT16 2 signed16
INT32 4 signed32
INT64 8 signed64
FLOAT32 4 float32
FLOAT64 8 float64
BOOL 1 boolean
MAC_ADDR 6 macAddress
STRING VARLEN string
SECONDS 4 dateTimeSeconds
MILLISECONDS 8 dateTimeMilliseconds
MICROSECONDS 8 dateTimeMicroseconds
NANOSECONDS 8 dateTimeNanoseconds
IP4ADDR 4 ipv4Address
IP6ADDR 16 ipv6Address

The field names and their description can be accessed from the following links:

Additional information:
Information Model for IP Flow Information Export

ExportModel

specifies the model parameters used for export, is reserved for future use.

  1. Mode - the type of export used
    Mode = File

ExportModelFile

Description of the File export model.

  1. Delimiter ( \t - tabulation, more examples - |,;)
    Delimiter = \t
  2. ExportElements - description of the fields that will be saved to the file.
    ExportElements = timestamp, seconds, %%Y-%%m-%%d %%H:%%M:%%S.000+03
                     login
                     source_ip4
                     destination_ip4
                     host, decodehost
                     path, decodepath
                     referal, decodereferer
                     session_id
    where the fields in each row are the following:
      name - the field name from the information model [InfoModel] (login, session_id and etc.)
      handler - field processing procedure before output
                   seconds       - field in seconds, format is expected
                   milliseconds  - field in milliseconds, microseconds, nanoseconds format is expected
                   decodehost    - recode from punycode to UTF-8
                   decodepath    - recode from urlencoding to UTF-8
                   decodereferer - recode from (punycode,urlencoding) to UTF-8
                   decodeproto   - recode the protocol identifier to the string
      format - format description for seconds, milliseconds.
               Example: %%Y-%%m-%%d %%H:%%M:%%S.%%f+0300
               Result: 2016-05-25 13:13:35.621000+0300

Создаем сервис в Centos7

Создание сервиса в centos7 по шагам, название сервиса ipfix1, используемая конфигурация /etc/dpiui/ipfixreceiver.conf, используемый порт 1500.
Создаем файл /etc/systemd/system/ipfix1.service следующего содержания:

[Unit]
Description=ipfix test restart
After=network.target
After=syslog.target

[Service]
Type=forking
PIDFile=/tmp/ipfixreceiver.1500.pid
ExecStart=/usr/local/bin/ipfixreceiver start -f /etc/dpiui/ipfixreceiver.conf
ExecStop=/usr/local/bin/ipfixreceiver stop -f /etc/dpiui/ipfixreceiver.conf
ExecReload=/usr/local/bin/ipfixreceiver restart -f /etc/dpiui/ipfixreceiver.conf
Restart=always
RestartSec=10s

[Install]
WantedBy=multi-user.target

Выполняем:

systemctl enable ipfix1.service
systemctl start ipfix1.service
systemctl daemon-reload

Проверяем:

systemctl status ipfix1.service -l

:!:не забудьте проверить поднятие сервиса после перезагрузки

Проблемы и решения

  1. как получить версию утилиты?
    Используйте следующие команды:
    ipfixreceiver -v
    yum info ipfixreceiver
  2. можно ли на один порт отправлять IPFIX потоки с разных DPI?
    Да. Единственное в записываемом потоке их будет не различить.
  3. как понять, что утилита работает?
    a) проверьте, что порт из конфигурации прослушивается утилитой, например 1500:
    netstat -nlp | grep 1500

    b) проверьте лог, нет ли ошибок
    c) Проверьте, что запись в промежуточный файл происходит, например для 9996 порта (директория для файлов - /var/dump/dpiui/ipfixurl):

    tail -f /var/dump/dpiui/ipfixurl/9996.url.dump
  4. все проверено, но приема сообщений нет?
    a) забыли открыть порт в iptables.
    b) инициализировали ipfixreceiver с неверным IP сервера.
  5. с DPI идет большое количество сессий (более 2 млн сессий/мин), при включенном DEBUG режиме видно, что счетчик обмена буферами не успевает записать до получения следующего блока записей, что можно сделать?
    a) удалите преобразование даты в строку, это уменьшит процессорное время на обработку и дополнительно получите уменьшение объема результирующего файла
    b) удалите преобразование decodeipv4, не значительно, но так же получите ускорение записи файла
    c)настройте buffer_size при к-ве сес /сек более 30к совместно с п.d
    d) увеличьте частоту процессора и объем памяти