준호씨의 블로그

speedtest-cli - CLI 로 인터넷 속도 측정. 맥북과 호스팅 서버 테스트 본문

IT이야기

speedtest-cli - CLI 로 인터넷 속도 측정. 맥북과 호스팅 서버 테스트

준호씨 2018. 8. 27. 23:01
반응형

스쿨호스팅에서 가상머신 호스팅을 이용하고 있는데, 자주 쓰고 있지는 않지만 속도가 좀 느리다는 생각이 종종 드는 편이다.

일단 집 Wifi 접속상태 속도 측정

# 설치
$ brew install speedtest-cli
# 테스트
$ speedtest-cli
Retrieving speedtest.net configuration...
Testing from Korea Telecom (14.47.185.136)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Random Systems (Gimhae) [268.35 km]: 15.226 ms
Testing download speed................................................................................
Download: 31.92 Mbit/s
Testing upload speed................................................................................................
Upload: 33.18 Mbit/s

호스팅 서버

# 테스트
$ curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -
Retrieving speedtest.net configuration...
Testing from Daou Technology (115.71.237.125)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by kdatacenter.com (Seoul) [8.34 km]: 7.155 ms
Testing download speed................................................................................
Download: 362.16 Mbit/s
Testing upload speed................................................................................................
Upload: 0.00 Mbit/s

왜 Upload 속도가 0 이지? 다시시도

$ curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -
Retrieving speedtest.net configuration...
Testing from Daou Technology (115.71.237.125)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by kdatacenter.com (Seoul) [8.34 km]: 6.977 ms
Testing download speed................................................................................
Download: 374.77 Mbit/s
Testing upload speed................................................................................................
Upload: 9.87 Mbit/s

참고

반응형
Comments