mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* ping: add Dutch translation and fix typos * ping6: add Dutch translation * Apply suggestions from code review * Apply suggestions from code review * Update ping.md Co-authored-by: Jack Lin <blueskyson1401@gmail.com> --------- Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
28 lines
779 B
Markdown
28 lines
779 B
Markdown
# ping
|
|
|
|
> Verstuur ICMP ECHO_REQUEST-pakketten naar netwerkhosts.
|
|
> Meer informatie: <https://keith.github.io/xcode-man-pages/ping.8.html>.
|
|
|
|
- Ping een specifieke host:
|
|
|
|
`ping "{{hostnaam}}"`
|
|
|
|
- Ping een host een specifiek aantal keren:
|
|
|
|
`ping -c {{aantal}} "{{host}}"`
|
|
|
|
- Ping een host, met een specifiek interval in seconden tussen de verzoeken (standaard is 1 seconde):
|
|
|
|
`ping -i {{seconden}} "{{host}}"`
|
|
|
|
- Ping een host zonder te proberen symbolische namen voor adressen op te zoeken:
|
|
|
|
`ping -n "{{host}}"`
|
|
|
|
- Ping een host en laat een bel afgaan wanneer een pakket wordt ontvangen (als je terminal dit ondersteunt):
|
|
|
|
`ping -a "{{host}}"`
|
|
|
|
- Ping een host en toon de tijd wanneer een pakket is ontvangen (deze optie is een Apple-toevoeging):
|
|
|
|
`ping --apple-time "{{host}}"`
|