We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello Team,
I really appreciate your great work, I would like to know if any plan for DPDK support implementation is planned like PF_RING ?
If No I would like to start it, please give some guidelines to get started, like highlighting code portions required to focus and zoom in.
The text was updated successfully, but these errors were encountered:
Hey @mmanoj! No immediate plans to support DPDK, so thank you for offering to work on it!
Since epcap is compiled against libpcap, DPDK support will depend on libpcap. There seems to be support: https://github.com/the-tcpdump-group/libpcap/blob/master/pcap-dpdk.c
compile epcap against libpcap with dpkd support
src/epcap.erl: modify to pass dpdk arguments ({dpdk_cfg, string()}) to port. https://github.com/msantos/epcap/blob/master/src/epcap.erl#L184
{dpdk_cfg, string()}
PF_RING and dpdk are configured using environment variables.
https://github.com/the-tcpdump-group/libpcap/blob/master/pcap-dpdk.c#L75
test epcap, should be using dpdk!
epcap:start_link([{interface, "dpdk:0"}, {dpdk_cfg, "--log-level=debug -l0 -dlibrte_pmd_e1000.so -dlibrte_pmd_ixgbe.so -dlibrte_mempool_ring.so"}])
Sorry, something went wrong.
Hi @msantos ,
Thanks for quick support, I will test and update you on the results.
No branches or pull requests
Hello Team,
I really appreciate your great work, I would like to know if any plan for DPDK support implementation is planned like PF_RING ?
If No I would like to start it, please give some guidelines to get started, like highlighting code portions required to focus and zoom in.
The text was updated successfully, but these errors were encountered: