Skip to content
bluestar edited this page Oct 6, 2015 · 40 revisions

NETDP overview

NETDP provide a userspace TCP/IP stack for use with DPDK. NETDP is a static library which can be compiled with your App. You can add or delete ether interface, IP address and static routing from NETDP. Your App can forward traffic to NETDP.

|--------------------------------------| 
|            APPLICATION               | 
|--------------------------------------| 
|       | |NETDP                       | 
|       | ||--------------------------||
|       | ||       SOCKET             || 
|       | ||--------------------------|| 
|       | ||       UDP TCP ICMP       || 
|       | ||--------------------------|| 
|  ODP  | ||     ARP IP ROUTING       || 
|       | ||--------------------------|| 
|       | ||      Ethernet            || 
|       | |----------------------------| 
|-------| |----------------------------| 
|--------------------------------------| 
|               DPDK                   | 
|--------------------------------------| 

How to compile APP with netdp lib?

Please refer to "Compile app with netdp" page

How to use NETDP in APP?

Please refer to "Use NETDP in APP" page

How to configure IP and routing by API?

Please refer to "Configure IP and routing by API" page

How to configure IP and routing by commands?

Please refer to "Configure IP and routing by commands" page

How to establish UDP socket with epoll?

Please refer to "UDP socket" page

How to establish TCP socket with epoll?

Please refer to "TCP socket" page

Demo

Clone this wiki locally