You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-network/setup-dpdk.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,12 @@ author: steveesp
7
7
ms.service: azure-virtual-network
8
8
ms.custom: linux-related-content
9
9
ms.topic: how-to
10
-
ms.date: 04/24/2023
10
+
ms.date: 10/02/2024
11
11
ms.author: steveesp
12
12
---
13
13
14
14
# Set up DPDK in a Linux virtual machine
15
15
16
-
> [!CAUTION]
17
-
> This article references CentOS, a Linux distribution that is End Of Life (EOL) status. Please consider your use and plan accordingly. For more information, see the [CentOS End Of Life guidance](/azure/virtual-machines/workloads/centos/centos-end-of-life).
18
-
19
16
Data Plane Development Kit (DPDK) on Azure offers a faster user-space packet processing framework for performance-intensive applications. This framework bypasses the virtual machine’s kernel network stack.
20
17
21
18
In typical packet processing that uses the kernel network stack, the process is interrupt-driven. When the network interface receives incoming packets, there's a kernel interrupt to process the packet and a context switch from the kernel space to the user space. DPDK eliminates context switching and the interrupt-driven method in favor of a user-space implementation that uses poll mode drivers for fast packet processing.
@@ -39,7 +36,6 @@ The following distributions from the Azure Marketplace are supported:
39
36
| Ubuntu 18.04 | 4.15.0-1014-azure+ |
40
37
| SLES 15 SP1 | 4.12.14-8.19-azure+ |
41
38
| RHEL 7.5 | 3.10.0-862.11.6.el7.x86_64+ |
42
-
| CentOS 7.5 | 3.10.0-862.11.6.el7.x86_64+ |
43
39
| Debian 10 | 4.19.0-1-cloud+ |
44
40
45
41
The noted versions are the minimum requirements. Newer versions are supported too.
@@ -68,9 +64,9 @@ DPDK installation instructions for MANA VMs are available here: [Microsoft Azure
68
64
69
65
### Install build dependencies
70
66
71
-
# [RHEL, CentOS](#tab/redhat)
67
+
# [RHEL](#tab/redhat)
72
68
73
-
#### RHEL7.5/CentOS 7.5
69
+
#### RHEL7.5
74
70
75
71
```bash
76
72
yum -y groupinstall "Infiniband Support"
@@ -273,7 +269,7 @@ When you're running the previous commands on a virtual machine, change *IP_SRC_A
273
269
274
270
## Install DPDK via system package (not recommended)
0 commit comments