iperf 로 통신속도 측정하기 정보
Linux iperf 로 통신속도 측정하기본문
실제 통신속도 측정
http://sourceforge.net/projects/iperf/
http://sourceforge.net/projects/iperf/files/iperf/2.0.4%20source/iperf-2.0.4.tar.gz/download
iperf는 두대의 서버 사이에 한대는 서버, 한대는 클라이언트로 접속하여 속도를 측정합니다.
> tar -zxvf iperf-2.0.4.tar.gz
> cd iperf-2.0.4
> ./configure
> make; make install
configure 시 c++ 없다고 나오면 아래 패키지 설치하세요.
yum -y install gcc-c++
이제 두대의 서버간의 속도를 측정해 보도록 하겠습니다.
* 서버 실행하기
root@localhost iperf-2.0.4]# iperf -c 192.168.44.1
------------------------------------------------------------
Client connecting to 192.168.44.1, TCP port 5001
TCP window size: 16.0 KByte (default)
------------------------------------------------------------
[ 3] local 192.168.44.128 port 59001 connected with 192.168.44.1 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0-10.2 sec 587 MBytes 483 Mbits/sec
위의 결과를 통해 두 서버간의 통신속도는 483 Mbit/sec 라는것을 알수 있네요.
"""
좋은 툴이네요.
"""
http://sourceforge.net/projects/iperf/
http://sourceforge.net/projects/iperf/files/iperf/2.0.4%20source/iperf-2.0.4.tar.gz/download
iperf는 두대의 서버 사이에 한대는 서버, 한대는 클라이언트로 접속하여 속도를 측정합니다.
> tar -zxvf iperf-2.0.4.tar.gz
> cd iperf-2.0.4
> ./configure
> make; make install
configure 시 c++ 없다고 나오면 아래 패키지 설치하세요.
yum -y install gcc-c++
이제 두대의 서버간의 속도를 측정해 보도록 하겠습니다.
* 서버 실행하기
root@localhost iperf-2.0.4]# iperf -c 192.168.44.1
------------------------------------------------------------
Client connecting to 192.168.44.1, TCP port 5001
TCP window size: 16.0 KByte (default)
------------------------------------------------------------
[ 3] local 192.168.44.128 port 59001 connected with 192.168.44.1 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0-10.2 sec 587 MBytes 483 Mbits/sec
위의 결과를 통해 두 서버간의 통신속도는 483 Mbit/sec 라는것을 알수 있네요.
"""
좋은 툴이네요.
"""
추천
0
0
댓글 0개