mirror of
https://framagit.org/bortzmeyer/echoping
synced 2024-11-10 19:10:34 +00:00
16 lines
405 B
Bash
Executable File
16 lines
405 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# $Id$
|
|
|
|
echo ""
|
|
echo "A message such as 'connection refused' is not always an error"
|
|
echo " you may not have an appropriate server."
|
|
echo " UDP tests can also fail with a timeout if you do not have the server."
|
|
|
|
./echoping localhost
|
|
./echoping -u localhost
|
|
./echoping -d localhost
|
|
./echoping -d -u localhost
|
|
#./echoping -c localhost # chargen is too often unavailable
|
|
./echoping -h / localhost
|