Skip to content

Instantly share code, notes, and snippets.

@rdymc
Last active April 19, 2019 09:25
Show Gist options
  • Select an option

  • Save rdymc/a9f9e075643b82205b64cbc353188d8c to your computer and use it in GitHub Desktop.

Select an option

Save rdymc/a9f9e075643b82205b64cbc353188d8c to your computer and use it in GitHub Desktop.
Network Diagnostic Tool (NDT) SpeedTest (For CentOS)
#!/bin/bash
yum update
yum --assumeyes install epel-release
yum -y install wget
# Reference : http://software.internet2.edu/
wget --output-document=./perfSONAR-repo-0.8-1.noarch.rpm http://software.internet2.edu/rpms/el6/x86_64/RPMS.main/perfSONAR-repo-0.8-1.noarch.rpm
rpm --import http://software.internet2.edu/rpms/RPM-GPG-KEY-perfSONAR
rpm -ivh perfSONAR-repo-0.8-1.noarch.rpm
yum search ndt
yum provides */ndtclt
yum install ndt-client
# Usage
# ndtclt -n ndt-iupui-mlab1-tpe01.measurement-lab.org
# ndtclt -n ndt-iupui-mlab2-tpe01.measurement-lab.org
# ndtclt -n ndt-iupui-mlab3-tpe01.measurement-lab.org
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment