yokogawa-k / ebpf-guide

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eBPF Guide

TL;DR

EBPF allows insertion of bytecode in Linux kernel at runtime at various hookpoints. On insertion, the bytecode is vetted through a kernel verifier such that only instruction-set which fulfills certain constraints are allowed.

This tutorial will help you to build a sample ebpf programs and get familiarized with the tool set.

FAQs

Problem Statements:

  1. Block TCP port 8080
  2. Ack-Thinning
  3. Using Container Context to avoid contain malicious containers
  4. Localhost Fast transfer

About


Languages

Language:C 62.8%Language:Makefile 17.2%Language:Shell 16.0%Language:Python 4.0%