返回顶部
首页 > 资讯 > 后端开发 > Python >iperf3命令使用
  • 406
分享到

iperf3命令使用

命令 2023-01-31 07:01:28 406人浏览 泡泡鱼

Python 官方文档:入门教程 => 点击学习

摘要

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

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


--结束END--

本文标题: iperf3命令使用

本文链接: https://www.lsjlt.com/news/191069.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • iperf3命令使用
    iperf3命令使用1,iperf3安装iperf3下载:https://iperf.fr/iperf-download.php#fedora[root@localhost home]# rpm -ivhiperf3-3.1.3-1.fc2...
    99+
    2023-01-31
    命令
  • iperf3使用方法详解
    iperf3是一款带宽测试工具,它支持调节各种参数,比如通信协议,数据包个数,发送持续时间,测试完会报告网络带宽,丢包率和其他参数。 小广告:欢迎喜欢网络技术的朋友加我微信:xfiles_sky,一起...
    99+
    2023-09-06
    服务器 网络 运维
  • adb命令使用
    相关命令 查看当前连接设备 1 adb devices 如果发现多个设备 1 adb -s 设备号 其他指令 安装命令 1 adb install path ame.apk 覆盖安装 1 adb install path am...
    99+
    2015-07-06
    adb命令使用 数据库入门 数据库基础教程 数据库 mysql
  • grep命令使用
    title: grep命令使用 date: 2017-11-12 10:58:11 tags: greplinux grep categories:工具 grep是一个最初用于Unix操作系统...
    99+
    2023-09-03
    php 开发语言 unix grep
  • Linux的blkid命令命令怎么使用
    这篇文章主要介绍“Linux的blkid命令命令怎么使用”,在日常操作中,相信很多人在Linux的blkid命令命令怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Linux的blkid命令命令怎么使用...
    99+
    2023-06-28
  • Linux命令之lz4命令使用示例
    目录一、lz4命令简介二、命令使用示例1、查看命令版本2、获取命令帮助3、命令安装4、压缩单个文件5、压缩多个文件6、压缩目录7、压缩后删除源文件8、解压lz4文件9、解压并删除压缩文件10、高压缩比方式压缩11、压缩并...
    99+
    2023-03-15
    Linuxlz4命令 Linuxlz4命令使用 Linuxlz4命令用法
  • Linux命令之lz4命令如何使用
    本篇内容主要讲解“Linux命令之lz4命令如何使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Linux命令之lz4命令如何使用”吧!一、lz4命令简介LZ4是一种压缩格式,特点是压缩/解压...
    99+
    2023-07-05
  • dos命令行choice命令怎么使用
    在Windows系统中,choice命令用于让用户在几个选项中做出选择。下面是choice命令的基本语法和用法: choice [/...
    99+
    2024-03-01
    dos
  • 【Linux基础命令】nmtui命令使用实战
    前言 linux常用命令专栏已进入尾声,大约90个命令是日常工作中常用的,在拓展一些不常用的,也就100左右。 是不是总结下来后,就感觉要学的内容没有那么多了。 当然有些专属的基础命令不在本专栏内,比...
    99+
    2023-09-29
    linux 运维 服务器 原力计划
  • Linux-03-命令使用
    一、常见命令常见操作mkdir -p ./a/b/c  //递归创建多层目录mkdir ./abc/{,x,y,z}dir  //在abc下创建xdir,ydir,cdir文件夹cd ~syraer //进入用户名syr...
    99+
    2023-06-05
  • scp命令的使用
    Linux scp 命令用于 Linux 之间复制文件和目录;scp 是 secure copy 的缩写, scp 是 linux 系统下基于 ssh 登陆进行安全的远程文件拷贝命令;scp 是加密的...
    99+
    2023-09-06
    linux 服务器 运维
  • tar命令的使用
    以下是对tar命令来源于网络,作者未知。 tar -cvf test.tar test #仅打包,不压缩 tar -zcvf test.tar.gz test #打包后,以gzip压缩 在参数f后...
    99+
    2023-08-31
    linux bash 服务器
  • Termux 使用常用命令
      1 编辑开始屏幕:vim $PREFIX/etc/motd 2 搜索软件: pkg search 3 安装软件: pkg install 4 更新软件: pkg upgrade 5 安装Clang:pkg install clang...
    99+
    2023-09-07
    传媒 python 服务器
  • Linux常用命令使用
    查看当做操作目录位置    > pwd2. 查看(当前)目录里边的文件内容    > ls              ...
    99+
    2023-06-04
  • Linux 常用命令之Linux more命令使用方法
    more 是我们最常用的工具之一,最常用的就是显示输出的内容,然后根据窗口的大小进行分页显示,然后还能提示文件的百分比。 more功能类似 cat ,cat命令是整个文件的内容从上到下显示在屏幕上。 more会以一页一页...
    99+
    2022-06-04
    Linux more命令使用方法 linux more命令
  • 强制结束进程命令(ntsd命令/taskkill命令)使用教程
      1、ntsd强制结束命令   其实我只需要通过两个命令来强制性的结束这些进程,第一个命令就是ntsd命令,先要找到你的PID值,这个PID值是在任务管理器上面可以查看的到,在任务管理器上线点击“查看--选...
    99+
    2023-05-31
    结束进程 ntsd命令 taskkill命令 ntsd taskkill 命令 教程 进程
  • linux命令详解之chkconfig命令使用方法
    使用语法:chkconfig[--add][--del][--list][系统服务] 或chkconfig[--level < 等级代号>][系统服务][on/off/reset] chkcon...
    99+
    2022-06-04
    命令 使用方法 详解
  • linux命令详解之useradd命令使用方法
    Linux 系统是一个多用户多任务的分时操作系统,任何一个要使用系统资源的用户,都必须首先向系统管理员申请一个账号,然后以这个账号的身份进入系统。用户的账号一方面可以帮助系统管理员对使用系统的用户进行跟踪,...
    99+
    2022-06-04
    命令 使用方法 详解
  • 怎么在dos命令行中使用choice命令
    这期内容当中小编将会给大家带来有关怎么在dos命令行中使用choice命令,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。Choice 命令使用此命令可以让用户输入一个字符,从而运行不同的命令。使用时应该加...
    99+
    2023-06-08
  • 如何使用批处理命令的tree命令
    这篇文章主要讲解了“如何使用批处理命令的tree命令”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“如何使用批处理命令的tree命令”吧!tree ,在英语中的基本含义是“树”,在cmd中,t...
    99+
    2023-06-08
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作