create account

iperf3 Tutorial (Networking tool used for testing) by trippymane

View this thread on: hive.blogpeakd.comecency.com
· @trippymane · (edited)
$45.23
iperf3 Tutorial (Networking tool used for testing)
Good evening Hive community!

It's my first post in POB and I hope to follow all the guidelines, please let me know if something is out place, thanks!


<hr> 
<center><h1>iperf3</h1></center>

Today I wanted to talk about a software that I have been using quite a lot lately at my workplace, we are currently upgrading the whole network infrastructure and we use this software for various tests before migrating the old network to the new one.
I previously had a clue on how to use it and its functionality but during the last weeks I have learned quite a lot about it, I don't want to say I mastered it 😅, but now I have a proper working understanding of the software and I wanted to share with you a quick guide on how to use it.

The software is called **iperf3** and here is the official definition from their [website](https://iperf.fr/):
  
>iPerf3 is a tool for active measurements of the maximum achievable bandwidth on IP networks. It supports tuning of various parameters related to timing, buffers and protocols (TCP, UDP, SCTP with IPv4 and IPv6). For each test it reports the bandwidth, loss, and other parameters. 

[Official Documentation iperf3](https://iperf.fr/iperf-doc.php#3doc)
[Download Page iperf/iperf3](https://iperf.fr/iperf-download.php)


<hr>

<h1>What can we use it for?</h1>

The main usage as the definition says it's to **test the maximum bandwidth** over links in a network, in our case we used it in conjunction with Wireshark to also verify various other info like: 

- checking for the right QoS marking to be applied (using Wireshark to sniff and analyse the traffic flowing over the link)

- making sure the expected behaviour of the QoS configurations was achieved (for example certain traffic may have only 10-15% of bandwidth allowed of the max throughput of a link which could be a 1G port so with the correct configuration applied we would expect to see a maximum of 100-150 Mbps traffic flowing))

- checking other info as drops and traffic exceeded for different protocols over different ports (TCP/UDP) as well as QoS behaviour for different types of traffic

It's quite a simple software that can do really a lot to help if you are testing in a new or existing network.


<hr>

For this test my setup will be on a LAN environment (my own home router) and two devices attached to it, my own PC and a mac book pro. One device will act as the server (receiving traffic) and the other will act as the client (sending traffic).
The server is passively listening for traffic over a certain port and the client is the device that actively starts the test and defines extra modifiers to tweak it, more on that later!

<h1>What we need:</h1> 

- **iperf3** downloaded on both devices (it's a very tiny folder with only 2 files usually, a .dll file and iperf3 - download link at the top of the post)
- **the IP addresses of the two devices** (or at least of the device that will act as a server) 
- **the TCP or UDP port** over which we want to send the traffic (facultative, this is a good modifier to add to the test if you are testing to gather different info like I explained above on what we used the software for in our case at work)

<hr>

<h1>Let's start the Test</h1>

To start the test we will need to run iperf3 **on one device as a Server** (receiving device) this will be the device to which we are sending traffic to! To start the software as a server we will need to open a terminal (preferably with admin rights) and go inside the folder that contains the iperf3 file.

- <h3> Device 1 - Windows PC - Server side</h3>

To enter in the terminal we can search CMD in windows then right click and "Run as an administrator"... 

![cmd.png](https://files.peakd.com/file/peakd-hive/trippymane/23t8AeisCk9RvZx1A5tW4WjA3x4fMSxXBQzNWpGbYzwnbwVdWTrGCDJvoY6i3DTWafa9d.png)
...and now we are in the terminal as admin.

![cmd admin.PNG](https://files.peakd.com/file/peakd-hive/trippymane/Eo69KBt8tzPSZNBc3xgD2piHYc9P7idQfGkegA6ALWLpLdEniRYxe7aJoXSWEtsXtGx.PNG)
Navigate to the right folder where iperf3 is located:


![aaa.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tb6VLvaUM1VySnPgcr3ZdfDS8zP8k7Sysnx2pc2AuAGUJniXdn4ACzSJq1n6VKTmQbu.PNG)

 

To run the server we need to run the following command (in this case iperf3 will listen to the default port):
```
iperf3 -s 
```
If we want to specify a specific port we need to add the **-p** modifier (in this example I'll use port 8080):
```
iperf3 -s -p 8080
```

![server.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tb6ZevFMPuVfFXVBpDc565bPWavFZJM3dHQTvg96Sz9VMTbAeDmrr2wonFwPAroqask.PNG)

As you can see from the picture above first I run the command without specifying the port, then I interrupted the server with Ctrl + C and run it again but this time specifying port 8080.
Now this device is listening for incoming traffic over port 8080 and we can move over to the second device, a mac book pro in our case, which we'll use as our client and will push traffic to test the bandwidth.

- <h3> Device 2 - mac book pro - Client side</h3>

To open the terminal on the mac is pretty much similar to Windows, just search in the search bar for **Terminal** and hit enter, this will open a terminal and then you can navigate to the right folder where you have downloaded iperf3 (if you want to have admin rights you can type **sudo su** and input your password).
My PC's IP address is 192.168.1.65 (the server side), it's good practice to check for connectivity with a ping test before starting the testing.

![1.jpg](https://files.peakd.com/file/peakd-hive/trippymane/243fr9hVtKHnsd9eet4FmvqNkk6VG8tUzf4mmzBpiMdgwku2TbpXZmaZQjNUEUwvWkuG5.jpg)

<hr> 

Now here is where things get a bit more complicated, here is where we specify different modifiers for changing the behaviour of the test, I will try to list the most important and their relative behaviour, also is worth mentioning that those commands are exactly the same on any OS (Windows, Mac, Linux) so once you learned how to use this software you will be able to use it on any system.
```
iperf3 				- To run the software on Windows and Linux (used at the start of the command)
./iperf3 			- To run the software on Mac OSX (used at the start of the command)

-u					- If you want to run the test in UDP mode (by default the test will be in TCP mode so in order to do a TCP test simply omit the -u modifier)

-s					- Run the software as a server
-c 	(-c x.x.x.x)	- Connect to x.x.x.x (IP address of the server to which we are trying to push traffic to, used in client mode)

-l					- length (100, 400, 750, 1200, etc)
-b					- bandwidth (1M ,5M, 10M, 100M, 1G, etc)
-t					- time (in seconds)
```

This are not all the commands, but only the most important and usually used, you can find the list of all the modifiers in the links I provided at the start of the post.

So a basic usage of the software in client mode would be:
- TCP test
```
iperf -c x.x.x.x -b <speed> -l <length> -t <time> -p <port>   (windows, linux)
./iperf -c x.x.x.x -b <speed> -l <length> -t <time> -p <port>    (mac osx)

x.x.x.x = ip address of the server
<speed> = 1 (if we omit the M it's 1kbps I think) 1M, 10M, 100M, 1G 
<length> = 100, 200, 400, 750, 900, 1200, etc
<time> = in seconds 10, 60, 600, 3000, etc
<port> = the server's listening port
```

- UDP test
```
iperf -u -c x.x.x.x -b <speed> -l <length> -t <time> -p <port>   (windows, linux)
./iperf -u -c x.x.x.x -b <speed> -l <length> -t <time> -p <port>    (mac osx)

x.x.x.x = ip address of the server
<speed> = 1 (if we omit the M it's 1kbps I think) 1M, 10M, 100M, 1G 
<length> = 100, 200, 400, 750, 900, 1200, etc
<time> = in seconds 10, 60, 600, 3000, etc
<port> = the server's listening port
```


In our example we will need to connect to my Windows PC that is listening over port 8080, the IP address of the machine is 192.168.1.65 (verified above). I will start with a simple test and gradually will add options and we'll see the test results change accordingly.

First test, default settings (10 sec default):
```
./iperf3 -c 192.168.1.65 -p 8080
```
Client side (sending traffic and actively starting the test):

![2.jpg](https://files.peakd.com/file/peakd-hive/trippymane/243BiMNWpwKZKn5LbEzRdKUFvgxmchCYPMD5P587cwFRtVUKAeP87SWBMP8YQanKptaXD.jpg)

Server side (receiving traffic and passively listening for traffic):


![222.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tRhpwiNeoKZEefdjoUC2tokqu7psDhCfHwxLUYTFeFgFyQx2cQj5sP3tV9H35Ni5ho7.PNG)



As you can see from the test we are sending aroung 50-60 Mbps and receiving the same amount, no big loss here, everything looks cool.

<hr>

Next test, I will add some modifiers like bandwidth and length, and maybe will make it run for 30 sec this time:

```
./iperf3 -c 192.168.1.65 -b 10M -l 400 -t 30 -p 8080
```
Client:

![3.jpg](https://files.peakd.com/file/peakd-hive/trippymane/23zGeHrAkcxK4UafFaAaEcLRedBJvMJV2eYqx7kohB8hrHdGdtxuMKkkBtj5bMb6JMAU7.jpg)

Server:


![333.PNG](https://files.peakd.com/file/peakd-hive/trippymane/Eo8GiUn45ySTjp8Gfnh1UE8Kf6o91H9qCFscZPiamrFySSQdXFirjNWWME6NpkmG3tf.PNG)

You can see the test now is pushing 10Mbps and on the other side my Windows PC is receiving 10M, no packet loss we can say.

<hr>

Now let's try to run the test in UDP and because of the nature of UDP the test itself will be able to tell us if there is packet loss or not:

```
./iperf3 -u -c 192.168.1.65 -b 50M -l 400 -t 30 -p 8080
```
Client:


![5.jpg](https://files.peakd.com/file/peakd-hive/trippymane/EpQwFGB7TocBXTPrQXbiuCwtQUFqaSdr3DP1sfMRuoDmW7SdZjAwG8zGDjcZAuQxwTY.jpg)

Server:


![555.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tustwmFbduQk9TFogiuGvW8488YvKTozeXYfBDWvjnECNqU3JE3J8a9qR5t2N9eNzqj.PNG)



Here you can see the stats from the sending and receiving devices and you can notice there is a new stat that previously with a TCP test we did not have, datagrams lost, and we can see there has been some packet loss and we can also see on the terminal screen some datagrams that arrived at the wrong order. (that is just the last part of the test, the whole terminal would have been way too long as there have been quite a lot of packets out of order as you can see, also we had loads of those messages because of the **-l 400** modifier, at the next text I will omit it and you will see a little difference in the result)

<hr>

Let's try a similar UDP test this time that goes just a little bit above my maximum bandwidth (around 70-80Mbps), because this test is done on my local network and the traffic is flowing through my router I believe that will be my maximum throughput, I might be wrong, but we will try to make the same test after with a different setup (I will remove the router and connect the two devices directly to each other with an ethernet cable, then I will set those two devices on the same subnet with a static IP configuration, because the router won't be there anymore with the limit of 70-80Mbps I should expect to see my maximum throughput to increase to the maximum seed of my network cards (hopefully 1G)

```
./iperf3 -u -c 192.168.1.65 -b 100M -t 30 -p 8080
```
Client:


![6.jpg](https://files.peakd.com/file/peakd-hive/trippymane/EpQwDRjYBQrrj3kt3oVsobkL7gXBPUE7WaYpTaCzFwoompLgMD9bF3qb6igHpPabMj3.jpg)

Server:

![666.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tkVKJWtmHXaDEFihS7upb7Bop4EWZpNF4rWEkaA2Hqwiq9FeQ34wFn5tChi55T16Huh.PNG)

And as expected you can see we are dropping a lot of packets here, even more than expected honestly.

<hr>


<h2>Remember!</h2>
- **The server** is the device that receives the traffic, it's the one listening and ready to receive the incoming traffic.

- **The client** is the device that sends the traffic and hence can define additional options for the test such as bandwidth, length, speed, etc etc. 

Once we are done with the test one way, we can always do the same test in the other direction, when testing a network it's always good practice to test both ways! If the traffic can flow one way this is no way a warranty that it will also flow through in the other direction! As a matter of fact when I was setting up the test I noticed that from the PC sending traffic to the mac I was good, but the other way around the traffic was blocked! I had to temporarily disable my Window firewall in order to receive traffic from iperf3 for the sake of this test.

This pretty much sums up the main usage for the software 😀
<hr>

Now, as I mentioned previously I will try to do the same test but this time directly from one pc to the other without any router in the middle, the mac book bro unfortunately could not read the adapter so for this test I will use another machine I have with Linux installed.
<hr>

For this test I quickly disconnected the devices from the wifi, connected with a cable to each other, assigned to a dumb subnet and pinged one to each other to ensure connectivity).

PC IP address : 10.10.10.20    (Black terminal with green characters)
Linux IP address : 10.10.10.30    (Black terminal with white characters)

Here's the successful ping test, we are ready to start iperf3!


![ping6P.png](https://files.peakd.com/file/peakd-hive/trippymane/23t7BBzpCFEvqpUYhiDyqhF2Mk7mefEuD7YXJhzipdjodLhAN9qDh7ouK1rJEzeRG3Ky1.png)

For this bunch of tests I will use the Linux as the server:
```
./iperf3 -s -p 8080
```

![listen7P.png](https://files.peakd.com/file/peakd-hive/trippymane/23zRpCCkBthRhagM8hAjzSKags1wB26GZyXWVX6ZA3x4mFdmAKe97sVwabfMtkbzaVfpj.png)

The Linux now is listening, so let's push some traffic from my PC (Let's start with 50M where previously we started experiencing drops, let's see if we won't drop any packet as expected):


![test8.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tb6VkXuB2cXRerArVruRz3TMAqihH25NSSzpwgRgtnE3H12tyn5zTZxU5Bg1AXMmriR.PNG)

![test8P.png](https://files.peakd.com/file/peakd-hive/trippymane/23zGTgf88mfeoKsj6qdfXv1466vTuDgPYCeZK9yrbMCYJuojB9DCVpBRRCRA52giizSLy.png)


And as expected there are no significant drops because now our 70Mbps limit is gone, let's push first 100M, 500M and then 1G and see if all the packets will flow through (We expect to see 500M flow with no issue and maybe a bit of drops with 1G)!

<hr>

For all of the following tests I will use the UDP option to show you the packet drop rate directly from the test (in the office we use to check stuff also directly on the switchports and obviously not all the traffic in a network is UDP so you probably understand that this test can be tweaked on occasion depending on what you need on the moment, simple but brilliant little tool with a big range of options and usability) but anyway let's run the last bunch of tests!

100M:

![test9.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tb6VkXuB2cXLArBE73EwFujdEZfHS44PNazNBcGymZd6kuB98XZdSwq8myx8ZLmYTt9.PNG)

![test9P.png](https://files.peakd.com/file/peakd-hive/trippymane/23zGTpwEx1R9JLQpMc6i7X1p717Wq8XUEBHCpx2ZRQYn5cJTkhQbofTaYiRkrr4AcRfcX.png)


500M:

![test10.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tb6VkXuB2cXRerArVruRz3TMAqihH25NSSzpwgRgtnE3H12tyn5zTZxU5A5gQ6nFGWd.PNG)


![test10P.png](https://files.peakd.com/file/peakd-hive/trippymane/23zGTpwEx1R9JLQpMc6i7X1p717ZV1wbX11god3i7VReLBm9TQbFoHHMFS4Q5cm9ABiDU.png)



1G:

![test11.PNG](https://files.peakd.com/file/peakd-hive/trippymane/23tb6Vks5NHMYza1KC9WmhDWp7reXPLLszg6kJeyawUhjcRR2pFqdwsGKB6RvRYirgowg.PNG)

![test11P.png](https://files.peakd.com/file/peakd-hive/trippymane/23zGTpwY3ewzgcQ6Yq7HLwKBNdw7ZB2atgoLj4gvZkeqFRTEzXVpX8NL49j5Jq1Gw14v4.png)

 

So as we can see from this little testing session that we had together the results of the test confirms what we have been saying in this post! 
My connection is a normal 70-80Mbps and that is the limit applied by the router and when we push traffic above that limit we start experiencing packet loss, below that number we are ok, above we drop significantly.
Once we get rid of the router in the middle (and the 70-80Mbps limit with it) we can push up to 1G of traffic between the two devices without any significant packet loss.

<hr>

This is pretty much all for today!

Bear in mind that this is not 100% of the things you can do with this software, there are many more commands and options we can use that I did not mention in this article, like the **-cport** modifier to define from what port we want the source to send and the **-B** modifier used when we want to bind a certain device (by IP address) to the **-cport** source port, It's a command we used a couple of times in the office for certain more specific tests but I did not find any proper usage to explain it today here so I decided to skip it!

Feel free to comment and ask any question, I'll be happy to answer!

Also I think it's worth to mention that this is my first tutorial and article here and if you want to give me an advice or a critique please feel free to do so! Will be highly appreciated! Thanks.

Happy testing! 😀


<hr>

<center><sup>All this material and the pictures are my original content and knowledge I gained with the recent extensive usage of this software during the testing that I have been carrying out at my professional job on a daily basis for the last couple of weeks.
I tried to leave the sources where needed and I hope to have respected everyone's work in doing so!
Thanks to the iperf3 developers, this software is a brilliant tool!
[iperf3 Contact Page](https://iperf.fr/contact.php)</sup></center>

<hr>

<center><h1>Trippy</h1></center>

<center>IT nerd 😆</center>

<center>Peace!</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 80 others
properties (23)
authortrippymane
permlinkiperf3-tutorial-networking-tool-used-for-testing
categoryhive-150329
json_metadata"{"app":"peakd/2021.05.5","format":"markdown","description":"iperf3 software tutorial (networking testing tool) - bandwidth testing","tags":["iperf3","networking","tutorial","tech","pob","linux","windows","macosx","bandwidth","testing"],"users":[],"image":["https://files.peakd.com/file/peakd-hive/trippymane/23t8AeisCk9RvZx1A5tW4WjA3x4fMSxXBQzNWpGbYzwnbwVdWTrGCDJvoY6i3DTWafa9d.png","https://files.peakd.com/file/peakd-hive/trippymane/Eo69KBt8tzPSZNBc3xgD2piHYc9P7idQfGkegA6ALWLpLdEniRYxe7aJoXSWEtsXtGx.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23tb6VLvaUM1VySnPgcr3ZdfDS8zP8k7Sysnx2pc2AuAGUJniXdn4ACzSJq1n6VKTmQbu.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23tb6ZevFMPuVfFXVBpDc565bPWavFZJM3dHQTvg96Sz9VMTbAeDmrr2wonFwPAroqask.PNG","https://files.peakd.com/file/peakd-hive/trippymane/243fr9hVtKHnsd9eet4FmvqNkk6VG8tUzf4mmzBpiMdgwku2TbpXZmaZQjNUEUwvWkuG5.jpg","https://files.peakd.com/file/peakd-hive/trippymane/243BiMNWpwKZKn5LbEzRdKUFvgxmchCYPMD5P587cwFRtVUKAeP87SWBMP8YQanKptaXD.jpg","https://files.peakd.com/file/peakd-hive/trippymane/23tRhpwiNeoKZEefdjoUC2tokqu7psDhCfHwxLUYTFeFgFyQx2cQj5sP3tV9H35Ni5ho7.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23zGeHrAkcxK4UafFaAaEcLRedBJvMJV2eYqx7kohB8hrHdGdtxuMKkkBtj5bMb6JMAU7.jpg","https://files.peakd.com/file/peakd-hive/trippymane/Eo8GiUn45ySTjp8Gfnh1UE8Kf6o91H9qCFscZPiamrFySSQdXFirjNWWME6NpkmG3tf.PNG","https://files.peakd.com/file/peakd-hive/trippymane/EpQwFGB7TocBXTPrQXbiuCwtQUFqaSdr3DP1sfMRuoDmW7SdZjAwG8zGDjcZAuQxwTY.jpg","https://files.peakd.com/file/peakd-hive/trippymane/23tustwmFbduQk9TFogiuGvW8488YvKTozeXYfBDWvjnECNqU3JE3J8a9qR5t2N9eNzqj.PNG","https://files.peakd.com/file/peakd-hive/trippymane/EpQwDRjYBQrrj3kt3oVsobkL7gXBPUE7WaYpTaCzFwoompLgMD9bF3qb6igHpPabMj3.jpg","https://files.peakd.com/file/peakd-hive/trippymane/23tkVKJWtmHXaDEFihS7upb7Bop4EWZpNF4rWEkaA2Hqwiq9FeQ34wFn5tChi55T16Huh.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23t7BBzpCFEvqpUYhiDyqhF2Mk7mefEuD7YXJhzipdjodLhAN9qDh7ouK1rJEzeRG3Ky1.png","https://files.peakd.com/file/peakd-hive/trippymane/23zRpCCkBthRhagM8hAjzSKags1wB26GZyXWVX6ZA3x4mFdmAKe97sVwabfMtkbzaVfpj.png","https://files.peakd.com/file/peakd-hive/trippymane/23tb6VkXuB2cXRerArVruRz3TMAqihH25NSSzpwgRgtnE3H12tyn5zTZxU5Bg1AXMmriR.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23zGTgf88mfeoKsj6qdfXv1466vTuDgPYCeZK9yrbMCYJuojB9DCVpBRRCRA52giizSLy.png","https://files.peakd.com/file/peakd-hive/trippymane/23tb6VkXuB2cXLArBE73EwFujdEZfHS44PNazNBcGymZd6kuB98XZdSwq8myx8ZLmYTt9.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23zGTpwEx1R9JLQpMc6i7X1p717Wq8XUEBHCpx2ZRQYn5cJTkhQbofTaYiRkrr4AcRfcX.png","https://files.peakd.com/file/peakd-hive/trippymane/23tb6VkXuB2cXRerArVruRz3TMAqihH25NSSzpwgRgtnE3H12tyn5zTZxU5A5gQ6nFGWd.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23zGTpwEx1R9JLQpMc6i7X1p717ZV1wbX11god3i7VReLBm9TQbFoHHMFS4Q5cm9ABiDU.png","https://files.peakd.com/file/peakd-hive/trippymane/23tb6Vks5NHMYza1KC9WmhDWp7reXPLLszg6kJeyawUhjcRR2pFqdwsGKB6RvRYirgowg.PNG","https://files.peakd.com/file/peakd-hive/trippymane/23zGTpwY3ewzgcQ6Yq7HLwKBNdw7ZB2atgoLj4gvZkeqFRTEzXVpX8NL49j5Jq1Gw14v4.png"],"links":["https://iperf.fr/","https://iperf.fr/iperf-doc.php#3doc","https://iperf.fr/iperf-download.php","https://iperf.fr/contact.php"]}"
created2021-06-06 20:31:39
last_update2021-06-12 15:13:21
depth0
children16
last_payout2021-06-13 20:31:39
cashout_time1969-12-31 23:59:59
total_payout_value22.628 HBD
curator_payout_value22.605 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17,548
author_reputation18,214,830,407,811
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,173,140
net_rshares69,234,280,233,844
author_curate_reward""
vote details (144)
@brittandjosie ·
$0.03
Dear trippy you proofread 8 times and took 2 days but all is most definitely worth it. The first blog pob here and so much gained. Of you go and produce many more 

![untitled.gif](https://media.tenor.com/images/b29cabfb9d92be5ed2f2b0dddae85603/tenor.gif)

You said it IT nerd 
👍  ,
properties (23)
authorbrittandjosie
permlinkre-trippymane-quc3q3
categoryhive-150329
json_metadata{"tags":["hive-150329"],"app":"peakd/2021.05.5"}
created2021-06-07 13:49:15
last_update2021-06-07 13:49:15
depth1
children1
last_payout2021-06-14 13:49:15
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length277
author_reputation524,774,846,322,249
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,187,875
net_rshares88,466,337,126
author_curate_reward""
vote details (2)
@trippymane ·
Thank you very much! 🙏

Maybe with some time I can become the IT nerd of The Terminal ahahah 
If anyone needs help with something and I'm free I would definitely enjoy helping! 😎

Thanks again for the comment.

Have a great day! 
properties (22)
authortrippymane
permlinkre-brittandjosie-202167t145648634z
categoryhive-150329
json_metadata{"tags":["hive-150329"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-07 13:56:48
last_update2021-06-07 13:56:48
depth2
children0
last_payout2021-06-14 13:56:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation18,214,830,407,811
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,187,999
net_rshares0
@hivebuzz ·
Congratulations @trippymane! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@trippymane/upvoted.png?202106071902"></td><td>You received more than 300 upvotes.<br>Your next target is to reach 400 upvotes.</td></tr>
<tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@trippymane/comments.png?202106071902"></td><td>You made more than 100 comments.<br>Your next target is to reach 200 comments.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@trippymane) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hivebuzz/@hivebuzz/pud-202106-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hivebuzz/@hivebuzz/pud-202106-feedback">Feedback from the June 1st Hive Power Up Day</a></td></tr></table>
properties (22)
authorhivebuzz
permlinkhivebuzz-notify-trippymane-20210607t195938000z
categoryhive-150329
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2021-06-07 19:59:36
last_update2021-06-07 19:59:36
depth1
children0
last_payout2021-06-14 19:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,153
author_reputation367,865,805,303,271
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,194,567
net_rshares0
@luvshares ·
@trippymane, you were given LUV from @wesphilbin. About: https://peakd.com/@luvshares https://ipfs.io/ipfs/QmUptF5k64xBvsQ9B6MjZo1dc2JwvXTWjWJAnyMCtWZxqM
properties (22)
authorluvshares
permlinkre-iperf3-tutorial-networking-tool-used-for-testing-20210607t150251z
categoryhive-150329
json_metadata"{"app": "beem/0.24.20"}"
created2021-06-07 15:03:00
last_update2021-06-07 15:03:00
depth1
children0
last_payout2021-06-14 15:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation5,178,900,833,662
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,189,105
net_rshares0
@macchiata ·
$0.03
Cool! finally I can find more testing content like this here. Looking forward to read more of testing tutorial so I can try it out!
👍  ,
properties (23)
authormacchiata
permlinkqub6hb
categoryhive-150329
json_metadata{"app":"hiveblog/0.1"}
created2021-06-07 01:51:15
last_update2021-06-07 01:51:15
depth1
children1
last_payout2021-06-14 01:51:15
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation981,344,893,009,339
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,177,222
net_rshares81,696,096,280
author_curate_reward""
vote details (2)
@trippymane ·
Brilliant!

I'm really happy you appreciate! 😎
properties (22)
authortrippymane
permlinkre-macchiata-202167t82322278z
categoryhive-150329
json_metadata{"tags":["ecency"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-07 07:23:21
last_update2021-06-07 07:23:21
depth2
children0
last_payout2021-06-14 07:23:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation18,214,830,407,811
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,182,755
net_rshares0
@pialejoana ·
$0.03
*Holy thing you have here.  You hung up my brain.  haha. Just kidding!*

*Welcome to Pob.!* 🧠



---

<center><sub>Posted via [proofofbrain.io](https://www.proofofbrain.io/@pialejoana/quawjg)</sub></center>
👍  ,
properties (23)
authorpialejoana
permlinkquawjg
categoryhive-150329
json_metadata{"tags":["proofofbrain"],"app":"proofofbrain/0.1","canonical_url":"https://www.proofofbrain.io/@pialejoana/quawjg"}
created2021-06-06 22:16:33
last_update2021-06-06 22:16:33
depth1
children1
last_payout2021-06-13 22:16:33
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation336,870,290,800,691
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,174,605
net_rshares81,733,383,455
author_curate_reward""
vote details (2)
@trippymane ·
Thanks a lot! 😀
properties (22)
authortrippymane
permlinkre-pialejoana-202167t01026863z
categoryhive-150329
json_metadata{"tags":["ecency"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-06 23:10:27
last_update2021-06-06 23:10:27
depth2
children0
last_payout2021-06-13 23:10:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation18,214,830,407,811
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,175,243
net_rshares0
@prolinuxua ·
$0.02
Good tutorial
👍  ,
properties (23)
authorprolinuxua
permlinkre-trippymane-2021612t204113151z
categoryhive-150329
json_metadata{"tags":["iperf3","networking","tutorial","tech","pob","linux","windows","macosx","bandwidth","testing"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-12 17:41:09
last_update2021-06-12 17:41:09
depth1
children1
last_payout2021-06-19 17:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation57,052,570,230,141
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,291,166
net_rshares85,891,846,102
author_curate_reward""
vote details (2)
@trippymane ·
Thank you! 🙏😎
properties (22)
authortrippymane
permlinkre-prolinuxua-qulovs
categoryhive-150329
json_metadata{"tags":["hive-150329"],"app":"peakd/2021.06.2"}
created2021-06-12 18:04:42
last_update2021-06-12 18:04:42
depth2
children0
last_payout2021-06-19 18:04:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation18,214,830,407,811
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,291,508
net_rshares0
@remenzer ·
$0.03
Eveything are in good place. Congrats!
👍  ,
properties (23)
authorremenzer
permlinkre-trippymane-202167t162824754z
categoryhive-150329
json_metadata{"tags":["iperf3","networking","tutorial","tech","pob","linux","windows","macosx","bandwidth","testing"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-07 08:28:24
last_update2021-06-07 08:28:24
depth1
children1
last_payout2021-06-14 08:28:24
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation20,921,536,855,319
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,183,578
net_rshares83,993,160,126
author_curate_reward""
vote details (2)
@trippymane ·
Thanks! 

Really appreciated! 😎
properties (22)
authortrippymane
permlinkre-remenzer-202167t9575134z
categoryhive-150329
json_metadata{"tags":["ecency"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-07 08:57:48
last_update2021-06-07 08:57:48
depth2
children0
last_payout2021-06-14 08:57:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation18,214,830,407,811
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,183,906
net_rshares0
@wesphilbin ·
$0.03
Outstanding!! I thought you might know a thing or two, but you **do** know a thing or two!! Keep creating this positive energy my friend... always a need for those who can help out with the "spirit boxes" that project our energy. 

<sup>Ok I'm talking about computers, not the paranormal devices... good band though... *Spiritbox*</sup>

!LUV @tipu curate !giphy Geek
👍  , , ,
properties (23)
authorwesphilbin
permlinkre-trippymane-quc2as
categoryhive-150329
json_metadata{"tags":["hive-150329"],"app":"peakd/2021.05.5"}
created2021-06-07 13:18:30
last_update2021-06-07 13:18:30
depth1
children3
last_payout2021-06-14 13:18:30
cashout_time1969-12-31 23:59:59
total_payout_value0.013 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length367
author_reputation43,936,174,956,729
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,187,382
net_rshares80,717,149,229
author_curate_reward""
vote details (4)
@hivegifbot ·
<center>https://media.tenor.com/images/7ee227e48a0f0dcfdd86b0adc5d073f8/tenor.gif
[Via Tenor](https://tenor.com/)</center>
properties (22)
authorhivegifbot
permlinkre-re-trippymane-quc2as-20210607t131938z
categoryhive-150329
json_metadata"{"app": "beem/0.24.20"}"
created2021-06-07 13:19:39
last_update2021-06-07 13:19:39
depth2
children0
last_payout2021-06-14 13:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation38,012,992,266,909
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,187,393
net_rshares0
@tipu ·
<a href="https://tipu.online/hive_curator?wesphilbin" target="_blank">Upvoted  &#128076;</a> (Mana: 11/22) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-trippymane-quc2as-20210607t131833z
categoryhive-150329
json_metadata"{"app": "beem/0.24.20"}"
created2021-06-07 13:18:36
last_update2021-06-07 13:18:36
depth2
children0
last_payout2021-06-14 13:18:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation55,206,507,265,417
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,187,383
net_rshares0
@trippymane · (edited)
Thank you very much! 😁

You make me feel important with this comment! Thank you! 🙏

I would be honoured to help and share my knowledge about "spirit boxes" with the community!

If anyone needs a specific tutorial of help to get around something IT related I would be happy to help (if within my capabilities of course! I want to become an IT wizard, I am not one yet. 😜 )

PS: I like your way of calling the computers, you made me laugh 🤣
<sup>And I'll try listening to Spiritbox 😎</sup>

**Peace!**
properties (22)
authortrippymane
permlinkre-wesphilbin-202167t1427542z
categoryhive-150329
json_metadata{"tags":["hive-150329"],"app":"ecency/3.0.17-vision","format":"markdown+html"}
created2021-06-07 13:27:54
last_update2021-06-07 13:29:18
depth2
children0
last_payout2021-06-14 13:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length499
author_reputation18,214,830,407,811
root_title"iperf3 Tutorial (Networking tool used for testing)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,187,528
net_rshares0