Skip to content
Snippets Groups Projects
Commit 91b186fc authored by Stefan Laudemann's avatar Stefan Laudemann Committed by Stefan Laudemann
Browse files

Adds information about the current IPv6 firewall configuration to the debug-report as well.


Using ip6tables instead of "iptables -6", as the latter is not supported.

Signed-off-by: default avatarStefan Laudemann <thisco@zitmail.uni-paderborn.de>
parent 0ea1fa30
No related branches found
No related tags found
1 merge request!3Include IPv4/6-firewall configurations of a node in ffpb-debug report
......@@ -71,10 +71,14 @@ if oldReport==nil then
debugdata = debugdata .. "---- BEGIN IP AND ROUTUNG INFORMATION ----\n\n"
debugdata = debugdata .. "---- BEGIN FIREWALL INFORMATION ----\n"
debugdata = debugdata .. cmd("iptables -t raw -L -v")
debugdata = debugdata .. cmd("iptables -t filter -L -v")
debugdata = debugdata .. cmd("iptables -t nat -L -v")
debugdata = debugdata .. cmd("iptables -t mangle -L -v")
debugdata = debugdata .. cmd("iptables -t raw -L -v")
debugdata = debugdata .. cmd("iptables -t filter -L -v")
debugdata = debugdata .. cmd("iptables -t nat -L -v")
debugdata = debugdata .. cmd("iptables -t mangle -L -v")
debugdata = debugdata .. cmd("ip6tables -t raw -L -v")
debugdata = debugdata .. cmd("ip6tables -t filter -L -v")
debugdata = debugdata .. cmd("ip6tables -t nat -L -v")
debugdata = debugdata .. cmd("ip6tables -t mangle -L -v")
debugdata = debugdata .. "---- BEGIN FIREWALL INFORMATION ----\n\n"
-- get wireless status
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment