Script batch - PING
Questo comando batch invia pacchetti ICMP / IP "echo" sulla rete all'indirizzo designato.
Sintassi
PING [address]
Dove indirizzo è l'indirizzo IP o il nome host del sistema di destinazione.
Esempio
@echo off
Ping 127.0.0.1
Produzione
Il comando precedente invierà pacchetti "echo" ICMP / IP all'indirizzo di destinazione 192.168.0.1. Di seguito è riportato un esempio dell'output.
Pinging 127.0.0.1 with 32 bytes of data:
Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128
Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128
Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128
Reply from 127.0.0.1: bytes = 32 time<1ms TTL = 128
Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms