Last active
April 19, 2019 09:25
-
-
Save rdymc/a9f9e075643b82205b64cbc353188d8c to your computer and use it in GitHub Desktop.
Network Diagnostic Tool (NDT) SpeedTest (For CentOS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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