traceroute 安装及使用

traceroute 安装及使用1.pc端下载traceroute-2.1.0-6.fc28.x86_64.rpm文件;https://rpmfind.net/linux/rpm2html/search.php?query=traceroute(x86-64)2.将安装包上传到centos主机使用rz命令3.执行rpm-ivhtraceroute-2.1.0-6.fc28.x86_64.rpm命令进行安装4…

大家好,又见面了,我是你们的朋友全栈君。

1.pc 端下载traceroute-2.1.0-6.fc28.x86_64.rpm文件;
https://rpmfind.net/linux/rpm2html/search.php?query=traceroute(x86-64)
2. 将安装包上传到centos主机
使用 rz 命令
3.执行rpm -ivh traceroute-2.1.0-6.fc28.x86_64.rpm命令进行安装
4.安装完成开始使用
traceroute –hostip -6 -I

traceroute –help

Usage:
traceroute [ -46dFITnreAUV ] [ -f first_ttl ] [ -g gate,… ] [ -i device ] [ -m max_ttl ] [ -N squeries ] [ -p port ] [ -t tos ] [ -l flow_label ] [ -w waittime ] [ -q nqueries ] [ -s src_addr ] [ -z sendwait ] host [ packetlen ]
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 serial8250: too much work for irq4 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
常见问题:
1.扫描路由时显示不全,如下

traceroute 2099::10:10:254:254

traceroute to 2099::10:10:254:254 (2099::10:10:254:254), 30 hops max, 80 byte packets
1 2099::10:10:0:1 (2099::10:10:0:1) 1.009 ms 1.508 ms *
2 * * *
3 * * *
4 * * *
5 * * *
6 * 2099::10:10:254:254 (2099::10:10:254:254) 0.795 ms 0.663 ms
原因及解决办法:
主要是因为有些节点把UDP数据包屏蔽了,所以没有返回ICMP。
对于有HTTP服务的主机,可以用参数设置traceroute使用TCP协议进行探测,就可以获得最终节点

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/151518.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(2)


相关推荐

  • asp.net(c#)网页跳转几种方法小结「建议收藏」

    asp.net(c#)网页跳转几种方法小结「建议收藏」在asp.net下,经常需要页面的跳转,下面是具体的几种方法。跳转页面是大部编辑语言中都会有的,正面我们来分别介绍一下关于.net中response.redirectsever.executeserver.transfer三种页面跳转的方法①response.redirect这个跳转页面的方法跳转的速度不快,因为它要走2个来回(2次postback),但他可以跳转到任何页面,没有站点页

  • 深入浅析Mysql联合索引原理 之 最左匹配原则。

    深入浅析Mysql联合索引原理 之 最左匹配原则。前言之前在网上看到过很多关于mysql联合索引最左前缀匹配的文章,自以为就了解了其原理,最近面试时和大牛交流中,发现遗漏了些东西,这里自己整理一下这方面的内容。最左前缀匹配原则在mysql建立联合索引时会遵循最左前缀匹配的原则,即最左优先,在检索数据时从联合索引的最左边开始匹配,示例:CREATETABLE`student`(`Id`int(11)unsign…

  • 统计xml文件包含的标注信息 parse_dataset_annotation

    统计xml文件包含的标注信息 parse_dataset_annotation

  • 木马入门

    木马入门木马是如何编写的(一)特洛依木马这个名词大家应该不陌生,自从98年“死牛崇拜”黑客小组公布BackOrifice以来,木马犹如平地上的惊雷,使在Dos——Windows时代中长大的中国网民从五彩缤纷的网络之梦中惊醒,终于认识到的网络也有它邪恶的一面,一时间人心惶惶。  我那时在《电脑报》上看到一篇文章,大意是一个菜鸟被人用BO控制了,吓得整天吃不下饭、睡不着觉、上不了网,到处求救!

  • LaTeX伪代码写法总结

    LaTeX伪代码写法总结1.伪代码所用包一般会接触到的包有algorithm、algorithmic、algorithmicx、algorithm2e这四种包。algorithm一般用于给伪代码提供一个浮动体环境,防止其换页或其他因素导致的内容中断,从而跨页显示。algorithmic则用于编辑伪代码的内容,一些for、while、if等语句通过该包中的命令进行编写。algorithmicx则可以看作algorithmic的升级版,参考资料…

  • rabbitmq集群安装_java实现消息队列

    rabbitmq集群安装_java实现消息队列rabbitmq集群搭建失败解决随记1现象:2原因:3解决方法:1现象:1、各节点已改hosts,各节点ping节点名正常。2、md5sum.erlang.cookie各节点值一样。按以下步骤加入失败:$rabbitmqctlstop_app #停止rabbitmq服务$rabbitmqctlreset #清空节点状态$rabbitmqctljoin_clusterrabbit@rabbitmq3$rabbitmqctlstart_app

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号