diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-11-23 18:54:41 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-11-23 18:54:41 -0500 |
commit | 7fd51c68208565bb775dad5b41582dcc3cec4357 (patch) | |
tree | b7af4c8829da027d70916f14916d637db47a9360 /usr/local/www | |
parent | 79992f17be39f9a595c6b3a7e519c3fbe1f00934 (diff) | |
download | pfsense-7fd51c68208565bb775dad5b41582dcc3cec4357.zip pfsense-7fd51c68208565bb775dad5b41582dcc3cec4357.tar.gz |
Add st and si options
Diffstat (limited to 'usr/local/www')
-rw-r--r-- | usr/local/www/diag_pf_info.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr/local/www/diag_pf_info.php b/usr/local/www/diag_pf_info.php index 536a8ae..633cd1e 100644 --- a/usr/local/www/diag_pf_info.php +++ b/usr/local/www/diag_pf_info.php @@ -48,6 +48,10 @@ $pgtitle = gettext("Diagnostics: pfInfo"); if($_REQUEST['getactivity']) { $text = `/sbin/pfctl -vvsi`; $text .= "<p/>"; + $text .= `/sbin/pfctl -vvsm`; + $text .= "<p/>"; + $text .= `/sbin/pfctl -vvst`; + $text .= "<p/>"; $text .= `/sbin/pfctl -vvsI`; echo $text; exit; |