Posted On March 31, 2019

Measuring Bandwidth between Sites

kimconnect 0 comments
blog.KimConnect.com >> Networking >> Measuring Bandwidth between Sites
Matching the right tool for the job:
Latency: use PING
Jitter: user iPerf UDP test
Loss: iPerf UDP test
Bandwidth: TCP test
 
Download: https://iperf.fr/iperf-download.php
remote server: #iperf -s
local computer: #iperf -c ip-address-of-server -r

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Set DNS Records on Remote Computers

# setDnsEntries.ps1 $computernames=@( "$env:computername" ) $dnsServers=@( "8.8.8.8", "4.4.2.2" ) $results=[hashtable]@{} foreach ($computername in $computernames){ $psSession=new-pssession…

PowerShell: Check IP Conflicts of Computers in Active Directory

We have ran into issues where a group of virtual machines living on a DHCP…

How to Install OpenDNS Client on Ubuntu

Install the dynamic IP updater: # Install the appsudo apt-get install ddclient Press Enter repeatedly…