mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
parent
3f9320290a
commit
e14d5c0adc
1 changed files with 28 additions and 0 deletions
28
pages.es/osx/ping.md
Normal file
28
pages.es/osx/ping.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# ping
|
||||
|
||||
> Envía paquetes ICMP ECHO_REQUEST a hosts de la red.
|
||||
> Más información: <https://ss64.com/osx/ping.html>.
|
||||
|
||||
- Ping al host especificado:
|
||||
|
||||
`ping "{{hostname}}"`
|
||||
|
||||
- Ping a un host un número determinado de veces:
|
||||
|
||||
`ping -c {{cuenta}} "{{host}}"`
|
||||
|
||||
- Ping al `host`, especificando el intervalo en `segundos` entre peticiones (por defecto es 1 segundo):
|
||||
|
||||
`ping -i {{segundos}} "{{host}}"`
|
||||
|
||||
- Ping a `host` sin intentar buscar nombres simbólicos para las direcciones:
|
||||
|
||||
`ping -n "{{host}}"`
|
||||
|
||||
- Ping al `host` y hace sonar la campana cuando se recibe un paquete (si tu terminal lo soporta):
|
||||
|
||||
`ping -a "{{host}}"`
|
||||
|
||||
- Ping al `host` y muestra la hora en la que se ha recibido un paquete (esta opción es un añadido de Apple):
|
||||
|
||||
`ping --apple-time "{{host}}"`
|
Loading…
Add table
Reference in a new issue