xref: /openbsd/usr.bin/tcpbench/tcpbench.1 (revision 4cfece93)
1.\" $OpenBSD: tcpbench.1,v 1.28 2020/05/04 12:13:09 sthen Exp $
2.\"
3.\" Copyright (c) 2008 Damien Miller <djm@mindrot.org>
4.\"
5.\" Permission to use, copy, modify, and distribute this software for any
6.\" purpose with or without fee is hereby granted, provided that the above
7.\" copyright notice and this permission notice appear in all copies.
8.\"
9.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\"
17.Dd $Mdocdate: May 4 2020 $
18.Dt TCPBENCH 1
19.Os
20.Sh NAME
21.Nm tcpbench
22.Nd TCP/UDP benchmarking and measurement tool
23.Sh SYNOPSIS
24.Nm
25.Fl l
26.Nm
27.Op Fl 46RUuv
28.Op Fl B Ar buf
29.Op Fl b Ar sourceaddr
30.Op Fl k Ar kvars
31.Op Fl n Ar connections
32.Op Fl p Ar port
33.Op Fl r Ar interval
34.Op Fl S Ar space
35.Op Fl T Ar toskeyword
36.Op Fl t Ar secs
37.Op Fl V Ar rtable
38.Ar hostname
39.Nm
40.Bk -words
41.Fl s
42.Op Fl 46Uuv
43.Op Fl B Ar buf
44.Op Fl k Ar kvars
45.Op Fl p Ar port
46.Op Fl r Ar interval
47.Op Fl S Ar space
48.Op Fl T Ar toskeyword
49.Op Fl V Ar rtable
50.Op Ar hostname
51.Ek
52.Sh DESCRIPTION
53.Nm
54is a small tool that performs throughput benchmarking and concurrent
55sampling of kernel network variables.
56.Pp
57.Nm
58is run as a client/server pair.
59The server must be invoked with the
60.Fl s
61flag, which will cause it to listen for incoming connections.
62The client must be invoked with the
63.Ar hostname
64of a listening server to connect to.
65.Pp
66Once connected, the client will send TCP or UDP traffic as fast as possible to
67the server.
68Both the client and server will periodically compute and display throughput
69statistics.
70The server starts computing these for UDP on receipt of the first datagram,
71and stops for TCP when it has no connections.
72This display also includes any kernel variables the user has selected to
73sample (using the
74.Fl k
75option, which is only available in TCP mode).
76A list of available kernel variables may be obtained using the
77.Fl l
78option.
79.Pp
80A summary over the periodic throughput statistics is displayed on exit.
81Its accuracy may be increased by decreasing the
82.Ar interval .
83The summary bytes and duration cover the interval from transfer start
84to process exit.
85The summary information can also be displayed while
86.Nm
87is running by sending it a
88.Dv SIGINFO
89signal (see the
90.Cm status
91argument of
92.Xr stty 1
93for more information).
94.Pp
95The options are as follows:
96.Bl -tag -width Ds
97.It Fl 4
98Force
99.Nm
100to use IPv4 addresses only.
101.It Fl 6
102Force
103.Nm
104to use IPv6 addresses only.
105.It Fl B Ar buf
106Specify the size of the internal read/write buffer used by
107.Nm .
108The default is 262144 bytes for TCP client/server and UDP server.
109In UDP client mode this may be used to specify the packet size on the test
110stream.
111.It Fl b Ar sourceaddr
112Specify the IP address to send the packets from,
113which is useful on machines with multiple interfaces.
114.It Fl k Ar kvars
115Specify one or more kernel variables to monitor; multiple variables must be
116separated with commas.
117This option is only valid in TCP mode.
118The default is not to monitor any variables.
119Using this option requires read access to
120.Pa /dev/kmem ,
121which may be restricted based upon the value of the
122.Ar kern.allowkmem
123.Xr sysctl 8 .
124.It Fl l
125List the name of kernel variables available for monitoring and exit.
126.It Fl n Ar connections
127Use the given number of TCP connections (default: 1).
128UDP is connectionless so this option isn't valid.
129.It Fl p Ar port
130Specify the port used for the test stream (default: 12345).
131.It Fl R
132In client mode the write buffer size is randomized up to the size specified via
133.Fl B .
134.It Fl r Ar interval
135Specify the statistics interval reporting rate in milliseconds (default: 1000).
136If set to 0, nothing is printed.
137.It Fl S Ar space
138Set the size of the socket buffer used for the test stream.
139On the client this option will resize the send buffer;
140on the server it will resize the receive buffer.
141.It Fl s
142Place
143.Nm
144in server mode, where it will listen on all interfaces for incoming
145connections.
146It defaults to using TCP if
147.Fl u
148is not specified.
149.It Fl T Ar toskeyword
150Change the IPv4 TOS or IPv6 TCLASS value.
151.Ar toskeyword
152may be one of
153.Ar critical ,
154.Ar inetcontrol ,
155.Ar lowdelay ,
156.Ar netcontrol ,
157.Ar throughput ,
158.Ar reliability ,
159or one of the DiffServ Code Points:
160.Ar ef ,
161.Ar af11 ... af43 ,
162.Ar cs0 ... cs7 ;
163or a number in either hex or decimal.
164.It Fl t Ar secs
165Stop after
166.Ar secs
167seconds.
168.It Fl U
169Use AF_UNIX sockets instead of IPv4 or IPv6 sockets.
170In client and server mode
171.Ar hostname
172is used as the path to the AF_UNIX socket.
173.It Fl u
174Use UDP instead of TCP; this must be specified on both the client
175and the server.
176Transmitted packets per second (TX PPS) will be accounted on the client
177side, while received packets per second (RX PPS) will be accounted on the
178server side.
179UDP has no Protocol Control Block (PCB) so the
180.Fl k
181flags don't apply.
182.It Fl V Ar rtable
183Set the routing table to be used.
184.It Fl v
185Display verbose output.
186If specified more than once, increase the detail of information displayed.
187.El
188.Sh SEE ALSO
189.Xr netstat 1 ,
190.Xr pstat 8
191.Sh HISTORY
192The
193.Nm
194program first appeared in
195.Ox 4.4 .
196.Sh AUTHORS
197.An -nosplit
198The
199.Nm
200program was written by
201.An Damien Miller Aq Mt djm@openbsd.org .
202.Pp
203UDP mode and libevent port by
204.An Christiano F. Haesbaert Aq Mt haesbaert@haesbaert.org .
205