Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miladhzzzz/linux-epbf-poc
eBPF toolkit for implementing custom logic . Proof of Concept
https://github.com/miladhzzzz/linux-epbf-poc
ebpf go linux-kernel python
Last synced: about 1 month ago
JSON representation
eBPF toolkit for implementing custom logic . Proof of Concept
- Host: GitHub
- URL: https://github.com/miladhzzzz/linux-epbf-poc
- Owner: miladhzzzz
- License: other
- Created: 2024-02-04T13:31:01.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-02-04T14:02:49.000Z (11 months ago)
- Last Synced: 2024-10-13T19:20:30.761Z (2 months ago)
- Topics: ebpf, go, linux-kernel, python
- Language: Go
- Homepage:
- Size: 2.27 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eBPF PoC Project
This project is a Proof of Concept (PoC) for eBPF that I created to learn more about this technology. It includes a simple BPF script that is run using Go and Python. The project also includes automation scripts written in shell, a Makefile for building the project, and a Dockerfile for containerizing the project.
## Getting Started
To get started with this project, follow these steps:
1. Clone the repository:
```bash
git clone https://github.com/your-username/ebpf-poc-project.git
````2. Install required packages (Linux):
````shell
cd scripts
chmod +x requirements.sh
./requirements.sh3. Build and run the project using make (binary go):
````shell
make all
````4. Build a docker image to run the project(go):
````shell
# Build the docker image
docker build -t ebpf-poc:latest .
# run the container
docker run ebpf-poc:latest
````5. Run the python script:
````shell
cd python
pip install -r requirements.txt
python ebpf.py
````6. also theres shell scripts for running the project located at /scripts.