why

  • use cheap routers

what to do

  • once a day every fine fonero sends his registered fon-router's mac-address to fon server

script

  • name it /etc/init.d/S98fonhack or something like....
#!/bin/sh
URL="http://download.fon.com/heartbeat.php"
MAC="$(nvram get il0macaddr|sed s/:/-/g)"
while true;do wget -O /dev/null "$URL?mac=$MAC";sleep 20000;done &