https://github.com/jake-shadle/ebpf-test
https://github.com/jake-shadle/ebpf-test
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jake-shadle/ebpf-test
- Owner: Jake-Shadle
- Created: 2024-08-20T08:46:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-15T08:38:58.000Z (over 1 year ago)
- Last Synced: 2025-09-11T12:52:38.031Z (9 months ago)
- Language: Rust
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# proxy
## Prerequisites
1. Install bpf-linker: `cargo install bpf-linker`
## Build eBPF
```bash
cargo xtask build-ebpf
```
To perform a release build you can use the `--release` flag.
You may also change the target architecture with the `--target` flag.
## Build Userspace
```bash
cargo build
```
## Build eBPF and Userspace
```bash
cargo xtask build
```
## Run
```bash
RUST_LOG=info cargo xtask run
```