hellt / netdevops.me_gitment_comments

0 stars 0 forks source link

Saturating the network with FTP #35

Open hellt opened 4 years ago

hellt commented 4 years ago

https://netdevops.me/2018/saturating-the-network-with-ftp/

While working on the Ipanema Wan Opt VNF integration with Nuage Networks I stumbled upon an interesting case which required to max out the network with FTP traffic. The tricky point there was to create the FTP connection which won’t be limited by the disk IO performance. Especially, considering that the disks were kind of slow in the setup I had.

It turns out, you can use the in-memory devices in the FTP communication path /dev/zero -> /dev/null, ruling out the slowliness that could have been added by the disks. Lets figure out how to do that!