File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ # ping
2+
3+ > Send ICMP ECHO_REQUEST packets to network hosts.
4+ > Unlike Unix-like systems, Windows ` ping ` sends only 4 packets by default.
5+ > More information: < https://learn.microsoft.com/windows-server/administration/windows-commands/ping > .
6+
7+ - Ping a host 4 times:
8+
9+ ` ping {{host}} `
10+
11+ - Ping a host a specific number of times:
12+
13+ ` ping -n {{count}} {{host}} `
14+
15+ - Ping a host continuously (until stopped with ` <Ctrl c> ` ):
16+
17+ ` ping -t {{host}} `
18+
19+ - Set the timeout in milliseconds to wait for each reply:
20+
21+ ` ping -w {{milliseconds}} {{host}} `
22+
23+ - Set the buffer size of the ping packet in bytes:
24+
25+ ` ping -l {{bytes}} {{host}} `
26+
27+ - Ping a host using a specific source IP address:
28+
29+ ` ping -S {{source_ip}} {{host}} `
30+
31+ - Resolve address to hostname:
32+
33+ ` ping -a {{host}} `
You can’t perform that action at this time.
0 commit comments