#keywords 프로그래밍,DPDK,Data,Plane,Development,Kit #title DPDK(Data Plane Development Kit) [wiki:Home 대문] / [wiki:CategoryProgramming 프로그래밍], [wiki:CategoryNetwork 네트웍] / [wiki:DPDK DPDK(Data Plane Development Kit)] ---- == [wiki:DPDK DPDK(Data Plane Development Kit)] == * 작성자 조재혁([mailto:minzkn@minzkn.com]) * 고친과정 2024년 2월 4일 : 처음씀 (작성 중, 학습 중) [[TableOfContents]] === 개요 === DPDK(Data Plane Development Kit)는 EAL(Environment Abstraction Layer, 환경 추상화 계층)을 통해 다양한 CPU 아키텍처에서 실행되는 패킷 처리 계층을 가속화하기 위한 표준 인터페이스 라이브러리들로 구성된 프레임 워크입니다. 이 문서는 개인적으로 DPDK(Data Plane Development Kit)을 조사하면서 수집된 문서들을 바탕으로 이를 정리하는 것을 목표로 작성되었습니다. 경우에 따라서 개인적인 해석관점에서 작성되어 잘못된 내용이 있을 수 있다는 점은 염두하면서 읽어주시고 바로 잡아야 할 내용이 있으면 저에게 피드백을 요청드리면서 이 문서를 여러분과 함께 작성해보고자 하며 이미 선두에서 DPDK(Data Plane Development Kit)를 탄생시키고 학습하고 자료를 남겨주신 선배님들과 피드백을 주실 모든 분들에게 감사의 뜻을 전합니다. === DPDK 개발 환경 === [^https://doc.dpdk.org/guides/linux_gsg/sys_reqs.html#compilation-of-the-dpdk Compilation of the DPDK] 를 참고하실 수 있습니다. Ubuntu/Debian Linux 환경 {{{#!plain $ apt install build-essential $ apt install meson ninja-build $ apt install python3-pyelftools $ apt install libnuma-dev $ apt install python3-sphinx python3-sphinx-rtd-theme doxygen }}} DPDK source 다운로드 및 빌드 실습 {{{#!plain $ git clone https://github.com/DPDK/dpdk.git MyDPDK $ cd MyDPDK $ meson setup -D enable_docs=true -D examples=all build $ cd build $ ninja ... $ meson install --destdir "$(HOME)/MyRootFS" }}} === DPDK 실행 환경 === [^https://doc.dpdk.org/guides/linux_gsg/sys_reqs.html#running-dpdk-applications Running DPDK Applications] 를 참고하실 수 있습니다. === 참고자료 === * [^https://doc.dpdk.org/] * License {{{#!plain The DPDK uses the Open Source BSD-3-Clause license for the core libraries and drivers. The kernel components are GPL-2.0 licensed. ... 상세한 내용은 DPDK source 의 license 디렉토리에서 README를 참고 ... }}} * [^https://doc.dpdk.org/guides/linux_gsg/ Getting Started Guide for Linux] * [^https://doc.dpdk.org/guides/linux_gsg/sys_reqs.html#compilation-of-the-dpdk Compilation of the DPDK] * [^https://doc.dpdk.org/guides/linux_gsg/sys_reqs.html#running-dpdk-applications Running DPDK Applications] * [^https://doc.dpdk.org/guides/linux_gsg/build_dpdk.html Compiling the DPDK Target from Source] * '''[^https://doc.dpdk.org/guides/prog_guide/ Programmer’s Guide]''' * [^https://doc.dpdk.org/api/ API Documentation] * [^https://core.dpdk.org/supported/ Supported Hardware] * [^https://fast.dpdk.org/rel/dpdk-23.11.tar.xz DPDK 23.11 Download] * [^https://git.dpdk.org/ DPDK repositories (git.dpdk.org)] {{{#!plain $ git clone https://dpdk.org/git/dpdk }}} * [^https://github.com/DPDK DPDK - Github] {{{#!plain $ git clone https://github.com/DPDK/dpdk.git }}} * [^https://elixir.bootlin.com/dpdk/latest/source] * [^https://en.wikipedia.org/wiki/Data_Plane_Development_Kit Data Plane Development Kit - WIKIPEDIA] * [^https://namu.wiki/w/Intel%20DPDK Intel DPDK - 나무위키] * [wiki:XDP XDP(eXpress Data Path)] * [^https://www.nvidia.com/en-us/networking/products/data-processing-unit/ NVIDIA BlueField Networking Platform - NVIDIA] * [^https://www.marvell.com/products/data-processing-units.html Data Processing Units (DPU) - MARVELL PRODUCTS] * [^https://fd.io/ The Fast Data Project (FD.io), Vector Packet Processing (VPP)]