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 clipboard 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
    }


    Обратите внимание на использование метода copytruncate, иначе файл будет пересоздан и запись лога из процесса прекратится.
    Соответственно в конфигурации ipfixreceiver у вас в разделе [handler_ipfixreceiverlogger] указано следующее:

    args=('/var/log/dpiuiflow.log', 'a+')
  3. Настройте удаление старых файлов. Например удаление старых архивов (более 31 дня) с записями о сессиях запакованных gzip:
    15 4 * * * /bin/find /var/dump/dpiui/ -name url_\*.dump.gz -cmin +44640 -delete > /dev/null 2>&1


    Измените строчку под ваши требования и добавьте в файл /var/spool/cron/root.

Параметры запуска программы

Утилита ipfixreceiver имеет следующие параметры запуска :

usage: ipfixreceiver start|stop|restart|status|-v [-f <config file>]
где
  start   - запуск в режиме сервиса
  stop    - останов сервиса
  state   - состояние работы сервиса
  restart - перезапуск сервиса
  -v      - вывести информацию о версии
  -f <config file> - указать файл конфигурации для запуска сервиса

Пример:
  ipfixreceiver start -f /etc/dpiui/ipfixreceiverflow.conf

Конфигурация

По умолчанию используется файл конфигурации /etc/dpiui/ipfixreceiver.conf .
:!:Больше информации о конфигурировании логирования можно найти по ссылке Logging

Служебные разделы

  1. loggers - определяет используемые лог идентификаторы
  2. handlers - определяет используемые обработчики для сохранения лога
  3. formatters - определяет используемые форматы для лога

logger_root

  1. level - определяет уровень логирования (верхний уровень)
    Возможные значения:
    CRITICAL  - только критические ошибки, минимальный уровень сообщений
    ERROR     - включая ошибки
    WARNING   - включая предупреждения
    INFO      - включая информацию
    DEBUG     - включая отладочные
    NOTSET    - Все, максимальный уровень сообщений (включая все выше перечисленные)


    Пример:

    level=DEBUG
  2. handlers - используемые обработчики сообщений
    Пример:
    handlers=ipfixreceiverlogger

handler_ipfixreceiverlogger

  1. class - класс обработчика
    Пример:
    class=FileHandler
  2. level - уровень сообщений
    level=DEBUG
  3. formatter - наименование формата сообщений
    formatter=ipfixreceiverlogger
  4. args - параметры обработчика
    args=('/var/log/dpiuiflow.log', 'a+')

formatter_ipfixreceiverlogger

  1. format - описание формата сообщения
    Пример:
    format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
    где
    %(name)s      - имя лога
    %(levelname)s - уровень сообщения ('DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL').
    %(asctime)s   - дата, по умолчанию формат “2003-07-08 16:49:45,896” (поле запятаой указаны миллисекунды).
    %(message)s   - сообщение
  2. datefmt - описание формата даты
    Пример:
    datefmt='%m-%d %H:%M'

connect

  1. protocol - протокол (tcp или udp).
    protocol=udp
  2. host - IP или имя сервера.
    host=localhost
  3. port - номер порта.
    port=9996

dump

  1. rotate_minutes - период в минутах, по прошествии которого временный файл в dumpfiledir/<port>.url.dump будет перемещен в архив (mv) и создан новый временный файл.
    rotate_minutes=10
  2. processcmd - команда которая будет запущена по окончании ротации файла, параметр имя файла с путем к нему.
    processcmd=gzip %%s
  3. dumpfiledir - директория куда будут сохраняться файлы с принятыми данными.
    dumpfiledir=/var/dump/dpiui/ipfixflow/
  4. buffer_size - размер буфера обмена между процессом приема и записи в файл, по умолчанию значение параметра 100000 записей (ориентировано на 20Гбит трафика или 25 000 сессий в сек). Если к-во сессий в секунду значительно меньше, то обязательно пропорционально измените данный параметр.

InfoModel

Блок описывает получаемые данные по IPFIX протоколу.

  1. InfoElements - параметр с описанием элементов информационной модели для IPFIX
    InfoElements =  octetDeltaCount,       0,    1, UINT64, True
                    packetDeltaCount,      0,    2, UINT64, True
                    protocolIdentifier,    0,    3, UINT8
                    session_id,        43823, 2000, UINT64, True
    где,
      session_id - наименование поля из описания IPFIX см. разделы
      43823  - уникальный номер организации (enterprise number)
      1      - уникальный номер поля
      UINT64 - тип поля
      True   - использовать обратный порядок байт (endian). Значения - True или пусто.

Типы полей:

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

Наименование полей и описание можно взять по ссылкам:

Дополнительная информация:
Information Model for IP Flow Information Export

ExportModel

определяет параметры модели для экспорта, зарезервировано для будущего использования.

  1. Mode - тип используемого экспорта
    Mode = File

ExportModelFile

Описание модели экспорта File.

  1. Delimiter разделитель полей в строке ( \t - табуляция, еще примеры - |,;)
    Delimiter = \t
  2. ExportElements - описание полей которые будут сохранены в файл.
    ExportElements = timestamp, seconds, %%Y-%%m-%%d %%H:%%M:%%S.000+03
                     login
                     source_ip4
                     destination_ip4
                     host, decodehost
                     path, decodepath
                     referal, decodereferer
                     session_id
    где поля в каждой строке:
      имя - наименование поля из информационной модели [InfoModel] (login, session_id и т.п.)
      обработчик - процедура обработки поля перед выводом
                   seconds       - поле в секундах, ожидается формат
                   milliseconds  - поле в милисекундах, микросекундах, наносекундах ожидается формат
                   decodehost    - перекодировать из punycode в UTF-8
                   decodepath    - перекодировать из urlencoding в UTF-8
                   decodereferer - перекодировать из (punycode,urlencoding) в UTF-8
                   decodeproto   - перекодировать идентификатор протокола в строку
      формат - описание формата для seconds, milliseconds. 
               Пример: %%Y-%%m-%%d %%H:%%M:%%S.%%f+0300
               Результат: 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) увеличьте частоту процессора и объем памяти