Linux traceroute命令使用详解

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

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

(0)

相关推荐

  • Linux traceroute命令使用方法实例详解

    Linux traceroute命令使用方法实例详解 一.默认使用的是UDP协议(30000以上端口) 二.使用TCP协议 -T -p 三.使用ICMP协议 -I 四.实战 [root@localhost hping-master]# whereis traceroute traceroute: /usr/bin/traceroute /usr/share/man/man8/traceroute.8.gz [root@localhost hping-master]# [root@localhos

  • Linux命令每天必学(55)之traceroute命令

    关于linux traceroute 命令的相关知识介绍如下所示: 通过traceroute我们可以知道信息从你的计算机到互联网另一端的主机是走的什么路径.当然每次数据包由某一同样的出发点(source)到达某一同样的目的地(destination)走的路径可能会不一样,但基本上来说大部分时候所走的路由是相同的.linux系统中,我们称之为traceroute,在MS Windows中为tracert. traceroute通过发送小的数据包到目的设备直到其返回,来测量其需要多长时间.一条路径上

  • Linux traceroute命令使用详解

    traceroute我们可以知道信息从你的计算机到互联网另一端的主机是走的什么路径.当然每次数据包由某一同样的出发点(source)到达某一同样的目的地(destination)走的路径可能会不一样,但基本上来说大部分时候所走的路由是相同的. 常见命令参数 Options: -4 Use IPv4 -6 Use IPv6 -d --debug Enable socket level debugging -F --dont-fragment Do not fragment packets -f f

  • linux less命令实例详解

    less 文件名 查看文件 less 文件名 | grep -n 查找内容 根据内容过滤显示,并显示行号 less +行号g 文件名 查看文件,并定位到某行 d  向下翻页 u 向上翻页 g 跳到首行 G 跳到底部 ? 查找内容 向上查找 / 查找内容  向下查找 n 下一个 N 上一个 q 退出less命令 下面是具体栗子: 1.打开文件 less catalina.out 2.查看文件,并显示行号 less -N catalina.out 3.定位到某行(这里定位到第10行) less +1

  • Linux lsof命令使用详解

    lsof(list open files)是一个查看进程打开的文件的工具. 在 linux 系统中,一切皆文件.通过文件不仅仅可以访问常规数据,还可以访问网络连接和硬件.所以 lsof 命令不仅可以查看进程打开的文件.目录,还可以查看进程监听的端口等 socket 相关的信息.本文将介绍 lsof 命令的基本用法,本文中 demo 的演示环境为 ubuntu 18.04. 常用选项 -a 指示其它选项之间为与的关系 -c <进程名> 输出指定进程所打开的文件 -d <文件描述符>

  • Linux ls命令参数详解

    -a -- 全部(all).列举目录中的全部文件,包括隐藏文件(.filename).位于这个列表的起首处的 .. 和 . 依次是指父目录和你的当前目录.      -l -- 长(long).列举目录内容的细节,包括权限(模式).所有者.组群.大小.创建日期.文件是否是到系统其它地方的链接,以及链接的指向.      -F -- 文件类型(File type).在每一个列举项目之后添加一个符号.这些符号包括:/ 表明是一个目录:@ 表明是到其它文件的符号链接:* 表明是一个可执行文件.    

  • linux mpstat命令使用详解

    1. mpstat命令 1.1 命令格式 mpstat [ -A ] [ -u ] [ -V ] [ -I { SUM | CPU | SCPU | ALL } ] [ -P { cpu [,...] | ON | ALL } ] [ interval [ count ] ] OPTIONS: -A: 等同于-u -I ALL -P ALL -I:可以指定SUM CPU SCPU ALL四个参数,SUM表示每个处理器的中断总数,CPU表示每个核的每秒中断数量, SCPU表示每个核每秒的软中断数量

  • linux nslookup命令使用详解

    [nslookup何许人?] nslookup命令,是Linux里非常常用的网络命令,简而言之就是"查DNS信息用的". 通过man nslookup可以看到对于nslookup的官方解释是"query Internet name servers interactively". [nslookup作者何许人?] 通过man nslookup可以看到其作者是Andrew Cherenson,我寻找到了他的Linkedin主页,原来 他是一位计算机科学的高材生,曾经就读

  • Linux netstat命令大全详解

    简介 Netstat 命令用于显示各种网络相关信息,如网络连接,路由表,接口状态 (Interface Statistics),masquerade 连接,多播成员 (Multicast Memberships) 等等. 输出信息含义 执行netstat后,其输出结果为 Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 2 210.34.6

  • Linux常用命令mkdir详解

    mkdir  make directories  创建目录 语法格式:mkdir [option][directory] mkdir [选项] [目录] 注意:mkdir 命令以及后面的选项和目录,每个元之间都要至少要有一个空格 参数选项:-p,-m mkdir -p ysg/test 使用 mkdir 创建多级目录时,建议直接只用 -p 参数,可以避免出现 "No such file or directory" 没有文件或目录的报错了,也不会影响已存在的目录. mkdir -m 77

  • Linux tee命令使用详解

    tee命令主要被用来向standout(标准输出流,通常是命令执行窗口)输出的同时也将内容输出到文件,下面是tee的man 信息 read from standard input and write to standard output and files 下面我们通过几个应用场景来熟悉tee命令. 场景1: 如何使用tee命令 tee命令格式是: tee [OPTION]... [FILE]... 从man文件的定义了解 tee从标准输入流读取数据,所以这里我们使用一个简单的命令产生输出流作为

  • linux 中的ls命令参数详解及ls命令的使用实例

    一.ls命令参数详解 可以通过阅读 ls 的说明书页(man ls)来获得选项的完整列表. -a – 全部(all).列举目录中的全部文件,包括隐藏文件(.filename).位于这个列表的起首处的 .. 和 . 依次是指父目录和你的当前目录. -l – 长(long).列举目录内容的细节,包括权限(模式).所有者.组群.大小.创建日期.文件是否是到系统其它地方的链接,以及链接的指向. -F – 文件类型(File type).在每一个列举项目之后添加一个符号.这些符号包括:/ 表明是一个目录:

随机推荐