Hi Daniel,
In your OwlH Node you must/should use a different interface for sniffing than management, I suppose you have this config.
About performance configuration. for less than 1G mostly physical interfaces will work properly, for 10G this should help a bit
sysctl -w net.core.optmem_max=134217728
sysctl -w net.core.rmem_max=134217728
sysctl -w net.core.wmem_max=134217728
sysctl -w net.ipv4.tcp_rmem='4096 87380 134217728'
sysctl -w net.ipv4.tcp_wmem='4096 65536 134217728'
sysctl -w net.core.netdev_max_backlog=300000
sysctl -w net.ipv4.tcp_moderate_rcvbuf=1
sysctl -w net.ipv4.tcp_no_metrics_save=1
sysctl -w net.ipv4.tcp_congestion_control=htcp
sysctl -w net.ipv4.tcp_mtu_probing=1
anyway, interface fine tuning is something you should do and will vary depending on Physical vs Virtual or traffic bandwidth.
If you have some specific scenario let me know.
Thanks