]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/ping/ping.8
zfs: merge openzfs/zfs@95f71c019
[FreeBSD/FreeBSD.git] / sbin / ping / ping.8
1 .\" Copyright (c) 1985, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)ping.8      8.2 (Berkeley) 12/11/93
29 .\"
30 .Dd November 20, 2022
31 .Dt PING 8
32 .Os
33 .Sh NAME
34 .Nm ping
35 .Nd send
36 ICMP
37 or
38 ICMPv6 ECHO_REQUEST
39 packets to network hosts
40 .Sh SYNOPSIS
41 .Nm
42 .Op Fl 4AaDdfHnoQqRrv
43 .Op Fl .\& Ns Ar chars
44 .Op Fl C Ar pcp
45 .Op Fl c Ar count
46 .Op Fl G Ar sweepmaxsize
47 .Op Fl g Ar sweepminsize
48 .Op Fl h Ar sweepincrsize
49 .Op Fl i Ar wait
50 .Op Fl l Ar preload
51 .Op Fl M Cm mask | time
52 .Op Fl m Ar ttl
53 .Op Fl P Ar policy
54 .Op Fl p Ar pattern
55 .Op Fl S Ar src_addr
56 .Op Fl s Ar packetsize
57 .Op Fl t Ar timeout
58 .Op Fl W Ar waittime
59 .Op Fl z Ar tos
60 .Ar IPv4-host
61 .Nm
62 .Op Fl 4AaDdfHLnoQqRrv
63 .Op Fl .\& Ns Ar chars
64 .Op Fl C Ar pcp
65 .Op Fl c Ar count
66 .Op Fl I Ar iface
67 .Op Fl i Ar wait
68 .Op Fl l Ar preload
69 .Op Fl M Cm mask | time
70 .Op Fl m Ar ttl
71 .Op Fl P Ar policy
72 .Op Fl p Ar pattern
73 .Op Fl S Ar src_addr
74 .Op Fl s Ar packetsize
75 .Op Fl T Ar ttl
76 .Op Fl t Ar timeout
77 .Op Fl W Ar waittime
78 .Op Fl z Ar tos
79 .Ar IPv4-mcast-group
80 .Nm
81 .Op Fl 6AaDdEfHNnOoquvYyZ
82 .Op Fl .\& Ns Ar chars
83 .Op Fl b Ar bufsiz
84 .Op Fl c Ar count
85 .Op Fl e Ar gateway
86 .Op Fl I Ar interface
87 .Op Fl i Ar wait
88 .Op Fl k Ar addrtype
89 .Op Fl l Ar preload
90 .Op Fl m Ar hoplimit
91 .Op Fl P Ar policy
92 .Op Fl p Ar pattern
93 .Op Fl S Ar sourceaddr
94 .Op Fl s Ar packetsize
95 .Op Fl t Ar timeout
96 .Op Fl W Ar waittime
97 .Op Ar IPv6-hops ...
98 .Ar IPv6-host
99 .Sh DESCRIPTION
100 The
101 .Nm
102 utility invoked with an IPv4 target
103 .Ar ( IPv4-host
104 or
105 .Ar IPv4-mcast-group )
106 uses the
107 ICMP
108 .No protocol Ap s mandatory
109 ECHO_REQUEST
110 datagram to elicit an
111 ICMP ECHO_RESPONSE
112 from a host or gateway.
113 ECHO_REQUEST
114 datagrams
115 .Pq Dq pings
116 have an IP and
117 ICMP
118 header, followed by a
119 .Dq struct timeval
120 and then an arbitrary number of
121 .Dq pad
122 bytes used to fill out the packet.
123 .Pp
124 When invoked with an IPv6 target
125 .Ar ( IPv6-host ) ,
126 it uses the
127 ICMPv6
128 protocol's mandatory
129 ICMP6_ECHO_REQUEST
130 datagram to elicit an
131 ICMP6_ECHO_REPLY.
132 ICMP6_ECHO_REQUEST
133 datagrams have an IPv6 header and
134 ICMPv6
135 header formatted as documented in RFC 2463.
136 .Pp
137 When invoked with a hostname, the version to which the target is resolved first
138 is used.
139 In that case, the options and arguments used must be valid for the specific IP
140 version, otherwise
141 .Nm
142 exits with an error.
143 If the target is resolved to both IPv4 and IPv6, the specific IP version can be
144 requested by
145 .Fl 4
146 or
147 .Fl 6
148 options, respectively.
149 For backwards-compatibility, ICMPv6 can also be selected by invoking the binary
150 as
151 .Nm ping6 .
152 .Ss Options common to both IPv4 and IPv6 targets
153 .Bl -tag -width indent
154 .It Fl .\& Ns Ar chars
155 By default, for every
156 ECHO_REQUEST
157 sent, a period
158 .Dq .\&
159 is printed, while for every
160 ECHO_REPLY
161 received, a backspace is printed.
162 This option takes an optional string argument listing characters
163 that will be printed one by one in the provided order
164 instead of the default period.
165 .Pp
166 Example usage:
167 .Bd -literal -offset indent
168 ping -.0123456789 freebsd.org
169 .Ed
170 .It Fl A
171 Audible.
172 Output a bell
173 (ASCII
174 0x07)
175 character when no packet is received before the next packet
176 is transmitted.
177 To cater for round-trip times that are longer than the interval
178 between transmissions, further missing packets cause a bell only
179 if the maximum number of unreceived packets has increased.
180 .It Fl a
181 Audible.
182 Include a bell
183 (ASCII
184 0x07)
185 character in the output when any packet is received.
186 .It Fl C Ar pcp
187 Add an 802.1p Ethernet Priority Code Point when sending a packet.
188 0..7 uses that specific PCP, -1 uses the interface default PCP (or none).
189 .It Fl c Ar count
190 Stop after sending
191 (and receiving)
192 .Ar count
193 ECHO_RESPONSE
194 packets.
195 If this option is not specified,
196 .Nm
197 will operate until interrupted.
198 .Pp
199 For an IPv4 target, if this option is specified in conjunction with ping sweeps,
200 each sweep will consist of
201 .Ar count
202 packets.
203 .It Fl D
204 Disable fragmentation.
205 .It Fl d
206 Set the
207 .Dv SO_DEBUG
208 option on the socket being used.
209 .It Fl f
210 Flood ping.
211 Outputs packets as fast as they come back or one hundred times per second,
212 whichever is more.
213 Implies
214 .Fl .\&
215 to print a period for every
216 ECHO_REQUEST
217 sent and a backspace for every
218 ECHO_REPLY
219 received.
220 This provides a rapid display of how many packets are being dropped.
221 Only the super-user may use this option.
222 .Bf -emphasis
223 This can be very hard on a network and should be used with caution.
224 .Ef
225 .It Fl H
226 Hostname output.
227 Try to do a reverse DNS lookup when displaying addresses.
228 This is the opposite of the
229 .Fl n
230 option.
231 .It Fl I Ar iface
232 For an IPv4 target,
233 .Ar iface
234 is an IP address indentifying an interface from which the packets will be sent.
235 This flag applies only if the ping target is a multicast address.
236 .Pp
237 For an IPv6 target,
238 .Ar iface
239 is a name of an interface (e.g., `em0') from which the packets will be sent.
240 This flag applies if the ping target is a multicast address, or
241 link-local/site-local unicast address.
242 .It Fl i Ar wait
243 Wait
244 .Ar wait
245 seconds
246 .Em between sending each packet .
247 The default is to wait for one second between each packet.
248 The wait time may be fractional, but only the super-user may specify
249 values less than 1 second.
250 This option is incompatible with the
251 .Fl f
252 option.
253 .It Fl l Ar preload
254 If
255 .Ar preload
256 is specified,
257 .Nm
258 sends that many packets as fast as possible before falling into its normal
259 mode of behavior.
260 Only the super-user may use this option.
261 .It Fl m Ar ttl
262 For an IPv4 target, set the IP Time To Live for outgoing packets.
263 If not specified, the kernel uses the value of the
264 .Va net.inet.ip.ttl
265 MIB variable.
266 .Pp
267 For an IPv6 target, set the IPv6 hoplimit.
268 .It Fl n
269 Numeric output only.
270 No attempt will be made to lookup symbolic names for host addresses.
271 This is the opposite of
272 .Fl H ,
273 and it is the default behavior.
274 .It Fl o
275 Exit successfully after receiving one reply packet.
276 .It Fl P Ar policy
277 .Ar policy
278 specifies IPsec policy for the ping session.
279 For details please refer to
280 .Xr ipsec 4
281 and
282 .Xr ipsec_set_policy 3 .
283 .It Fl p Ar pattern
284 You may specify up to 16
285 .Dq pad
286 bytes to fill out the packet you send.
287 This is useful for diagnosing data-dependent problems in a network.
288 For example,
289 .Dq Li \-p ff
290 will cause the sent packet to be filled with all
291 ones.
292 .It Fl q
293 Quiet output.
294 Nothing is displayed except the summary lines at startup time and
295 when finished.
296 .It Fl S Ar src_addr
297 Use the following IP address as the source address in outgoing packets.
298 On hosts with more than one IP address, this option can be used to
299 force the source address to be something other than the IP address
300 of the interface the probe packet is sent on.
301 .Pp
302 For IPv4, if the IP address is not one of this machine's interface
303 addresses, an error is returned and nothing is sent.
304 .Pp
305 For IPv6, the source address must be one of the unicast addresses of
306 the sending node, and must be numeric.
307 .It Fl s Ar packetsize
308 Specify the number of data bytes to be sent.
309 The default is 56, which translates into 64
310 ICMP
311 data bytes when combined
312 with the 8 bytes of
313 ICMP
314 header data.
315 .Pp
316 For IPv4, only the super-user may specify values more than default.
317 This option cannot be used with ping sweeps.
318 .Pp
319 For IPv6, you may need to specify
320 .Fl b
321 as well to extend socket buffer size.
322 .It Fl t Ar timeout
323 Specify a timeout, in seconds, before ping exits regardless of how
324 many packets have been received.
325 .It Fl v
326 Verbose output.
327 ICMP
328 packets other than
329 ECHO_RESPONSE
330 that are received are listed.
331 .It Fl W Ar waittime
332 Time in milliseconds to wait for a reply for each packet sent.
333 If a reply arrives later, the packet is not printed as replied, but
334 considered as replied when calculating statistics.
335 .El
336 .Ss Options only for IPv4 targets
337 .Bl -tag -width indent
338 .It Fl 4
339 Use IPv4 regardless of how the target is resolved.
340 .It Fl G Ar sweepmaxsize
341 Specify the maximum size of
342 ICMP
343 payload when sending sweeping pings.
344 This option is required for ping sweeps.
345 .It Fl g Ar sweepminsize
346 Specify the size of
347 ICMP
348 payload to start with when sending sweeping pings.
349 The default value is 0.
350 .It Fl h Ar sweepincrsize
351 Specify the number of bytes to increment the size of
352 ICMP
353 payload after
354 each sweep when sending sweeping pings.
355 The default value is 1.
356 .It Fl L
357 Suppress loopback of multicast packets.
358 This flag only applies if the ping destination is a multicast address.
359 .It Fl M Cm mask | time
360 Use
361 .Dv ICMP_MASKREQ
362 or
363 .Dv ICMP_TSTAMP
364 instead of
365 .Dv ICMP_ECHO .
366 For
367 .Cm mask ,
368 print the netmask of the remote machine.
369 Set the
370 .Va net.inet.icmp.maskrepl
371 MIB variable to enable
372 .Dv ICMP_MASKREPLY
373 and
374 .Va net.inet.icmp.maskfake
375 if you want to override the netmask in the response.
376 For
377 .Cm time ,
378 print the origination, reception and transmission timestamps.
379 Set the
380 .Va net.inet.icmp.tstamprepl
381 MIB variable to enable or disable
382 .Dv ICMP_TSTAMPREPLY .
383 .It Fl Q
384 Somewhat quiet output.
385 .No Don Ap t
386 display ICMP error messages that are in response to our query messages.
387 Originally, the
388 .Fl v
389 flag was required to display such errors, but
390 .Fl v
391 displays all ICMP error messages.
392 On a busy machine, this output can be overbearing.
393 Without the
394 .Fl Q
395 flag,
396 .Nm
397 prints out any ICMP error messages caused by its own ECHO_REQUEST
398 messages.
399 .It Fl R
400 Record route.
401 Includes the
402 RECORD_ROUTE
403 option in the
404 ECHO_REQUEST
405 packet and displays
406 the route buffer on returned packets.
407 Note that the IP header is only large enough for nine such routes;
408 the
409 .Xr traceroute 8
410 command is usually better at determining the route packets take to a
411 particular destination.
412 If more routes come back than should, such as due to an illegal spoofed
413 packet, ping will print the route list and then truncate it at the correct
414 spot.
415 Many hosts ignore or discard the
416 RECORD_ROUTE
417 option.
418 .It Fl r
419 Bypass the normal routing tables and send directly to a host on an attached
420 network.
421 If the host is not on a directly-attached network, an error is returned.
422 This option can be used to ping a local host through an interface
423 that has no route through it
424 (e.g., after the interface was dropped by
425 .Xr routed 8 ) .
426 .It Fl T Ar ttl
427 Set the IP Time To Live for multicasted packets.
428 This flag only applies if the ping destination is a multicast address.
429 .It Fl z Ar tos
430 Use the specified type of service.
431 .It Ar IPv4-host
432 hostname or IPv4 address of the final destination node.
433 .It Ar IPv4-mcast-group
434 IPv4 multicast address of the final destination nodes.
435 .El
436 .Ss Options only for IPv6 targets
437 .Bl -tag -width indent
438 .It Fl 6
439 Use IPv6 regardless of how the target is resolved.
440 .It Fl b Ar bufsiz
441 Set socket buffer size.
442 .It Fl e Ar gateway
443 Specifies to use
444 .Ar gateway
445 as the next hop to the destination.
446 The gateway must be a neighbor of the sending node.
447 .It Fl k Ar addrtype
448 Generate ICMPv6 Node Information Node Addresses query, rather than echo-request.
449 .Ar addrtype
450 must be a string constructed of the following characters.
451 .Bl -tag -width Ds -compact
452 .It Ic a
453 requests unicast addresses from all of the responder's interfaces.
454 If the character is omitted,
455 only those addresses which belong to the interface which has the
456 responder's address are requests.
457 .It Ic c
458 requests responder's IPv4-compatible and IPv4-mapped addresses.
459 .It Ic g
460 requests responder's global-scope addresses.
461 .It Ic s
462 requests responder's site-local addresses.
463 .It Ic l
464 requests responder's link-local addresses.
465 .It Ic A
466 requests responder's anycast addresses.
467 Without this character, the responder will return unicast addresses only.
468 With this character, the responder will return anycast addresses only.
469 Note that the specification does not specify how to get responder's
470 anycast addresses.
471 This is an experimental option.
472 .El
473 .It Fl N
474 Probe node information multicast group address
475 .Pq Li ff02::2:ffxx:xxxx .
476 .Ar host
477 must be string hostname of the target
478 (must not be a numeric IPv6 address).
479 Node information multicast group will be computed based on given
480 .Ar host ,
481 and will be used as the final destination.
482 Since node information multicast group is a link-local multicast group,
483 outgoing interface needs to be specified by
484 .Fl I
485 option.
486 .Pp
487 When specified twice, the address
488 .Pq Li ff02::2:xxxx:xxxx
489 is used instead.
490 The former is in RFC 4620, the latter is in an old Internet Draft
491 draft-ietf-ipngwg-icmp-name-lookup.
492 Note that KAME-derived implementations including
493 .Fx
494 use the latter.
495 .It Fl O
496 Generate ICMPv6 Node Information supported query types query,
497 rather than echo-request.
498 .Fl s
499 has no effect if
500 .Fl O
501 is specified.
502 .It Fl u
503 By default,
504 .Nm
505 asks the kernel to fragment packets to fit into the minimum IPv6 MTU.
506 The
507 .Fl u
508 option
509 will suppress the behavior in the following two levels:
510 when the option is specified once, the behavior will be disabled for
511 unicast packets.
512 When the option is more than once, it will be disabled for both
513 unicast and multicast packets.
514 .It Fl Y
515 Same as
516 .Fl y ,
517 but with old packet format based on 03 draft.
518 This option is present for backward compatibility.
519 .Fl s
520 has no effect if
521 .Fl y
522 is specified.
523 .It Fl y
524 Generate ICMPv6 Node Information DNS Name query, rather than echo-request.
525 .Fl s
526 has no effect if
527 .Fl y
528 is specified.
529 .It Ar IPv6-hops
530 IPv6 addresses for intermediate nodes,
531 which will be put into type 0 routing header.
532 .It Ar IPv6-host
533 IPv6 address of the final destination node.
534 .El
535 .Ss Experimental options only for IPv6 target
536 .Bl -tag -width indent
537 .It Fl E
538 Enables transport-mode IPsec encapsulated security payload.
539 .It Fl Z
540 Enables transport-mode IPsec authentication header.
541 .El
542 .Pp
543 When using
544 .Nm
545 for fault isolation, it should first be run on the local host, to verify
546 that the local network interface is up and running.
547 Then, hosts and gateways further and further away should be
548 .Dq pinged .
549 Round-trip times and packet loss statistics are computed.
550 If duplicate packets are received, they are not included in the packet
551 loss calculation, although the round trip time of these packets is used
552 in calculating the round-trip time statistics.
553 When the specified number of packets have been sent
554 (and received)
555 or if the program is terminated with a
556 .Dv SIGINT ,
557 a brief summary is displayed, showing the number of packets sent and
558 received, and the minimum, mean, maximum, and standard deviation of
559 the round-trip times.
560 .Pp
561 If
562 .Nm
563 receives a
564 .Dv SIGINFO
565 (see the
566 .Cm status
567 argument for
568 .Xr stty 1 )
569 signal, the current number of packets sent and received, and the
570 minimum, mean, maximum, and standard deviation of the round-trip times
571 will be written to the standard output.
572 .Pp
573 This program is intended for use in network testing, measurement and
574 management.
575 Because of the load it can impose on the network, it is unwise to use
576 .Nm
577 during normal operations or from automated scripts.
578 .Sh ICMP PACKET DETAILS
579 An IP header without options is 20 bytes.
580 An
581 ICMP
582 ECHO_REQUEST
583 packet contains an additional 8 bytes worth of
584 ICMP
585 header followed by an arbitrary amount of data.
586 When a
587 .Ar packetsize
588 is given, this indicated the size of this extra piece of data
589 (the default is 56).
590 Thus the amount of data received inside of an IP packet of type
591 ICMP
592 ECHO_REPLY
593 will always be 8 bytes more than the requested data space
594 (the
595 ICMP
596 header).
597 .Pp
598 If the data space is at least eight bytes large,
599 .Nm
600 uses the first eight bytes of this space to include a timestamp which
601 it uses in the computation of round trip times.
602 If less than eight bytes of pad are specified, no round trip times are
603 given.
604 .Sh DUPLICATE AND DAMAGED PACKETS
605 The
606 .Nm
607 utility will report duplicate and damaged packets.
608 Duplicate packets should never occur when pinging a unicast address,
609 and seem to be caused by
610 inappropriate link-level retransmissions.
611 Duplicates may occur in many situations and are rarely
612 (if ever)
613 a good sign, although the presence of low levels of duplicates may not
614 always be cause for alarm.
615 Duplicates are expected when pinging a broadcast or multicast address,
616 since they are not really duplicates but replies from different hosts
617 to the same request.
618 .Pp
619 Damaged packets are obviously serious cause for alarm and often
620 indicate broken hardware somewhere in the
621 .Nm
622 packet's path (in the network or in the hosts).
623 .Sh TRYING DIFFERENT DATA PATTERNS
624 The
625 (inter)network
626 layer should never treat packets differently depending on the data
627 contained in the data portion.
628 Unfortunately, data-dependent problems have been known to sneak into
629 networks and remain undetected for long periods of time.
630 In many cases the particular pattern that will have problems is something
631 that does not have sufficient
632 .Dq transitions ,
633 such as all ones or all zeros, or a pattern right at the edge, such as
634 almost all zeros.
635 It is not
636 necessarily enough to specify a data pattern of all zeros (for example)
637 on the command line because the pattern that is of interest is
638 at the data link level, and the relationship between what you type and
639 what the controllers transmit can be complicated.
640 .Pp
641 This means that if you have a data-dependent problem you will probably
642 have to do a lot of testing to find it.
643 If you are lucky, you may manage to find a file that either
644 cannot
645 be sent across your network or that takes much longer to transfer than
646 other similar length files.
647 You can then examine this file for repeated patterns that you can test
648 using the
649 .Fl p
650 option of
651 .Nm .
652 .Sh IPv4 TTL DETAILS
653 The
654 TTL
655 value of an IP packet represents the maximum number of IP routers
656 that the packet can go through before being thrown away.
657 In current practice you can expect each router in the Internet to decrement
658 the
659 TTL
660 field by exactly one.
661 .Pp
662 The
663 TCP/IP
664 specification recommends setting the
665 TTL
666 field for
667 IP
668 packets to 64.
669 .Pp
670 The maximum possible value of this field is 255, and some
671 .Ux
672 systems set
673 the
674 TTL
675 field of
676 ICMP ECHO_REQUEST
677 packets to 255.
678 This is why you will find you can
679 .Dq ping
680 some hosts, but not reach them with
681 .Xr telnet 1
682 or
683 .Xr ftp 1 .
684 .Pp
685 In normal operation
686 .Nm
687 prints the ttl value from the packet it receives.
688 When a remote system receives a ping packet, it can do one of three things
689 with the
690 TTL
691 field in its response:
692 .Bl -bullet
693 .It
694 Not change it; this is what
695 .Bx
696 systems did before the
697 .Bx 4.3 tahoe
698 release.
699 In this case the
700 TTL
701 value in the received packet will be 255 minus the
702 number of routers in the round-trip path.
703 .It
704 Set it to 64; this is what current
705 .Fx
706 systems do.
707 In this case the
708 TTL
709 value in the received packet will be 64 minus the
710 number of routers in the path
711 .Em from
712 the remote system
713 .Em to
714 the
715 .Nm Ns Em ing
716 host.
717 .It
718 Set it to some other value.
719 Some machines use the same value for
720 ICMP
721 packets that they use for
722 TCP
723 packets, for example either 30 or 60.
724 Others may use completely wild values.
725 .El
726 .Sh EXIT STATUS
727 The
728 .Nm
729 utility exits with one of the following values:
730 .Bl -tag -width indent
731 .It 0
732 At least one response was heard from the specified
733 .Ar host .
734 .It 2
735 The transmission was successful but no responses were received.
736 .It any other value
737 An error occurred.
738 .El
739 .Sh EXAMPLES
740 The following will send ICMPv6 echo request to
741 .Li dst.example.com .
742 .Bd -literal -offset indent
743 ping -6 -n dst.example.com
744 .Ed
745 .Pp
746 The following will probe hostnames for all nodes on the network link attached to
747 .Li wi0
748 interface.
749 The address
750 .Li ff02::1
751 is named the link-local all-node multicast address, and the packet would
752 reach every node on the network link.
753 .Bd -literal -offset indent
754 ping -6 -y ff02::1%wi0
755 .Ed
756 .Pp
757 The following will probe addresses assigned to the destination node,
758 .Li dst.example.com .
759 .Bd -literal -offset indent
760 ping -6 -k agl dst.example.com
761 .Ed
762 .Sh SEE ALSO
763 .Xr netstat 1 ,
764 .Xr icmp 4 ,
765 .Xr icmp6 4 ,
766 .Xr inet6 4 ,
767 .Xr ip6 4 ,
768 .Xr ifconfig 8 ,
769 .Xr routed 8 ,
770 .Xr traceroute 8 ,
771 .Xr traceroute6 8
772 .Rs
773 .%A A. Conta
774 .%A S. Deering
775 .%T "Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification"
776 .%N RFC 2463
777 .%D December 1998
778 .Re
779 .Rs
780 .%A Matt Crawford
781 .%T "IPv6 Node Information Queries"
782 .%N draft-ietf-ipngwg-icmp-name-lookups-09.txt
783 .%D May 2002
784 .%O work in progress material
785 .Re
786 .Sh HISTORY
787 The
788 .Nm
789 utility appeared in
790 .Bx 4.3 .
791 The
792 .Nm ping6
793 utility with IPv6 support first appeared in the WIDE Hydrangea IPv6
794 protocol stack kit.
795 .Pp
796 IPv6 and IPsec support based on the KAME Project
797 .Pq Pa https://www.kame.net/
798 stack was initially integrated into
799 .Fx 4.0 .
800 .Pp
801 The
802 .Nm ping6
803 utility was merged to
804 .Nm
805 in Google Summer of Code 2019.
806 .Sh AUTHORS
807 The original
808 .Nm
809 utility was written by
810 .An Mike Muuss
811 while at the US Army Ballistics
812 Research Laboratory.
813 .Sh BUGS
814 Many Hosts and Gateways ignore the IPv4
815 RECORD_ROUTE
816 option.
817 .Pp
818 The maximum IP header length is too small for options like
819 RECORD_ROUTE
820 to be completely useful.
821 .No There Ap s
822 not much that can be done about this, however.
823 .Pp
824 Flood pinging is not recommended in general, and flood pinging the
825 broadcast address should only be done under very controlled conditions.
826 .Pp
827 The
828 .Fl v
829 option is not worth much on busy hosts.