1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
#+EXPORT_FILE_NAME: xdp-trafficgen
#+TITLE: xdp-trafficgen
#+OPTIONS: ^:nil
#+MAN_CLASS_OPTIONS: :section-id "8\" \"DATE\" \"VERSION\" \"An XDP-based traffic generator"
# This file serves both as a README on github, and as the source for the man
# page; the latter through the org-mode man page export support.
# .
# To export the man page, simply use the org-mode exporter; (require 'ox-man) if
# it's not available. There's also a Makefile rule to export it.
* XDP-trafficgen - an XDP-based traffic generator
XDP-trafficgen is a packet generator utilising the XDP kernel subsystem to
generate packets transmit them through a network interface. Packets are
dynamically generated and transmitted in the kernel, allowing for high
performance (millions of packets per second per core).
XDP-trafficgen supports generating UDP traffic with fixed or dynamic destination
ports, and also has basic support for generating dummy TCP traffic on a single
flow.
** Running xdp-traffigen
The syntax for running xdp-bench is:
#+begin_src sh
Usage: xdp-trafficgen COMMAND [options]
COMMAND can be one of:
udp - run in UDP mode
tcp - run in TCP mode
#+end_src
Each command, and its options are explained below. Or use =xdp-trafficgen COMMAND
--help= to see the options for each command.
* The UDP command
The UDP command generates UDP traffic to a given destination IP and either a
fixed destination port, or a range of port numbers. Only IPv6 traffic is
supported, and the generated packets will have their IP hop limit set to 1, so
they can't be routed.
The syntax for the =udp= command is:
=xdp-trafficgen udp [options] <ifname>=
Where =<ifname>= is the name of the destination interface that packets will be
transmitted on. Note that the network driver of this network interface must
support being the target of XDP redirects (it must implement the =ndo_xdp_xmit=
driver operation).
The supported options are:
** -m, --dst-mac <mac addr>
Set the destination MAC address of generated packets. The default is to generate
packets with an all-zero destination MAC.
** -M, --src-mac <mac addr>
Set the source MAC address of the generated packets. The default is to use the
MAC address of the interface packets are transmitted on.
** -a, --dst-addr <addr>
Destination IP address of generated packets. The default is the link-local
=fe80::2= address.
** -A, --src-addr <addr>
Source IP address of generated packets. The default is the link-local =fe80::1=
address.
** -p, --dst-port <port>
Destination UDP port of generated packets, or the first port in the range if
running with =--dyn-ports= set. Defaults to 1.
** -P, --src-port <port>
Source UDP port of generated packets. Defaults to 1.
** -d, --dyn-ports <num ports>
Enable dynamic port mode where the destination port is varied over a range of
=<num ports>= starting from the =--dst-port=.
** -n, --num-packets <port>
Number of packets to send before exiting. If not supplied, =xdp-trafficgen= will
keep sending packets until interrupted.
** -t, --threads <threads>
Number of simultaneous threads to transmit from. Each thread will be pinned to a
separate CPU core if possible. Defaults to 1.
** -I, --interval <s>
Output transmission statistics with this interval (in seconds).
** -v, --verbose
Enable verbose logging (-vv: more verbose).
** --version
Display version information and exit.
** -h, --help
Display a summary of the available options
* The TCP command
The TCP command generates dummy TCP traffic in a single TCP flow. This relies on
first installing an ingress XDP program on the interface used to transmit on.
Then, a regular TCP socket connection is established from userspace, and once
the handshake is completed, the XDP program will take over and start generating
traffic on that flow tuple. The ingress XDP program will intercept ACK packets
from the receiver, and keep track of the receive window.
The traffic generator has no congestion control, and only very basic retransmit
tracking: in essence, any duplicate ACKs from the receiver will cause the sender
to reset its send sequence number to the last ACKed value and restart from
there. The same thing happens if no progress on the window is made within two
seconds. This means that the traffic generator can generate a large amount of
dummy traffic, but if there's packet loss a lot of this can be retransmissions.
The syntax for the =tcp= command is:
=xdp-trafficgen tcp [options] -i <ifname> <hostname>=
Where =<ifname>= is the name of the destination interface that packets will be
transmitted on and =<hostname>= is the peer hostname or IP address to connect to
(only IPv6 is supported). Note that the network driver of this network interface
must support being the target of XDP redirects (it must implement the
=ndo_xdp_xmit= driver operation).
The supported options are:
** -p, --dst-port <port>
Connect to destination <port>. Default 10000.
** -m, --mode <mode>
Load ingress XDP program in <mode>; default native (valid values: native,skb,hw)
** -n, --num-packets <port>
Number of packets to send before exiting. If not supplied, =xdp-trafficgen= will
keep sending packets until interrupted.
** -I, --interval <s>
Output transmission statistics with this interval (in seconds).
** -v, --verbose
Enable verbose logging (-vv: more verbose).
** --version
Display version information and exit.
** -h, --help
Display a summary of the available options
* BUGS
Please report any bugs on Github: https://github.com/xdp-project/xdp-tools/issues
* AUTHOR
xdp-trafficgen and this man page were written by Toke Høiland-Jørgensen.
|