Yes, it is possible. I´ve stup a new page just for AMPRnet status on some of our nodes. You´ll need to be familiar with Perl to do this.
The files are located in /www/cgi-bin
First edit the perlfunc.pm to add a reference to your new page, like this (ampr is what I added):
my @pages = qw(status setup ports ampr admin);
my %titles = (status => "Node Status", setup => "Basic Setup",
ports => "Port Forwarding, DHCP, and Services",
ampr => "AMPRnet",
admin => "Administration"); Then you must add a new file in the same folder named (in my case ampr) corresponding to what you added in perlfunc.pm
Look at the securityflags of the other perlfiles and chmod your own the same way.
Then you´ll have to edit your new file and start with the following section:
#!/usr/bin/perl
$debug = 0;
use perlfunc;
Happy editing !!! |