#
# The XMP tag embedded inside of this text is there to keep the browser
# from attempting to display the HTML tags embedded within the PERL code
#!/usr/bin/perl -wT
use strict;
use CGI qw(:standard);
use CGI::Carp qw(warningsToBrowser fatalsToBrowser);
print header;
print start_html("Environment");
print "";
print "Dynamic DNS Server Identifier
";
# The original listing which provides a complete list of the Environment Variables
# foreach my $key (sort(keys(%ENV))) {
# print "$key = $ENV{$key}
\n";
# }
print "REMOTE_ADDR = $ENV{REMOTE_ADDR}
\n";
print "";
print end_html;