corz.org uses cookies to remember that you've seen this notice explaining that corz.org uses cookies, okay!
require '/var/ipcop/general-functions.pl';
require "${General::swroot}/header.pl";
&Header::showhttpheaders();
print "<html><head><title>Previous External IP</title><body>";
if (open(FILE, "/var/ipcop/red/last-ipaddress")) {
my $lastip = join("", <FILE>);
close FILE;
print "Previous IP:<br />\n";
print $lastip;
} else {
print "no previous ip address record exists<br />\n";
}
print "</body></html>";