iperf3를 테스트하려면 server 역할을 할 node와 client 역할을 할 node 총 2대의 node가 필요함.
1. iperf3 install
2대의 서버에 iperf3를 설치한다.
yum install -y iperf3
2. iperf3 서버
iperf3 -s 커맨드를 입력한 후 대기
[root@adm1:~]# iperf3 -s
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------
3. iperf3 client
iperf3 -c {iperf3_server} 커맨드를 입력한다.
{iperf3_server} : iperf3 server의 ip를 입력한다. host 등록이 되어있다면 hostname도 가능
[root@hdw2:~]# iperf3 -c adm1
Connecting to host adm1, port 5201
[ 4] local 172.30.1.155 port 47010 connected to 172.30.1.151 port 5201
[ ID] Interval Transfer Bandwidth Retr Cwnd
[ 4] 0.00-1.00 sec 1.09 GBytes 9.38 Gbits/sec 0 711 KBytes
[ 4] 1.00-2.00 sec 1.05 GBytes 9.05 Gbits/sec 0 768 KBytes
[ 4] 2.00-3.00 sec 1.16 GBytes 9.93 Gbits/sec 0 803 KBytes
[ 4] 3.00-4.00 sec 1.05 GBytes 9.05 Gbits/sec 0 839 KBytes
[ 4] 4.00-5.00 sec 1.13 GBytes 9.67 Gbits/sec 0 877 KBytes
[ 4] 5.00-6.00 sec 1.16 GBytes 9.98 Gbits/sec 0 889 KBytes
[ 4] 6.00-7.00 sec 1.08 GBytes 9.24 Gbits/sec 0 904 KBytes
[ 4] 7.00-8.00 sec 1.08 GBytes 9.26 Gbits/sec 0 967 KBytes
[ 4] 8.00-9.00 sec 1.06 GBytes 9.08 Gbits/sec 0 981 KBytes
[ 4] 9.00-10.00 sec 1.08 GBytes 9.29 Gbits/sec 0 987 KBytes
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth Retr
[ 4] 0.00-10.00 sec 10.9 GBytes 9.39 Gbits/sec 0 sender
[ 4] 0.00-10.00 sec 10.9 GBytes 9.39 Gbits/sec receiver
iperf Done.
4. iperf3 결과 해석
Bandwidth : 이론적 최대 전송속도의 값
Transfer : 처리속도. 단위 시간에 기기에서 처리하는 실제 데이터의 총량
위 테스트는 interval 1초 간격으로 총 10번 데이터를 전송한 것으로 최종적으로 두 서버간 통신 속도는 초당 1G
'etc' 카테고리의 다른 글
mariadb data retention (0) | 2023.07.29 |
---|---|
kubeflow (0) | 2023.01.18 |
centos playwright (0) | 2023.01.15 |
haproxy (0) | 2022.09.22 |
CentOS 7 smtp 서버 구축 (0) | 2022.05.12 |
댓글