#!/bin/sh echo HTTP/1.0 200 OK echo Content-type: text/plain echo PING='/sbin/ping -c 20' if [ -x $TRACEROUTE ]; then echo This sends 20 packets from HotDog.org to your IP. echo echo Start. $PING "$REMOTE_ADDR" echo End. else echo Cannot find traceroute. Please contact alex@hotdog.org fi --- end ---