我的编程空间,编程开发者的网络收藏夹
学习永远不晚

iperf3命令使用

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

iperf3命令使用

iperf3命令使用

1,iperf3安装

iperf3下载:https://iperf.fr/iperf-download.php#fedora

[root@localhost home]# rpm -ivhiperf3-3.1.3-1.fc24.x86_64.rpm
Preparing...                         ################################# [100%]
Updating / installing...
  1:iperf3-3.1.3-1.fc24             ################################# [100%]

2,常用几种命令

服务器端:

[root@localhost home]# iperf3 –s

客户端:

[root@localhost home]# iperf3 -c 192.168.0.222
Connecting to host 192.168.0.222, port 5201
[  4]local 192.168.0.221 port 47864 connected to 192.168.0.222 port 5201
[ ID] Interval           Transfer     Bandwidth       Retr Cwnd
[ 4]   0.00-1.00   sec  639 MBytes  5.36 Gbits/sec   86   366 KBytes      
[ 4]   1.00-2.00   sec  514 MBytes  4.31 Gbits/sec    0   393 KBytes      
[  4]   2.00-3.00  sec   570 MBytes  4.78 Gbits/sec   16   301 KBytes      
[ 4]   3.00-4.00   sec  605 MBytes  5.08 Gbits/sec    0   322 KBytes      
[ 4]   4.00-5.00   sec  555 MBytes  4.65 Gbits/sec    0   334 KBytes      
[ 4]   5.00-6.00   sec  581 MBytes  4.87 Gbits/sec    0   341 KBytes      
^C[ 4]   6.00-6.54   sec  284 MBytes  4.44 Gbits/sec    0   344 KBytes      
- - - - - - - - - - - - - - - - - - - - - -- - -
[ ID] Interval           Transfer     Bandwidth       Retr
[ 4]   0.00-6.54   sec 3.66 GBytes  4.81 Gbits/sec  102             sender
[ 4]   0.00-6.54   sec 0.00 Bytes  0.00 bits/sec                  receiver
iperf3: interrupt - the client hasterminated

解释:

默认情况客户端使用TCP协议

-s:指明是服务器端

-c: 指明是客户端

192.168.0.222为服务端IP地址

 

[root@localhost home]# iperf3 -u -c 192.168.0.222 -b 100M
Connecting to host 192.168.0.222, port 5201
warning: Unable to set socket pacing, usingapplication pacing instead
[  4]local 192.168.0.221 port 46516 connected to 192.168.0.222 port 5201
[ ID] Interval           Transfer     Bandwidth       Total Datagrams
[  4]  0.00-1.00   sec 10.8 MBytes  90.8 Mbits/sec  1386 
[ 4]   1.00-2.00   sec 11.9 MBytes  99.7 Mbits/sec  1521 
[ 4]   2.00-3.00   sec 11.9 MBytes   100 Mbits/sec  1526 
[ 4]   3.00-4.00   sec 11.9 MBytes   100 Mbits/sec  1526 
[ 4]   4.00-5.00   sec 11.9 MBytes   100 Mbits/sec  1528 
^C[ 4]   5.00-5.38   sec 4.75 MBytes   104 Mbits/sec  608 
- - - - - - - - - - - - - - - - - - - - - -- - -
[ ID] Interval           Transfer     Bandwidth       Jitter   Lost/Total Datagrams
[ 4]   0.00-5.38   sec 63.2 MBytes  98.5 Mbits/sec  0.000 ms 0/8095 (0%) 
[  4]Sent 8095 datagrams
iperf3: interrupt - the client hasterminated

解释:

-u:指定是udp报文

-b:指定发送带宽大小。

 

服务器端:

[root@localhost home]# iperf3 -s -p 2480

客户端:

[root@localhost home]# iperf3 -u -c 192.168.0.222 -b 100M -p 2480
Connecting to host 192.168.0.222, port 2480
warning: Unable to set socket pacing, usingapplication pacing instead
[  4]local 192.168.0.221 port 53812 connected to 192.168.0.222 port 2480
[ ID] Interval           Transfer     Bandwidth       Total Datagrams
[ 4]   0.00-1.00   sec 10.8 MBytes  90.6 Mbits/sec  1383 
[ 4]   1.00-2.00   sec 11.9 MBytes  99.9 Mbits/sec  1524 
[ 4]   2.00-3.00   sec 11.9 MBytes  99.9 Mbits/sec  1524 
[ 4]   3.00-4.00   sec 12.0 MBytes   100 Mbits/sec  1530 
^C[ 4]   4.00-4.06   sec 1.20 MBytes   167 Mbits/sec  154 
- - - - - - - - - - - - - - - - - - - - - -- - -
[ ID] Interval           Transfer     Bandwidth       Jitter   Lost/Total Datagrams
[ 4]   0.00-4.06   sec 47.8 MBytes  98.7 Mbits/sec  0.000 ms 0/6115 (0%) 
[  4]Sent 6115 datagrams
iperf3: interrupt - the client hasterminated

解释:

-p:指定端口

 

iperf3 –h 查看所有参数含义

[root@localhost home]# iperf3 -h
Usage: iperf [-s|-c host] [options]
      iperf [-h|--help] [-v|--version]
 
Server or Client:
  -p,--port      #         server port to listen on/connect to
  -f,--format    [kmgKMG]  format to report: Kbits, Mbits, KBytes,MBytes
  -i,--interval  #         seconds between periodic bandwidthreports
  -F,--file name           xmit/recv thespecified file
  -A,--affinity n/n,m      set CPU affinity
  -B,--bind      <host>    bind to a specific interface
  -V,--verbose             more detailedoutput
  -J,--json                output in JSONformat
 --logfile f               sendoutput to a log file
  -d,--debug               emit debuggingoutput
  -v,--version             show versioninformation and quit
  -h,--help                show this messageand quit
Server specific:
  -s,--server              run in server mode
  -D,--daemon              run the server as a daemon
  -I,--pidfile file        write PID file
  -1,--one-off             handle one clientconnection then exit
Client specific:
  -c,--client    <host>    run in client mode, connecting to<host>
  -u,--udp                 use UDP rather thanTCP
  -b,--bandwidth #[KMG][/#] target bandwidth in bits/sec (0 for unlimited)
                            (default 1 Mbit/secfor UDP, unlimited for TCP)
                            (optional slash andpacket count for burst mode)
  -t,--time      #         time in seconds to transmit for(default 10 secs)
  -n,--bytes     #[KMG]    number of bytes to transmit (instead of -t)
  -k,--blockcount #[KMG]   number of blocks(packets) to transmit (instead of -t or -n)
  -l,--len       #[KMG]    length of buffer to read or write
                            (default 128 KB forTCP, 8 KB for UDP)
 --cport         <port>    bind to a specific client port (TCP andUDP, default: ephemeral port)
  -P,--parallel  #         number of parallel client streams torun
  -R,--reverse             run in reverse mode(server sends, client receives)
  -w,--window    #[KMG]    set window size / socket buffer size
  -C,--congestion <algo>   set TCPcongestion control algorithm (Linux and FreeBSD only)
  -M,--set-mss   #         set TCP/SCTP maximum segment size (MTU- 40 bytes)
  -N,--no-delay            set TCP/SCTP nodelay, disabling Nagle's Algorithm
  -4,--version4            only use IPv4
  -6,--version6            only use IPv6
  -S,--tos N               set the IP 'type ofservice'
  -L,--flowlabel N         set the IPv6 flowlabel (only supported on Linux)
  -Z,--zerocopy            use a 'zero copy'method of sending data
  -O,--omit N              omit the first nseconds
  -T,--title str           prefix every outputline with this string
 --get-server-output       getresults from server
 --udp-counters-64bit      use64-bit counters in UDP test packets
 --no-fq-socket-pacing     disablefair-queuing based socket pacing
                            (Linux only)
 
[KMG] indicates options that support aK/M/G suffix for kilo-, mega-, or giga-
 
iperf3 homepage at:http://software.es.net/iperf/
Report bugs to:     https://github.com/esnet/iperf


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

iperf3命令使用

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

iperf3命令使用

iperf3命令使用1,iperf3安装iperf3下载:https://iperf.fr/iperf-download.php#fedora[root@localhost home]# rpm -ivhiperf3-3.1.3-1.fc2
2023-01-31

adb命令使用

相关命令查看当前连接设备1 adb devices如果发现多个设备1 adb -s 设备号 其他指令安装命令1 adb install pathame.apk覆盖安装1 adb install pathame.apk卸载apk包  1.查看apk主包名知道ap
adb命令使用
2015-07-06

Linux命令之lz4命令如何使用

本篇内容主要讲解“Linux命令之lz4命令如何使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Linux命令之lz4命令如何使用”吧!一、lz4命令简介LZ4是一种压缩格式,特点是压缩/解压
2023-07-05

dos命令行choice命令怎么使用

在Windows系统中,choice命令用于让用户在几个选项中做出选择。下面是choice命令的基本语法和用法:choice [/c choices] [/n] [/cs] [/t timeout /d choice] [/m text]
dos命令行choice命令怎么使用
2024-03-01

Linux命令之lz4命令使用示例

目录一、lz4命令简介二、命令使用示例1、查看命令版本2、获取命令帮助3、命令安装4、压缩单个文件5、压缩多个文件6、压缩目录7、压缩后删除源文件8、解压lz4文件9、解压并删除压缩文件10、高压缩比方式压缩11、压缩并覆盖文件12、解压并
2023-03-15

Linux的blkid命令命令怎么使用

这篇文章主要介绍“Linux的blkid命令命令怎么使用”,在日常操作中,相信很多人在Linux的blkid命令命令怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Linux的blkid命令命令怎么使用
2023-06-28

Linux-03-命令使用

一、常见命令1、常见操作mkdir -p ./a/b/c //递归创建多层目录mkdir ./abc/{,x,y,z}dir //在abc下创建xdir,ydir,cdir文件夹cd ~syraer //进入用户名syraer下的用户目
2023-06-05

Linux 常用命令之Linux more命令使用方法

more 是我们最常用的工具之一,最常用的就是显示输出的内容,然后根据窗口的大小进行分页显示,然后还能提示文件的百分比。 more功能类似 cat ,cat命令是整个文件的内容从上到下显示在屏幕上。 more会以一页一页的显示方便使用者逐页
2022-06-04

Linux常用命令使用

1. 查看当做操作目录位置 > pwd2. 查看(当前)目录里边的文件内容 > ls //list > ls -l 或ll //显示文件的详细信息 > ls -al
2023-06-04

linux命令详解之useradd命令使用方法

Linux 系统是一个多用户多任务的分时操作系统,任何一个要使用系统资源的用户,都必须首先向系统管理员申请一个账号,然后以这个账号的身份进入系统。用户的账号一方面可以帮助系统管理员对使用系统的用户进行跟踪,并控制他们对系统资源的访问;另一方
2022-06-04

Linux的chattr命令与lsattr命令如何使用

本篇内容主要讲解“Linux的chattr命令与lsattr命令如何使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Linux的chattr命令与lsattr命令如何使用”吧!chattr
2023-07-06

怎么在dos命令行中使用choice命令

这期内容当中小编将会给大家带来有关怎么在dos命令行中使用choice命令,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。Choice 命令使用此命令可以让用户输入一个字符,从而运行不同的命令。使用时应该加
2023-06-08

如何使用Linux find命令中-path -prune命令

这篇文章主要介绍“如何使用Linux find命令中-path -prune命令”,在日常操作中,相信很多人在如何使用Linux find命令中-path -prune命令问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对
2023-06-13

强制结束进程命令(ntsd命令/taskkill命令)使用教程

1、ntsd强制结束命令其实我只需要通过两个命令来强制性的结束这些进程,第一个命令就是ntsd命令,先要找到你的PID值,这个PID值是在任务管理器上面可以查看的到,在任务管理器上线点击“查看--选择列”在弹出的选择
2023-05-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录