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
For tradictional ebpf, I can implement NAT with xdp/tc. but these ways always require "root".
I want to know if I can implement NAT with bpftime in no-privileged container.
thanks for developing this exciting project.
The text was updated successfully, but these errors were encountered:
For tradictional ebpf, I can implement NAT with xdp/tc. but these ways always require "root". I want to know if I can implement NAT with bpftime in no-privileged container. thanks for developing this exciting project.
We didn't support network related features yet, currently we only support uprobe and syscall trace
But maybe using uprobes to hook syscall functions like socket, write, read, would work, but we haven't tested it yet
Sorry, something went wrong.
We have examples using dpdk or possible using afxdp to run the network functions in xdp.
So part of the answer is yes, bpftime can help deploy these NAT to userspace.
But the dpdk and afxdp still needs root access.
You can find some code here and we will release more later: https://github.com/eunomia-bpf/XDP-eBPF-in-DPDK
No branches or pull requests
For tradictional ebpf, I can implement NAT with xdp/tc. but these ways always require "root".
I want to know if I can implement NAT with bpftime in no-privileged container.
thanks for developing this exciting project.
The text was updated successfully, but these errors were encountered: