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
ebpf对内核版本有过多要求,例如:bpf_strncmp函数 就要求在5.17以上版本才能使用,centos7的系统内核还是3.x的版本。如何在低内核或者不升级内核的基础上使用ebpf技术? 书中第6章,提到tracee项目是通特殊容器--pid=host --groupns=host --privileged的方式运行,在这种情况下,容器内的ebpf拦截系统调用函数,是拦截宿主操作系统内核的函数,还是拦截的容器自己的内核的函数?
The text was updated successfully, but these errors were encountered:
@gpt8763
ebpf对内核版本有过多要求,例如:bpf_strncmp函数 就要求在5.17以上版本才能使用,centos7的系统内核还是3.x的版本。如何在低内核或者不升级内核的基础上使用ebpf技术?
官方的实现确实是有内核版本要求。在低内核或者不升级内核的基础上使用ebpf技术的方案参考:
Sorry, something went wrong.
书中第6章,提到tracee项目是通特殊容器--pid=host --groupns=host --privileged的方式运行,在这种情况下,容器内的ebpf拦截系统调用函数,是拦截宿主操作系统内核的函数,还是拦截的容器自己的内核的函数?
因为容器与主机共享的是同一个内核,所以上面的 ebpf 程序即可以拦截容器内程序发起的系统调用,也可以拦截主机程序发起的系统调用。
No branches or pull requests
ebpf对内核版本有过多要求,例如:bpf_strncmp函数 就要求在5.17以上版本才能使用,centos7的系统内核还是3.x的版本。如何在低内核或者不升级内核的基础上使用ebpf技术?
书中第6章,提到tracee项目是通特殊容器--pid=host --groupns=host --privileged的方式运行,在这种情况下,容器内的ebpf拦截系统调用函数,是拦截宿主操作系统内核的函数,还是拦截的容器自己的内核的函数?
The text was updated successfully, but these errors were encountered: