mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 13:15:24 +02:00
pathping: add page (#2077)
This commit is contained in:
parent
a47a8a88d3
commit
2d9ecbd388
1 changed files with 35 additions and 0 deletions
35
pages/windows/pathping.md
Normal file
35
pages/windows/pathping.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# pathping
|
||||
|
||||
> A trace route tool combining features of `ping` and `tracert`.
|
||||
|
||||
- Ping and trace the route to a host:
|
||||
|
||||
`pathping {{hostname}}`
|
||||
|
||||
- Do not perform reverse lookup of ip-address to hostname:
|
||||
|
||||
`pathping {{hostname}} -n`
|
||||
|
||||
- Specify the maximum number of hops to search for the target (the default is 30):
|
||||
|
||||
`pathping {{hostname}} -h {{max_hops}}`
|
||||
|
||||
- Specify the milliseconds to wait between pings (the default is 240):
|
||||
|
||||
`pathping {{hostname}} -p {{time}}`
|
||||
|
||||
- Specify the number of queries per hop (the default is 100):
|
||||
|
||||
`pathping {{hostname}} -q {{queries}}`
|
||||
|
||||
- Force IPV4 usage:
|
||||
|
||||
`pathping {{hostname}} -4`
|
||||
|
||||
- Force IPV6 usage:
|
||||
|
||||
`pathping {{hostname}} -6`
|
||||
|
||||
- Display detailed usage information:
|
||||
|
||||
`pathping /?`
|
Loading…
Add table
Reference in a new issue