2023-08-09 08:10:21 +01:00
|
|
|
# ping
|
|
|
|
|
|
|
|
> Envía paquetes ICMP ECHO_REQUEST a hosts de la red.
|
2024-01-31 10:20:27 +00:00
|
|
|
> Más información: <https://keith.github.io/xcode-man-pages/ping.8.html>.
|
2023-08-09 08:10:21 +01:00
|
|
|
|
|
|
|
- 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}}"`
|