#!/bin/sh echo HTTP/1.0 200 OK echo Content-type: text/plain echo TRACEROUTE=/usr/sbin/traceroute if [ -x $TRACEROUTE ]; then echo This shows how packets from HotDog.org are getting to you. echo echo Start. $TRACEROUTE "$REMOTE_ADDR" echo End. else echo Cannot find traceroute. Please contact webmaster@xdslresource.com fi --- end ---