This commit is contained in:
Joey Hafner 2022-08-01 23:07:24 -07:00
parent aa18cebc7b
commit 4532368ce1
2 changed files with 10 additions and 1 deletions

View File

@ -503,4 +503,8 @@ giphy.com
howstuffworks.com howstuffworks.com
scholastic.com scholastic.com
com.com com.com
``` ```
1. Determine which domains respond to a ping at all. It's possible that some of these randomly drop 4 pings, but that will be a small number. Do accomplish this, we'll ping each host 4 times and we send the output to ping.log.
`for domain in $(cat domains.txt); do ping -c 4 $domain >> ping.log 2>&1; done`
This gives us [attach/ping.log](attach/ping.log)

5
docs/attach/ping.log Normal file
View File

@ -0,0 +1,5 @@
PING com.com (54.219.18.140) 56(84) bytes of data.
--- com.com ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3065ms