3 Repos
Measures packet processing speed by sending hundreds of millions of packets per second to evaluate raw throughput.
Distinct from Packet Processing Frameworks: Distinct from Packet Processing Frameworks: focuses on benchmarking speed rather than providing a framework for processing.
Explore 3 awesome GitHub repositories matching networking & communication · Packet Processing Speed Benchmarks. Refine with filters or upvote what's useful.
dperf is a high-performance network testing tool that generates massive multi-protocol traffic for benchmarking network devices and servers. It uses DPDK to bypass the kernel network stack, enabling line-rate packet generation and capture with zero-copy processing, and implements a full TCP/IP stack in user space to achieve millions of connections per second from a single server. The tool is designed for stress-testing Layer 4 load balancers and gateways, capable of simulating billions of concurrent TCP or UDP sessions and generating tens of millions of new connections per second. It supports
Measures packet processing speed by sending hundreds of millions of packets per second to evaluate raw throughput.
DPDK ist ein Framework für Paketverarbeitung und eine Kernel-Bypass-Netzwerkbibliothek, die darauf ausgelegt ist, die Leistung der Netzwerk-Datenebene zu beschleunigen. Es bietet einen User-Space-Netzwerkstack, der Netzwerkdaten direkt von der Netzwerkkarte in den User-Space verschiebt und so den Overhead des Betriebssystem-Kernels eliminiert, um hohen Durchsatz und niedrige Latenz zu erreichen. Das Framework nutzt eine Poll-Mode-Driver-Architektur, die interrupt-gesteuerte Netzwerkverarbeitung durch einen konstanten Polling-Mechanismus ersetzt. Dieser Ansatz ermöglicht die Implementierung von Netzwerkfunktionen und Protokollen außerhalb des Kernels. Das Projekt deckt Funktionen für hochperformante Paketverarbeitung, Netzwerkfunktionsvirtualisierung und die Entwicklung benutzerdefinierter Netzwerk-Appliances wie Firewalls und Load Balancer ab.
Provides high-speed network packet manipulation by bypassing standard kernel overhead.
f-stack is a kernel-bypass framework and user-space TCP/IP stack designed to increase packet processing speeds and overall throughput. It utilizes DPDK to route network traffic directly to user space and integrates a transplanted FreeBSD network stack to handle transport and network layer protocols outside of the host operating system. The project provides a socket API compatibility layer that allows standard network applications to run on a high-performance backend without requiring code changes. It also features a coroutine-based network API and micro-threading interface to manage asynchron
Directs network traffic to user space via DPDK to eliminate kernel overhead and minimize latency.