Lukáš Huták

Results 50 comments of Lukáš Huták

Hi, your MTU change should not have any impact on the collector. It is using standard system TCP/UDP sockets and from its point of view it always gets the whole...

Did you resolve the issue?

Did you increase maximum size of UDP socket on your system as written in [UDP plugin description](https://github.com/CESNET/ipfixcol2/tree/master/src/plugins/input/udp)? ``` sh sysctl -w net.core.rmem_max=16777216 # 16MB ``` By default, socket size is...

Hi, I took a quick peek at the code, but I couldn't think of a more elegant way. Unfortunately, this is not even easy to implement, because the part when...

Hi, elements present in IPFIX packets always depend on abilities of your exporter/probe. In other words, if your exporter/probe is not producing them, the collector cannot do anything about it....

Hi, thank you for your feedback. I believe it shouldn't be hard to add these override options. I will try to add them during the next week and I will...

Timestamp in flow records always come in UTC format from exporters (NetFlow/IPFIX). Nevertheless, file names based on local time are usually quite tricky if you live in a country with...

Hi, the easiest (and also the most naïve) way is to modify `target_link_libraries` command in [CMakeLists.txt](https://github.com/CESNET/ipfixcol2/blob/master/src/plugins/output/json/CMakeLists.txt) file of the JSON plugin: ``` cmake target_link_libraries(json-output ${ZLIB_LIBRARIES} ${LIBRDKAFKA_LIBRARIES} hiredis #

Hi, yes, we would like to add intermediate plugins for GeoIP and ASN enrichment in the future. Nevertheless, since our focus is now on flow filtration, profiling, runtime reconfiguration and...

Hi, first of all, thank you for the solution suggestion. I think it could work. However, I discovered that musl library doesn't support another feature - RTLD_DEEPBIND flag used by...