#!/usr/local/bin/perl # status.cgi # Show the status require './shorewall-lib.pl'; &ui_print_header(undef, $text{'status_title'}, ""); print "
";
open(STATUS, "$config{'shorewall'} status 2>&1 |");
while() {
	print &html_escape($_);
	}
close(STATUS);
print "
\n"; &ui_print_footer("", $text{'index_return'});