Команда traceroute в Linux выводит маршрут, по которому пакет достигает хоста. Эта команда полезна, когда вы хотите узнать о маршруте и обо всех переходах, которые проходит пакет.
На рисунке ниже показано, как команда traceroute используется для достижения хоста Google(64.233.165.102) с локальной машины, а также выводит подробную информацию обо всех переходах, которые он посетил.
Первый столбец соответствует количеству хопов. Второй столбец представляет собой адрес этого хопа, и после этого вы видите три промежутка времени в миллисекундах. Команда traceroute посылает три пакета к хопу, и каждый из этих промежутков времени означает время, необходимое пакету, чтобы достичь хопа.
Синтаксис traceroute
1 | traceroute [опции] host_Address [длина пути] |
Опции
-4 : Использовать ip версии 4, т.е. использовать IPv4
1 | traceroute -4 google.com |
-6 : Использовать ip версии 6, т.е. использовать IPv6
1 | traceroute -6 google.com |
-F: Не фрагментировать пакет.
1 | traceroute -F google.com |
-f first_ttl: Начинать с указанного ttl хопа (вместо 1).
1 | traceroute -f 10 google.com |
-g gate: Направить пакет через gate.
1 | traceroute -g 192.168.1.2 google.com |
-m max_ttl: Задать максимальное количество переходов для пакета до места назначения. Значение по умолчанию - 30.
1 | traceroute -m 5 google.com |
-n: Не преобразовывать IP-адреса в их доменные имена.
1 | traceroute -n google.com |
-p port: Задать порт назначения, который будет использоваться. По умолчанию это 33434.
1 | traceroute -p 20292 google.com |
-q nqueries: Задайте количество запросов на каждый переход. По умолчанию - 3.
1 | traceroute -q 1 google.com |
packetlen: Полная длина пакета. По умолчанию len - 60 байтовых пакетов.
1 | traceroute google.com 100 |
--help: Вывести справочные сообщения и выйти.
1 | traceroute --help |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | traceroute --help Usage: traceroute [ -46dFITnreAUDV ] [ -f first_ttl ] [ -g gate,... ] [ -i device ] [ -m max_ttl ] [ -N squeries ] [ -p port ] [ -t tos ] [ -l flow_label ] [ -w MAX,HERE,NEAR ] [ -q nqueries ] [ -s src_addr ] [ -z sendwait ] [ --fwmark=num ] 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 (default port is 80) -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 MAX,HERE,NEAR --wait=MAX,HERE,NEAR Wait for a probe no more than HERE (default 3) times longer than a response from the same hop, or no more than NEAR (default 10) times than some next hop, or MAX (default 5.0) seconds (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' --fwmark=num Set firewall mark for outgoing packets -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) -D --dccp Use DCCP Request for tracerouting (default port is 33434) -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 Arguments: + host The host to traceroute to packetlen The full packet length (default is the length of an IP header plus 40). Can be ignored or increased to a minimal allowed value |