ポイントは 「IP検出」と「オフライン」。
checkip.dyndns.org は遅いし、繰り返しも蹴られるので、レンサバにデッドコピーの cgi を設置しました。
これ↓
#!/usr/bin/perl
$ip = $ENV{'REMOTE_ADDR'};
print "Content-type: text/html\n";
print "\n";
print "<html><head><title>Current IP Check</title></head><body>Current IP Address: ";
print "$ip";
print "</body></html>";