返回顶部
首页 > 资讯 > 操作系统 >Linux traceroute命令使用详解
  • 763
分享到

Linux traceroute命令使用详解

Linuxtraceroute命令Linuxtraceroute 2022-06-04 23:06:29 763人浏览 泡泡鱼
摘要

traceroute我们可以知道信息从你的计算机到互联网另一端的主机是走的什么路径。当然每次数据包由某一同样的出发点(source)到达某一同样的目的地(destination)走的路径可能会不一样,但基本上来说大部分时

traceroute我们可以知道信息从你的计算机到互联网另一端的主机是走的什么路径。当然每次数据包由某一同样的出发点(source)到达某一同样的目的地(destination)走的路径可能会不一样,但基本上来说大部分时候所走的路由是相同的。

常见命令参数


Options:
 -4             Use IPv4
 -6             Use IPv6
 -d --debug         Enable Socket level debugging
 -F --dont-fragment     Do not fragment packets
 -f first_ttl --first=first_ttl
               Start from the first_ttl hop (instead from 1)
 -g gate,... --gateway=gate,...
               Route packets through the specified gateway
               (maximum 8 for IPv4 and 127 for IPv6)
 -I --icmp         Use ICMP ECHO for tracerouting
 -T --tcp          Use TCP SYN for tracerouting
 -i device --interface=device
               Specify a network interface to operate with
 -m max_ttl --max-hops=max_ttl
               Set the max number of hops (max TTL to be
               reached). Default is 30
 -N squeries --sim-queries=squeries
               Set the number of probes to be tried
               simultaneously (default is 16)
 -n             Do not resolve IP addresses to their domain names
 -p port --port=port    Set the destination port to use. It is either
               initial udp port value for "default" method
               (incremented by each probe, default is 33434), or
               initial seq for "icmp" (incremented as well,
               default from 1), or some constant destination
               port for other methods (with default of 80 for
               "tcp", 53 for "udp", etc.)
 -t tos --tos=tos      Set the TOS (IPv4 type of service) or TC (IPv6
               traffic class) value for outGoing packets
 -l flow_label --flowlabel=flow_label
               Use specified flow_label for IPv6 packets
 -w waittime --wait=waittime
               Set the number of seconds to wait for response to
               a probe (default is 5.0). Non-integer (float
               point) values allowed too
 -q nqueries --queries=nqueries
               Set the number of probes per each hop. Default is
               3
 -r             Bypass the nORMal routing and send directly to a
               host on an attached network
 -s src_addr --source=src_addr
               Use source src_addr for outgoing packets
 -z sendwait --sendwait=sendwait
               Minimal time interval between probes (default 0).
               If the value is more than 10, then it specifies a
               number in milliseconds, else it is a number of
               seconds (float point values allowed too)
 -e --extensions      Show ICMP extensions (if present), including MPLS
 -A --as-path-lookups    Perform AS path lookups in routing reGIStries and
               print results directly after the corresponding
               addresses
 -M name --module=name   Use specified module (either builtin or external)
               for traceroute operations. Most methods have
               their shortcuts (`-I' means `-M icmp' etc.)
 -O OPTS,... --options=OPTS,...
               Use module-specific option OPTS for the
               traceroute module. Several OPTS allowed,
               separated by comma. If OPTS is "help", print info
               about available options
 --sport=num         Use source port num for outgoing packets. Implies
               `-N 1'
 -U --udp          Use UDP to particular port for tracerouting
               (instead of increasing the port per each probe),
               default port is 53
 -UL             Use UDPLITE for tracerouting (default dest port
               is 53)
 -P prot --protocol=prot  Use raw packet of protocol prot for tracerouting
 --mtu            Discover MTU along the path being traced. Implies
               `-F -N 1'
 --back           Guess the number of hops in the backward path and
               print if it differs
 -V --version        Print version info and exit
 --help           Read this help and exit

常见命令展示

多命令使用


traceroute -n -m 5 -q 4 -w 3 www.baidu.com

说明: -n 显示IP地址,不查主机名, -m 设置跳数

-q 4每个网关发送4个数据包 -w 把对外发探测包的等待响应时间设置为3秒

探测包使用的基本UDP端口设置6888


traceroute -p 6888 www.baidu.com

绕过正常的路由表,直接发送到网络相连的主机


traceroute -r www.baidu.com

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

--结束END--

本文标题: Linux traceroute命令使用详解

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

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

猜你喜欢
  • Linux traceroute命令使用详解
    traceroute我们可以知道信息从你的计算机到互联网另一端的主机是走的什么路径。当然每次数据包由某一同样的出发点(source)到达某一同样的目的地(destination)走的路径可能会不一样,但基本上来说大部分时...
    99+
    2022-06-04
    Linux traceroute命令 Linux traceroute
  • Linux traceroute命令使用方法实例详解
    Linux traceroute命令使用方法实例详解 一、默认使用的是UDP协议(30000以上端口) 二、使用TCP协议 -T -p 三、使用ICMP协议 -I 四、实战 [roo...
    99+
    2022-06-04
    使用方法 详解 实例
  • linux下traceroute命令怎么使用
    在Linux下,`traceroute`命令用于跟踪网络数据包从本地主机到目的主机的路径。下面是`traceroute`命令的使用方...
    99+
    2023-09-20
    linux
  • Linux中如何使用traceroute命令
    小编给大家分享一下Linux中如何使用traceroute命令,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!Linux常用命令traceroute命令用于显示数据包到主机间的路径,traceroute指令让你追踪网络数据包...
    99+
    2023-06-28
  • 如何使用Linux中traceroute命令
    本篇内容主要讲解“如何使用Linux中traceroute命令”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何使用Linux中traceroute命令”吧!关于linux traceroute...
    99+
    2023-06-09
  • traceroute命令如何在Linux中使用
    本篇文章为大家展示了traceroute命令如何在Linux中使用,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。Linux traceroute命令使用方法实例详解一、默认使用的是UDP协议(300...
    99+
    2023-06-09
  • 如何在Linux中使用traceroute命令
    这篇文章给大家介绍如何在Linux中使用traceroute命令,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。1.命令格式:traceroute[参数][主机]2.命令功能:traceroute指令让你追踪网络数据包的...
    99+
    2023-06-13
  • Linux中traceroute命令怎么用
    这篇文章给大家分享的是有关Linux中traceroute命令怎么用的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。Linux常用命令traceroute命令 用于追踪数据包在网络上的传输时的全部路径,它默认发送的...
    99+
    2023-06-28
  • Linux命令:traceroute命令(路由跟踪)
    traceroute是用来检测发出数据包的主机到⽬标主机之间所经过的网关数量的工具。 traceroute的原理是试图以最小的TTL(存活时间)发出探测包来跟踪数据包到达目标主机所经过的网关,然后监听⼀个来自网关ICMP的应答,发送数据包的...
    99+
    2023-09-11
    网络 服务器 网络协议
  • Linux基础命令traceroute的用法
    这篇文章主要介绍“Linux基础命令traceroute的用法”,在日常操作中,相信很多人在Linux基础命令traceroute的用法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Linux基础命令trac...
    99+
    2023-06-05
  • Linux系统中traceroute命令怎么用
    这篇文章主要介绍Linux系统中traceroute命令怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!在Linux系统中使用traceroute命令可以知道我们发送的信息你的计算机到互联网另一端的主机是走的什么...
    99+
    2023-06-28
  • Linux中使用traceroute命令跟踪目标地址
    在Linux中,可以使用traceroute命令来跟踪目标地址。该命令可以显示数据包从本地主机到目标地址的路径,并显示每个中间节点(...
    99+
    2023-09-22
    Linux
  • Linux命令每天必学(55)之traceroute命令
    关于linux traceroute 命令的相关知识介绍如下所示: 通过traceroute我们可以知道信息从你的计算机到互联网另一端的主机是走的什么路径。当然每次数据包由某一同样的出发点(source)到...
    99+
    2022-06-04
    命令 Linux traceroute
  • Linux之traceroute命令的用法是什么
    traceroute命令是用来跟踪数据包在IP网络中的路径的工具。它发送一系列的数据包到目标主机,并显示这些数据包经过的每个中间路由...
    99+
    2023-10-22
    Linux
  • linux mpstat命令使用详解
    1. mpstat命令 1.1 命令格式 mpstat [ -A ] [ -u ] [ -V ] [ -I { SUM | CPU | SCPU | ALL } ] [ -P { cpu [,...] | ON ...
    99+
    2022-06-04
    linux mpstat命令
  • linux nslookup命令使用详解
    【nslookup何许人?】 nslookup命令,是linux里非常常用的网络命令,简而言之就是“查DNS信息用的”。 通过man nslookup可以看到对于nslookup的官方解释是“query Internet...
    99+
    2022-06-04
    linux nslookup命令 linux nslookup
  • Linux tee命令使用详解
    tee命令主要被用来向standout(标准输出流,通常是命令执行窗口)输出的同时也将内容输出到文件,下面是tee的man 信息 read from standard input and write to standa...
    99+
    2022-06-04
    Linux tee命令 Linux tee命令
  • Linux lsof命令使用详解
    lsof(list open files)是一个查看进程打开的文件的工具。 在 linux 系统中,一切皆文件。通过文件不仅仅可以访问常规数据,还可以访问网络连接和硬件。所以 lsof 命令不仅可以查看进程打开的文件、目...
    99+
    2022-06-04
    Linux lsof命令 Linux lsof
  • linux命令详解之chkconfig命令使用方法
    使用语法:chkconfig[--add][--del][--list][系统服务] 或chkconfig[--level < 等级代号>][系统服务][on/off/reset] chkcon...
    99+
    2022-06-04
    命令 使用方法 详解
  • linux命令详解之useradd命令使用方法
    Linux 系统是一个多用户多任务的分时操作系统,任何一个要使用系统资源的用户,都必须首先向系统管理员申请一个账号,然后以这个账号的身份进入系统。用户的账号一方面可以帮助系统管理员对使用系统的用户进行跟踪,...
    99+
    2022-06-04
    命令 使用方法 详解
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作