1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-13 11:55:26 +02:00
tldr/pages/common/ping.md
2016-01-08 09:38:59 +01:00

19 lines
360 B
Markdown

# ping
> Send ICMP ECHO_REQUEST packets to network hosts.
- Ping host:
`ping {{host}}`
- Ping host limiting the number of packages to be send to four:
`ping -c 4 {{host}}`
- Ping host, waiting for 0.5 s between each request (default is 1 s):
`ping -i 0.5 {{host}}`
- Ping host without trying to lookup symbolic names for addresses:
`ping -n {{host}}`