9 lines
297 B
Bash
Executable File
9 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
# Run a variety of tests against well-known sites to determine if there are
|
|
# any outbound routing issues.
|
|
for HOST in google.com facebook.com msn.com akamai.com opendns.com; do
|
|
echo Testing to $HOST...
|
|
ping -q -A -c 100 $HOST
|
|
mtr --report --report-wide -c 100 $HOST
|
|
done
|