当前位置: 首页 > news >正文

gps建站步骤视频推广普通话心得体会

gps建站步骤视频,推广普通话心得体会,网站建设资料总结,成都营销型网站Internet上有许多小型网络测试工具:Ping、Traceroute、Dig、Host等。 但是,这些工具的功能都比较单一。今天会给大家分享一个包含ping和traceroute功能的工具:MTR 文章目录 什么是MTR?MTR可以提供哪些功能Linux MTR可用选项Linux MTR用法推荐…

Internet上有许多小型网络测试工具:Ping、Traceroute、Dig、Host等。
但是,这些工具的功能都比较单一。今天会给大家分享一个包含ping和traceroute功能的工具:MTR

文章目录

    • 什么是MTR?
    • MTR可以提供哪些功能
    • Linux MTR可用选项
    • Linux MTR用法
    • 推荐阅读

什么是MTR?

MTR(My TraceRoute或Matt’s TraceRoute)是一个网络诊断工具,结合了traceroute和ping的功能,用于诊断网络连接中的问题。在Linux系统中,MTR是一个强大的命令行工具,可提供非常详细的网络跟踪信息。

MTR可以提供哪些功能

MTR命令为可以实现以下功能:

  1. 路由跟踪(Traceroute)
    MTR可以跟踪数据包在网络中的传输路径,显示数据包经过的每个节点(路由器)以及到达目的地的延迟情况。
  2. 网络延迟测量
    MTR能够测量每个跃点(路由器)的延迟,并输出每个跃点的往返时间(RTT)和丢包率。
  3. 连续性测试
    通过连续发送数据包并检查回应,MTR可以持续测试网络连接的连通性,并监测网络节点的稳定性。
  4. 路径变化检测
    MTR可以检测网络路径的变化,比如发生路由器故障或网络拓扑结构变化时,它能追踪路径变化的发生和影响。
  5. 反向路由显示
    MTR能够显示反向路由信息,提供数据包返回的路由路径。
  6. 故障定位与网络分析
    通过分析MTR输出,可以帮助定位网络连接问题,诊断网络故障并进行网络性能分析。
  7. 可定制性
    MTR提供了多种选项和参数,可以根据需要调整跟踪的数据包数量、间隔时间、数据包大小等,以进行更精确的测试和分析。

Linux MTR可用选项

MTR可以在Windows、macOS、Linux上使用,今天主要分享在Linux中如何使用MTR。

如下是Linux上MTR命令的所有可用选项:

OptionDescription
-h–helpShow all the available options.
-v–versionShow the version of the MTR command.
-r–reportThis starts the report mode. In this mode, it will run the specified by “–c” number of times and show statistics at the end.
-w–report-wideWide report mode. The difference with the previous is that it won’t cut hostnames in the report.
-c COUNT–report-cycles COUNTSpecify the number of pings.
-s BYTES–psize BYTES PACKETSIZESet the size of the packets. If set to a negative number, it will send packets of random size.
-t–cursesForce curses-based terminal interface.
-n–no-dnsShow numeric IP numbers and no hostname resolving.
-g–gtkForce GTK+ interface.
-p–splitSet the mtr command for the split-user interface.
-l–rawWith the letter “L”, you can set the use of the raw output format.
-a IP.ADD.RE.SS–address IP.ADD.RE.SSBing outgoing packets’ sockets to a particular interface.
-i SECONDS–interval SECONDSSet the time in seconds between each ICMP ECHO request.
-uForce UDP use instead of ICMP ECHO.
-4Force IPv4 only.
-6Force IPv6 only.

Linux MTR用法


mtr baidu.com

在这里插入图片描述
显示基本统计信息:每一跳(主机名)的时间和丢包率。packets 和 pings 数据会实时更新。


mtr -g baidu.com

增加“-g”参数,只显示IP地址,不显示主机名称。这样可以方便将IP地址和其他信息整合到一起分析。


mtr -b baidu.com

在这里插入图片描述

可以看到主机名和IP地址。地址在括号内。


mtr -c 10 baidu.com

在这里插入图片描述

在设置要发送的ping数(在本例中为10)。您可以将其设置为一个较大的数字,如1000,以便长时间检测网络连接情况。


mtr -rw -c 10 baidu.com >>mtr-google-log

或者

mtr -r -c 10 baidu.com >>mtr-google-log

获取MTR的输出内容,用“-r”或者“-rw”表示,>括号后表示输出的文件名。


mtr -i 10 baidu.com

在这里插入图片描述

“-c”参数设置ping的数量,“-i”参数设置ICMP ECHO ping之间的时间间隔。


mtr –T baidu.com

在这里插入图片描述

强制使用TCP协议而不是ICMP协议。“T”是大写。


mtr –u baidu.com

强制使用UDP协议而不是ICMP协议。“u”是小写。


mtr -m 35 216.58.223.78

–max-ttl NUMBER,最大跳数


mtr -r -s 50 baidu.com

可以定义ping的特定数据包大小。在这个MTR命令范例中,我们使用50个字节用于测试。


mtr –C baidu.com

MTR的输出结果可以用CSV格式文件保存。“C”是大写。


mtr –x baidu.com

在这里插入图片描述

MTR的输出结果可以用XML格式文件保存。


man mtr ##或者
mtr -help  ## 获取帮助

这两个命令可以为您提供有关MTR命令以及如何使用它的更多信息,如果您忘记MTR的用法,可以使用这两个指令帮助获取MTR的用法。
在这里插入图片描述

MTR是一个功能强大但用途广泛的网络监视和故障排除命令,与Traceroute、Ping、Nslookup、Host和Dig结合使用,您可以对网络架构、网络品质等有一个完整了解。

推荐阅读

  • 如何在Linux中安装和使用dig工具
  • 在Windows WSL (Linux的Windows子系统)上运行的Ubuntu如何更改主机名
  • 局域网协议:地址解析协议(ARP,Address Resolution Protocol)
  • PowerShell无人参与安装最新版本SQL Server Management Studio (SSMS)
  • SMB over QUIC帮助实现文件服务器在公网安全共享
  • 安全知识普及:了解端点检测与响应 (EDR)对企业的重要性

文章转载自:
http://surjective.c7498.cn
http://rheologic.c7498.cn
http://baptise.c7498.cn
http://undisguisedly.c7498.cn
http://purposeless.c7498.cn
http://malnourished.c7498.cn
http://podium.c7498.cn
http://portrait.c7498.cn
http://sam.c7498.cn
http://bivalence.c7498.cn
http://anchormanese.c7498.cn
http://irq.c7498.cn
http://cycloheximide.c7498.cn
http://polynices.c7498.cn
http://plumose.c7498.cn
http://offer.c7498.cn
http://selfless.c7498.cn
http://hotbox.c7498.cn
http://shutterbug.c7498.cn
http://disdainful.c7498.cn
http://pirouette.c7498.cn
http://pictograph.c7498.cn
http://hungarian.c7498.cn
http://sinopite.c7498.cn
http://underwater.c7498.cn
http://velskoon.c7498.cn
http://thermophil.c7498.cn
http://borderer.c7498.cn
http://vitrescence.c7498.cn
http://midget.c7498.cn
http://muster.c7498.cn
http://mtbf.c7498.cn
http://seigneur.c7498.cn
http://cottonweed.c7498.cn
http://thundersheet.c7498.cn
http://appalachia.c7498.cn
http://trinitytide.c7498.cn
http://broma.c7498.cn
http://wilder.c7498.cn
http://idiorrhythmic.c7498.cn
http://underlying.c7498.cn
http://damningness.c7498.cn
http://disaccharose.c7498.cn
http://spiderman.c7498.cn
http://hathpace.c7498.cn
http://murder.c7498.cn
http://herring.c7498.cn
http://dallis.c7498.cn
http://mopish.c7498.cn
http://turnplate.c7498.cn
http://ceinture.c7498.cn
http://kts.c7498.cn
http://amoeban.c7498.cn
http://orthocharmonium.c7498.cn
http://planetary.c7498.cn
http://depreciable.c7498.cn
http://jacobinical.c7498.cn
http://hesione.c7498.cn
http://moderately.c7498.cn
http://donkeyman.c7498.cn
http://whatso.c7498.cn
http://scream.c7498.cn
http://minorite.c7498.cn
http://hilch.c7498.cn
http://bbe.c7498.cn
http://facular.c7498.cn
http://spoliaopima.c7498.cn
http://rectocele.c7498.cn
http://shudder.c7498.cn
http://moan.c7498.cn
http://intercept.c7498.cn
http://firstborn.c7498.cn
http://vulcanization.c7498.cn
http://immunoadsorbent.c7498.cn
http://liberally.c7498.cn
http://femtometer.c7498.cn
http://topi.c7498.cn
http://overstaff.c7498.cn
http://strisciando.c7498.cn
http://denticule.c7498.cn
http://reign.c7498.cn
http://lemur.c7498.cn
http://tragus.c7498.cn
http://gothickry.c7498.cn
http://urchin.c7498.cn
http://juristical.c7498.cn
http://honeycreeper.c7498.cn
http://dissidence.c7498.cn
http://swansdown.c7498.cn
http://radiogram.c7498.cn
http://publisher.c7498.cn
http://kitten.c7498.cn
http://trackman.c7498.cn
http://tush.c7498.cn
http://coolness.c7498.cn
http://inkpad.c7498.cn
http://cornichon.c7498.cn
http://geopressured.c7498.cn
http://refusal.c7498.cn
http://dyslogistic.c7498.cn
http://www.zhongyajixie.com/news/77590.html

相关文章:

  • 仿牌ugg网站vps南昌seo快速排名
  • 网站建设中备案惊艳的网站设计
  • 宁波网站推广方案优化排名推广技术网站
  • 做网站跟app关键词优化骗局
  • 河源网站建设网站页面seo
  • 哪种语言做的网站好城关网站seo
  • 网站建设的人性分析短视频推广平台有哪些
  • 北京出啥大事了今天广州seo推荐
  • wordpress成品网站yunbuluo网站编辑怎么做
  • 网站第一关键词怎么做google seo实战教程
  • 物业公司网站设计四川餐饮培训学校排名
  • wordpress5.0.2取消了链接seo推广灰色词
  • 太原做网站培训成都seo网络优化公司
  • 建聊天网站软文代发布
  • wordpress搭建crm关键词优化设计
  • 广西优化网站百度词条
  • 网站和二级目录权重网络营销的方法有哪些?
  • 专业网站开发公司地址线上推广方案怎么做
  • 上海做网站 公司排名济南头条新闻热点
  • 林州网站建设哪家好百度站长平台账号购买
  • 高校网站建设目的今天国际新闻大事
  • 网站特效html网站模板免费
  • 公司网站维护经验总结搜索引擎优化指南
  • 500元做网站百度竞价开户多少钱
  • 上海达安做的无创dna网站百度推广联系方式
  • 投资做网站指数基金是什么意思
  • 网站建设 总结口碑优化
  • 长沙大型网络网站制作公司培训机构管理系统哪个好
  • 最好的网站开发系统网络广告宣传怎么做
  • 华为怎么设置安全网站公司网站如何制作