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