awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
DPDK avatar

DPDK/dpdk

0
View on GitHub↗
4,277 星标·1,479 分支·C·7 次浏览

Dpdk

DPDK 是一个数据包处理框架和内核旁路网络库,旨在加速网络数据平面性能。它提供了一个用户空间网络栈,将网络数据直接从网卡移动到用户空间,消除了操作系统内核开销,从而实现高吞吐量和低延迟。

该框架利用轮询模式驱动架构,用持续轮询机制取代了中断驱动的网络处理。这种方法允许在内核之外实现网络功能和协议。

该项目涵盖了高性能数据包处理、网络功能虚拟化以及防火墙和负载均衡器等自定义网络设备开发的功能。

Features

  • Packet Processing Frameworks - Provides a high-performance framework for accelerating packet processing by moving network data directly from the NIC to user space.
  • Poll-Mode Drivers - Employs a poll-mode driver architecture that continuously checks hardware for packets to eliminate interrupt latency.
  • Network Stack Bypasses - Implements a networking library that bypasses the standard kernel network stack to achieve high throughput.
  • User-Space Network Interface Access - Moves network driver logic from the kernel to user space to achieve faster data transfer.
  • High-Performance Packet Processing - Handles massive volumes of network traffic by bypassing the OS kernel to reduce latency and CPU overhead.
  • User-Space Packet Processing - Provides high-speed network packet manipulation by bypassing standard kernel overhead.
  • Direct I/O Access - Provides direct I/O access to move network traffic from hardware to user-space memory, bypassing the kernel.
  • User-Space Implementations - Provides tools for implementing network protocols in user space to maximize throughput and avoid kernel context switches.
  • Zero-Copy Buffers - Implements zero-copy buffer management by passing pointers to packet data across processing stages.
  • Single-Producer Single-Consumer Queues - Implements single-producer single-consumer lockless ring buffers for high-speed data exchange between CPU cores.
  • Network Appliance Frameworks - Provides a framework for building specialized network appliances such as firewalls and load balancers.
  • Hugepage Allocations - Implements hugepage-based memory allocation to improve memory access speed and reduce TLB misses for packet buffers.
  • Virtualization Networking - Enables the creation of virtualized network services that process packets at near-wire speed.
  • Run-To-Completion Models - Uses a run-to-completion model by assigning a packet to a single CPU core for all processing steps.
  • 网络库 - Libraries and drivers for fast packet processing.

Star 历史

dpdk/dpdk 的 Star 历史图表dpdk/dpdk 的 Star 历史图表

AI 搜索

探索更多 awesome 仓库

用简单的语言描述您的需求 —— AI 将根据相关性为您从数千个精选开源项目中进行排序。

Start searching with AI

Dpdk 的开源替代方案

相似的开源项目,按与 Dpdk 的功能重合度排序。
  • f-stack/f-stackF-Stack 的头像

    F-Stack/f-stack

    4,230在 GitHub 上查看↗

    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

    C
    在 GitHub 上查看↗4,230
  • openvswitch/ovsopenvswitch 的头像

    openvswitch/ovs

    3,904在 GitHub 上查看↗

    Open vSwitch is a software-defined network switch and high-performance data plane engine. It functions as a virtual layer 2 switch and network orchestrator, implementing the OpenFlow protocol to decouple the control plane from the data plane for programmable network forwarding. The project distinguishes itself through a userspace-kernel datapath split and the use of poll-mode drivers for kernel-bypass acceleration. It provides a network tunneling gateway to extend virtual networks across physical hosts and utilizes a transactional, schema-based configuration database with state replication fo

    C
    在 GitHub 上查看↗3,904
  • cloudius-systems/osvcloudius-systems 的头像

    cloudius-systems/osv

    4,253在 GitHub 上查看↗

    OSV is a unikernel operating system and cloud-native execution environment designed to run as a secure microVM on hypervisors such as KVM, Firecracker, Xen, and VMware. It functions as a Linux binary compatible runtime, allowing unmodified Linux binaries to be executed as secure microVMs without requiring recompilation. The project distinguishes itself through its ability to package applications into minimal bootable images and its provide of a virtual machine management API. This REST interface enables remote monitoring of system health, management of execution traces, and control over guest

    C
    在 GitHub 上查看↗4,253
  • fortra/impacketfortra 的头像

    fortra/impacket

    15,467在 GitHub 上查看↗

    Impacket is a collection of Python classes designed for the construction, manipulation, and analysis of low-level network packets and services. It functions as a framework for building custom network tools, providing a programmatic interface to interact with communication protocols and service architectures. The library provides primitives for managing authentication, session state, and remote procedure calls within network environments. By offering a modular class hierarchy, it allows for the assembly of network packets and the implementation of specialized communication stacks. The project

    Pythondcerpcdcomimpacket
    在 GitHub 上查看↗15,467
查看 Dpdk 的所有 30 个替代方案→

常见问题解答

dpdk/dpdk 是做什么的?

DPDK 是一个数据包处理框架和内核旁路网络库,旨在加速网络数据平面性能。它提供了一个用户空间网络栈,将网络数据直接从网卡移动到用户空间,消除了操作系统内核开销,从而实现高吞吐量和低延迟。

dpdk/dpdk 的主要功能有哪些?

dpdk/dpdk 的主要功能包括:Packet Processing Frameworks, Poll-Mode Drivers, Network Stack Bypasses, User-Space Network Interface Access, High-Performance Packet Processing, User-Space Packet Processing, Direct I/O Access, User-Space Implementations。

dpdk/dpdk 有哪些开源替代品?

dpdk/dpdk 的开源替代品包括: f-stack/f-stack — f-stack is a kernel-bypass framework and user-space TCP/IP stack designed to increase packet processing speeds and… openvswitch/ovs — Open vSwitch is a software-defined network switch and high-performance data plane engine. It functions as a virtual… cloudius-systems/osv — OSV is a unikernel operating system and cloud-native execution environment designed to run as a secure microVM on… fortra/impacket — Impacket is a collection of Python classes designed for the construction, manipulation, and analysis of low-level… game1024/openspeedy — OpenSpeedy is a network acceleration utility designed to optimize data transmission between applications and remote… cilium/cilium — Cilium is a networking, security, and observability platform for containerized environments that leverages…