Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
87dd103a
Commit
87dd103a
authored
Sep 15, 2011
by
xaver
Browse files
Fix #1746 - ipv6 added into monitor frontend
parent
6ad46ab9
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/lib/classes/monitor_tools.inc.php
View file @
87dd103a
...
...
@@ -1204,7 +1204,23 @@ class monitor_tools {
system
(
'which iptables'
,
$retval
);
// Debian, Ubuntu, Fedora
if
(
$retval
===
0
)
{
/* Get the data of the log */
$data
[
'output'
]
=
shell_exec
(
'iptables -S'
);
$data
[
'output'
]
=
'<h2>iptables -S (ipv4)</h2>'
.
shell_exec
(
'iptables -S'
);
/*
* At this moment, there is no state (maybe later)
*/
$state
=
'no_state'
;
}
else
{
$state
=
'no_state'
;
$data
=
''
;
}
/* This monitoring is only available if fail2ban is installed */
system
(
'which ip6tables'
,
$retval
);
// Debian, Ubuntu, Fedora
if
(
$retval
===
0
)
{
/* Get the data of the log */
$data
[
'output'
]
.
=
'<br><h2>ip6tables -S (ipv6)</h2>'
.
shell_exec
(
'ip6tables -S'
);
/*
* At this moment, there is no state (maybe later)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment