MB

Results 4 comments of MB

Can you provide the full `docker run` command you used ? Did you tried to use `--net=host` and mount `-v /dev:/dev` for hugepages ?

Try to create a custom docker image that contains DPDK installation and PcapPlusPlus. From the error you mentioned I assume DPDK is installed on the host machine but not within...

Can you show us the output of `dpdk-devbind.py --status` from within the container ? Also, Try to run with: `docker run -it -d --privileged -v /sys/bus/pci/drivers:/sys/bus/pci/drivers -v /sys/kernel/mm/hugepages:/sys/kernel/mm/hugepages -v /sys/devices/system/node:/sys/devices/system/node...

DPDK sets its core limit using the `RTE_MAX_LCORE` define in `rte_config.h`, but you can adjust it to support 512 or even 1024 cores by changing the configuration and recompiling. I...