{"id":538,"date":"2024-08-30T00:17:25","date_gmt":"2024-08-29T21:17:25","guid":{"rendered":"https:\/\/itgen.itbumper.com\/?page_id=538"},"modified":"2024-09-03T02:24:08","modified_gmt":"2024-09-02T23:24:08","slug":"iperf3","status":"publish","type":"page","link":"https:\/\/itgen.itbumper.com\/?page_id=538","title":{"rendered":"0009_Iperf3"},"content":{"rendered":"\n\n<p style=\"text-align: justify;\">iperf3 is a tool for network performance measurement. It is widely used to test the bandwidth between two endpoints in a network and can measure TCP, UDP, and SCTP throughput. iperf3 is useful for diagnosing network issues, verifying the quality of a network, and ensuring that a network can handle the required traffic.<\/p>\n<p><strong>Install iperf3<\/strong>:<br>On Linux, you can install it using the package manager:<\/p>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nsudo apt-get install iperf3\n<\/pre><\/div>\n\n<p><\/p>\n<p><strong>Basic TCP Test (Server and Client)<\/strong>:<\/p>\n<ul>\n<li data-tadv-p=\"keep\"><strong>Server<\/strong>: Start iperf3 on one machine in server mode.<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\niperf3 -s\n\n<\/pre><\/div>\n\n<ul>\n<li><strong>Client<\/strong>: Run the test from another machine.<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt;\n\n<\/pre><\/div>\n\n<ul>\n<li>\n<p>This command tests the TCP bandwidth from the client to the server.<\/p>\n<\/li>\n<\/ul>\n<p><strong>UDP Test<\/strong>:<\/p>\n<ul>\n<li><strong>Server<\/strong>:<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\niperf3 -s\n\n<\/pre><\/div>\n\n<p><strong>Client<\/strong>:<\/p>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt; -u\n\n<\/pre><\/div>\n\n<p>The <code>-u<\/code> flag switches to UDP mode.<\/p>\n<p><\/p>\n<p><strong>Specifying Bandwidth<\/strong>:<\/p>\n<ul>\n<li>To specify the bandwidth for a UDP test, use the <code>-b<\/code> option:<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt; -u -b 10M\n\n<\/pre><\/div>\n\n<ul>\n<li>\n<p>This example sends data at 10 Mbps.<\/p>\n<\/li>\n<\/ul>\n<p><strong style=\"font-size: revert;\">Test Duration<\/strong><span style=\"font-size: revert;\">:<\/span><\/p>\n<ul>\n<li>Use the <code>-t<\/code> option to set the test duration (in seconds):<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt; -t 30\n\n<\/pre><\/div>\n\n<ul>\n<li>\n<p>This command runs the test for 30 seconds.<\/p>\n<\/li>\n<\/ul>\n<p><strong>Parallel Streams<\/strong>:<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>To test multiple parallel streams, use the <code>-P<\/code> option:<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt; -P 5\n\n<\/pre><\/div>\n\n<p>This sends data over 5 parallel streams.<\/p>\n<p><\/p>\n<p><strong>Test with Time-To-Live (TTL):<\/strong><\/p>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt; --ttl 64\n<\/pre><\/div>\n\n<p><\/p>\n<p><strong>Test with Quality of Service (ToS) or Differentiated Services Code Point (DSCP):<\/strong><\/p>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt; -S 0x20\n\n\n<\/pre><\/div>\n\n<p><strong>ToS\/DSCP:<\/strong> These values are used to prioritize network traffic. For example, <code>0x20<\/code> sets a priority for bulk data transfer.<\/p>\n<p><strong>Viewing Results:<\/strong><\/p>\n<ul>\n<li>The results will show the bandwidth achieved, loss rates (for UDP), and other metrics to assess the network&#8217;s performance.<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nServer or Client:\n  -p, --port      #         server port to listen on\/connect to\n  -f, --format    &#x5B;kmgKMG]  format to report: Kbits, Mbits, KBytes, MBytes\n  -i, --interval  #         seconds between periodic bandwidth reports\n  -F, --file name           xmit\/recv the specified file\n  -B, --bind      &lt;host&gt;    bind to a specific interface\n  -V, --verbose             more detailed output\n  -J, --json                output in JSON format\n  --logfile f               send output to a log file\n  --forceflush              force flushing output at every interval\n  -d, --debug               emit debugging output\n  -v, --version             show version information and quit\n  -h, --help                show this message and quit\nServer specific:\n  -s, --server              run in server mode\n  -D, --daemon              run the server as a daemon\n  -I, --pidfile file        write PID file\n  -1, --one-off             handle one client connection then exit\nClient specific:\n  -c, --client    &lt;host&gt;    run in client mode, connecting to &lt;host&gt;\n  -u, --udp                 use UDP rather than TCP\n  -b, --bandwidth #&#x5B;KMG]&#x5B;\/#] target bandwidth in bits\/sec (0 for unlimited)\n                            (default 1 Mbit\/sec for UDP, unlimited for TCP)\n                            (optional slash and packet count for burst mode)\n  -t, --time      #         time in seconds to transmit for (default 10 secs)\n  -n, --bytes     #&#x5B;KMG]    number of bytes to transmit (instead of -t)\n  -k, --blockcount #&#x5B;KMG]   number of blocks (packets) to transmit (instead of -t or -n)\n  -l, --len       #&#x5B;KMG]    length of buffer to read or write\n                            (default 128 KB for TCP, dynamic or 1 for UDP)\n  --cport         &lt;port&gt;    bind to a specific client port (TCP and UDP, default: ephemeral port)\n  -P, --parallel  #         number of parallel client streams to run\n  -R, --reverse             run in reverse mode (server sends, client receives)\n  -w, --window    #&#x5B;KMG]    set window size \/ socket buffer size\n  -M, --set-mss   #         set TCP\/SCTP maximum segment size (MTU - 40 bytes)\n  -N, --no-delay            set TCP\/SCTP no delay, disabling Nagle's Algorithm\n  -4, --version4            only use IPv4\n  -6, --version6            only use IPv6\n  -S, --tos N               set the IP 'type of service'\n  -Z, --zerocopy            use a 'zero copy' method of sending data\n  -O, --omit N              omit the first n seconds\n  -T, --title str           prefix every output line with this string\n  --get-server-output       get results from server\n  --udp-counters-64bit      use 64-bit counters in UDP test packets\n\n<\/pre><\/div>\n\n\n<figure class=\"wp-block-table aligncenter\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\"><strong>ToS\/DSCP Value<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Hexadecimal (DSCP)<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Binary<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Priority\/Type of Traffic<\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>Description<\/strong><\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">0<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x00<\/td><td class=\"has-text-align-center\" data-align=\"center\">000000<\/td><td class=\"has-text-align-center\" data-align=\"center\">Default<\/td><td class=\"has-text-align-center\" data-align=\"center\">Standart traffic. No priority.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">8<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x20<\/td><td class=\"has-text-align-center\" data-align=\"center\">001000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS1 <\/td><td class=\"has-text-align-center\" data-align=\"center\">Standard traffic. No priority.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">16<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x40<\/td><td class=\"has-text-align-center\" data-align=\"center\">010000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS2<\/td><td class=\"has-text-align-center\" data-align=\"center\">OAM (Operations, Administration, and Management).<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">24<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x60<\/td><td class=\"has-text-align-center\" data-align=\"center\">011000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS3<\/td><td class=\"has-text-align-center\" data-align=\"center\">Signaling, call setup.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">32<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x80<\/td><td class=\"has-text-align-center\" data-align=\"center\">100000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS4<\/td><td class=\"has-text-align-center\" data-align=\"center\">Streaming media, real-time interactive.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">40<\/td><td class=\"has-text-align-center\" data-align=\"center\">0xA0<\/td><td class=\"has-text-align-center\" data-align=\"center\">101000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS5<\/td><td class=\"has-text-align-center\" data-align=\"center\">Critical applications, video conferencing.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">48<\/td><td class=\"has-text-align-center\" data-align=\"center\">0xC0<\/td><td class=\"has-text-align-center\" data-align=\"center\">110000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS6<\/td><td class=\"has-text-align-center\" data-align=\"center\">Network control, routing protocols.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">56<\/td><td class=\"has-text-align-center\" data-align=\"center\">0xE0<\/td><td class=\"has-text-align-center\" data-align=\"center\">111000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS7<\/td><td class=\"has-text-align-center\" data-align=\"center\">Network control, high-priority traffic.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">10<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x28<\/td><td class=\"has-text-align-center\" data-align=\"center\">001010<\/td><td class=\"has-text-align-center\" data-align=\"center\">AF11 <\/td><td class=\"has-text-align-center\" data-align=\"center\">Low drop precedence, medium priority traffic.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">18<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x48<\/td><td class=\"has-text-align-center\" data-align=\"center\">010010<\/td><td class=\"has-text-align-center\" data-align=\"center\">AF21 <\/td><td class=\"has-text-align-center\" data-align=\"center\">Low drop precedence, high priority traffic.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">26<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x68<\/td><td class=\"has-text-align-center\" data-align=\"center\">011010<\/td><td class=\"has-text-align-center\" data-align=\"center\">AF31 <\/td><td class=\"has-text-align-center\" data-align=\"center\">Low drop precedence, real-time interactive.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">34<\/td><td class=\"has-text-align-center\" data-align=\"center\">0x88<\/td><td class=\"has-text-align-center\" data-align=\"center\">100010<\/td><td class=\"has-text-align-center\" data-align=\"center\">AF41<\/td><td class=\"has-text-align-center\" data-align=\"center\">Low drop precedence, high-priority video and voice.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">46<\/td><td class=\"has-text-align-center\" data-align=\"center\">0xB8<\/td><td class=\"has-text-align-center\" data-align=\"center\">101110<\/td><td class=\"has-text-align-center\" data-align=\"center\">EF<\/td><td class=\"has-text-align-center\" data-align=\"center\">High-priority, low-latency traffic, often used for voice over IP (VoIP).<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">48<\/td><td class=\"has-text-align-center\" data-align=\"center\">0xC0<\/td><td class=\"has-text-align-center\" data-align=\"center\">110000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS6<\/td><td class=\"has-text-align-center\" data-align=\"center\">Network control, routing protocols.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">56<\/td><td class=\"has-text-align-center\" data-align=\"center\">0xE0<\/td><td class=\"has-text-align-center\" data-align=\"center\">111000<\/td><td class=\"has-text-align-center\" data-align=\"center\">CS7<\/td><td class=\"has-text-align-center\" data-align=\"center\">Network control, high-priority traffic.<\/td><\/tr><\/tbody><tfoot><tr><td class=\"has-text-align-center\" data-align=\"center\"><\/td><td class=\"has-text-align-center\" data-align=\"center\"><\/td><td class=\"has-text-align-center\" data-align=\"center\"><\/td><td class=\"has-text-align-center\" data-align=\"center\"><\/td><td class=\"has-text-align-center\" data-align=\"center\"><\/td><\/tr><\/tfoot><\/table><\/figure>\n\n\n<h3 style=\"text-align: justify;\">Key Terms:<\/h3>\n<ul style=\"text-align: justify;\">\n<li><strong>CS (Class Selector):<\/strong> Used for backward compatibility with IP precedence.<\/li>\n<li><strong>AF (Assured Forwarding):<\/strong> Assures delivery under prescribed conditions.<\/li>\n<li><strong>EF (Expedited Forwarding):<\/strong> Ensures low loss, latency, and jitter traffic.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\" data-tadv-p=\"keep\">These DSCP values help prioritize network traffic, ensuring that more critical data (e.g., VoIP or video conferencing) gets the necessary bandwidth and lower latency.<\/p>\n<p><\/p>\n<p><strong>Example Analysis for VoIP Using Iperf3<\/strong><\/p>\n<p><strong>Objective:<\/strong> To determine if the existing network can support VoIP traffic with minimal latency, packet loss, and jitter.<\/p>\n<p><strong>Process:<\/strong><\/p>\n<ol>\n<li>\n<p><strong>Run Iperf3 Server:<\/strong><\/p>\n<ul>\n<li>Start the server on one machine.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\niperf3 -s\n<\/pre><\/div>\n\n<p><strong>2. Run Iperf3 Client with VoIP Parameters:<\/strong><\/p>\n<ul>\n<li>On another machine, run the client specifying the server\u2019s IP and parameters to simulate VoIP traffic:<\/li>\n<\/ul>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\niperf3 -c &lt;server_ip&gt; -u -b 100K -t 30 -S 0xB8\n<\/pre><\/div>\n\n<p><strong>3. Parameters:<\/strong><\/p>\n<ol>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><code>-u<\/code>: Uses UDP (since VoIP uses UDP).<\/li>\n<li><code>-b 100K<\/code>: Limits bandwidth to 100 Kbps, typical for VoIP traffic.<\/li>\n<li><code>-t 30<\/code>: Test duration is 30 seconds.<\/li>\n<li><code>-S 0xB8<\/code>: Uses DSCP value <code>0xB8<\/code> (EF &#8211; Expedited Forwarding), meaning high priority and low latency.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p>4. <strong style=\"font-size: revert;\">Analyze Results:<\/strong><\/p>\n<ul>\n<li>\n<ul>\n<li><strong>Latency:<\/strong> Latency is critical. For VoIP, latency should be under 150 ms.<\/li>\n<li><strong>Packet Loss:<\/strong> Packet loss should be minimal (0-1%) for good VoIP quality.<\/li>\n<li><strong>Jitter:<\/strong> Jitter should be minimal, preferably under 30 ms for VoIP.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p><strong>Possible Outcomes:<\/strong><\/p>\n<ol>\n<li>\n<p><strong>Optimal Conditions:<\/strong><\/p>\n<ul>\n<li><strong>Results:<\/strong> Latency &lt; 100 ms, Packet Loss &lt; 1%, Jitter &lt; 20 ms.<\/li>\n<li><strong>Conclusion:<\/strong> The network is well-suited for VoIP with high-quality communication.<\/li>\n<\/ul>\n<\/li>\n<li>\n<p><strong>Acceptable Conditions:<\/strong><\/p>\n<ul>\n<li><strong>Results:<\/strong> Latency 100-150 ms, Packet Loss 1-2%, Jitter 20-30 ms.<\/li>\n<li><strong>Conclusion:<\/strong> The network is acceptable for VoIP, but occasional quality issues may occur.<\/li>\n<\/ul>\n<\/li>\n<li>\n<p><strong>Unacceptable Conditions:<\/strong><\/p>\n<ul>\n<li><strong>Results:<\/strong> Latency &gt; 150 ms, Packet Loss &gt; 2%, Jitter &gt; 30 ms.<\/li>\n<li><strong>Conclusion:<\/strong> The network is not suitable for VoIP. Network improvements or load reduction are necessary.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p><strong>Output example on a client-side:<\/strong><\/p>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\niperf3 -c 192.168.XXX.XXX -u -b 100K -t 30 -S 0xB8\nSetting UDP block size to 1460\nWarning:  UDP block size 1460 exceeds TCP MSS 0, may result in fragmentation \/ drops\nConnecting to host 192.168.10.150, port 5201\n&#x5B;  4] local 172.16.XXX.XXX port 64738 connected to 192.168.XXX.XXX port 5201\n&#x5B; ID] Interval           Transfer     Bandwidth       Total Datagrams\n&#x5B;  4]   0.00-1.01   sec  11.4 KBytes  92.6 Kbits\/sec  8\n&#x5B;  4]   1.01-2.01   sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]   2.01-3.00   sec  11.4 KBytes  94.4 Kbits\/sec  8\n&#x5B;  4]   3.00-4.01   sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]   4.01-5.01   sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]   5.01-6.00   sec  11.4 KBytes  94.4 Kbits\/sec  8\n&#x5B;  4]   6.00-7.01   sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]   7.01-8.01   sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]   8.01-9.00   sec  12.8 KBytes   106 Kbits\/sec  9\n&#x5B;  4]   9.00-10.01  sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]  10.01-11.01  sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]  11.01-12.00  sec  12.8 KBytes   106 Kbits\/sec  9\n&#x5B;  4]  12.00-13.01  sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]  13.01-14.01  sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]  14.01-15.00  sec  11.4 KBytes  94.4 Kbits\/sec  8\n&#x5B;  4]  15.00-16.01  sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]  16.01-17.01  sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]  17.01-18.00  sec  12.8 KBytes   106 Kbits\/sec  9\n&#x5B;  4]  18.00-19.01  sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]  19.01-20.01  sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]  20.01-21.00  sec  12.8 KBytes   106 Kbits\/sec  9\n&#x5B;  4]  21.00-22.01  sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]  22.01-23.01  sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]  23.01-24.00  sec  11.4 KBytes  94.4 Kbits\/sec  8\n&#x5B;  4]  24.00-25.01  sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]  25.01-26.01  sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]  26.01-27.00  sec  12.8 KBytes   106 Kbits\/sec  9\n&#x5B;  4]  27.00-28.01  sec  11.4 KBytes  93.0 Kbits\/sec  8\n&#x5B;  4]  28.01-29.01  sec  12.8 KBytes   105 Kbits\/sec  9\n&#x5B;  4]  29.01-30.00  sec  12.8 KBytes   106 Kbits\/sec  9\n- - - - - - - - - - - - - - - - - - - - - - - - -\n&#x5B; ID] Interval           Transfer     Bandwidth       Jitter    Lost\/Total Datagrams\n&#x5B;  4]   0.00-30.00  sec   366 KBytes   100 Kbits\/sec  1.869 ms  0\/257 (0%)\n&#x5B;  4] Sent 257 datagrams\n\niperf Done.\n<\/pre><\/div>\n\n<p><\/p>\n<p><strong>Output example on a server side:<\/strong><\/p>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nServer listening on 5201\n-----------------------------------------------------------\nAccepted connection from 172.16.XXX.XXX, port 4140\n&#x5B;  5] local 192.168.XXX.XXX port 5201 connected to 172.16.XXX.XXX port 64738\n&#x5B; ID] Interval           Transfer     Bitrate         Jitter    Lost\/Total Datagrams\n&#x5B;  5]   0.00-1.00   sec  9.98 KBytes  81.8 Kbits\/sec  0.318 ms  0\/7 (0%)\n&#x5B;  5]   1.00-2.00   sec  11.4 KBytes  93.4 Kbits\/sec  0.311 ms  0\/8 (0%)\n&#x5B;  5]   2.00-3.00   sec  12.8 KBytes   105 Kbits\/sec  0.254 ms  0\/9 (0%)\n&#x5B;  5]   3.00-4.00   sec  11.4 KBytes  93.4 Kbits\/sec  0.326 ms  0\/8 (0%)\n&#x5B;  5]   4.00-5.00   sec  12.8 KBytes   105 Kbits\/sec  0.408 ms  0\/9 (0%)\n&#x5B;  5]   5.00-6.00   sec  11.4 KBytes  93.4 Kbits\/sec  0.303 ms  0\/8 (0%)\n&#x5B;  5]   6.00-7.00   sec  12.8 KBytes   105 Kbits\/sec  0.461 ms  0\/9 (0%)\n&#x5B;  5]   7.00-8.00   sec  12.8 KBytes   105 Kbits\/sec  0.302 ms  0\/9 (0%)\n&#x5B;  5]   8.00-9.00   sec  11.4 KBytes  93.4 Kbits\/sec  0.506 ms  0\/8 (0%)\n&#x5B;  5]   9.00-10.00  sec  12.8 KBytes   105 Kbits\/sec  0.353 ms  0\/9 (0%)\n&#x5B;  5]  10.00-11.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.307 ms  0\/8 (0%)\n&#x5B;  5]  11.00-12.00  sec  12.8 KBytes   105 Kbits\/sec  0.290 ms  0\/9 (0%)\n&#x5B;  5]  12.00-13.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.414 ms  0\/8 (0%)\n&#x5B;  5]  13.00-14.00  sec  12.8 KBytes   105 Kbits\/sec  0.331 ms  0\/9 (0%)\n&#x5B;  5]  14.00-15.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.306 ms  0\/8 (0%)\n&#x5B;  5]  15.00-16.00  sec  12.8 KBytes   105 Kbits\/sec  0.229 ms  0\/9 (0%)\n&#x5B;  5]  16.00-17.00  sec  12.8 KBytes   105 Kbits\/sec  0.203 ms  0\/9 (0%)\n&#x5B;  5]  17.00-18.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.301 ms  0\/8 (0%)\n&#x5B;  5]  18.00-19.00  sec  12.8 KBytes   105 Kbits\/sec  0.353 ms  0\/9 (0%)\n&#x5B;  5]  19.00-20.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.275 ms  0\/8 (0%)\n&#x5B;  5]  20.00-21.00  sec  12.8 KBytes   105 Kbits\/sec  0.373 ms  0\/9 (0%)\n&#x5B;  5]  21.00-22.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.657 ms  0\/8 (0%)\n&#x5B;  5]  22.00-23.00  sec  12.8 KBytes   105 Kbits\/sec  0.458 ms  0\/9 (0%)\n&#x5B;  5]  23.00-24.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.338 ms  0\/8 (0%)\n&#x5B;  5]  24.00-25.00  sec  12.8 KBytes   105 Kbits\/sec  0.325 ms  0\/9 (0%)\n&#x5B;  5]  25.00-26.00  sec  12.8 KBytes   105 Kbits\/sec  0.257 ms  0\/9 (0%)\n&#x5B;  5]  26.00-27.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.231 ms  0\/8 (0%)\n&#x5B;  5]  27.00-28.00  sec  12.8 KBytes   105 Kbits\/sec  0.208 ms  0\/9 (0%)\n&#x5B;  5]  28.00-29.00  sec  11.4 KBytes  93.4 Kbits\/sec  0.219 ms  0\/8 (0%)\n&#x5B;  5]  29.00-30.00  sec  12.8 KBytes   105 Kbits\/sec  1.873 ms  0\/9 (0%)\n&#x5B;  5]  30.00-30.27  sec  2.85 KBytes  85.7 Kbits\/sec  1.869 ms  0\/2 (0%)\n- - - - - - - - - - - - - - - - - - - - - - - - -\n&#x5B; ID] Interval           Transfer     Bitrate         Jitter    Lost\/Total Datagrams\n&#x5B;  5]   0.00-30.27  sec   366 KBytes  99.2 Kbits\/sec  1.869 ms  0\/257 (0%)  receiver\n-----------------------------------------------------------\nServer listening on 5201\n-----------------------------------------------------------\n\n\n<\/pre><\/div>\n\n<p style=\"text-align: justify;\">If you need to evaluate the channel for possible operation through this communication channel of 100 IP phones, then the speed should be increased to 10 Mbps, and the minimum test time is 60 seconds<\/p>","protected":false},"excerpt":{"rendered":"<p>iperf3 is a tool for network performance measurement. It is widely used to test the bandwidth between two endpoints in a network and can measure TCP, UDP, and SCTP throughput. iperf3 is useful for diagnosing network issues, verifying the quality of a network, and ensuring that a network can handle the required traffic. Install iperf3:On &hellip; <a href=\"https:\/\/itgen.itbumper.com\/?page_id=538\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;0009_Iperf3&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[],"tags":[],"_links":{"self":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages\/538"}],"collection":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=538"}],"version-history":[{"count":13,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages\/538\/revisions"}],"predecessor-version":[{"id":576,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages\/538\/revisions\/576"}],"wp:attachment":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=538"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=538"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=538"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}