-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No iptables/ip6tables found at Debian 10 (2021/03/26) #83
Comments
@davidmarquesneves : Adding The
|
And what's the AIF version you're using? I have 2.1.1 running on several Debian 10 without any issues. |
arno-iptables-firewall, version 2.0.3-2, from Debian repos. |
BUT... |
The AIF code should work as-is then, |
Exactly. I'm investigating some about iptables-legacy VS. iptables-nft |
@davidmarquesneves : One data point, my custom Linux distro has:
but we build Possibly you don't have the |
Exactly. After.... ...AND A REBOOT is working fine again with the original environment file. This specific server was installed using Debian 10.5 with iptables-nft (the default for buster) and works out of the box, but after some update the error discussed here appears (10.8 or 10.9, i can't answer..) stops working. A clue: Problem solved, but at this point if the code need to be changed I really cant decide |
In line 75 of "environment" usually at /usr/share/arno-iptables-firewall/ changes from
ipset) path="/usr/sbin/" ;;
to
ipset|iptables|ip6tables) path="/usr/sbin/" ;;
Check whether a certain command is available
check_command()
{
local cmd path IFS
IFS=' '
for cmd in $; do
case "$cmd" in
/) path="" ;;
ip|tc|modprobe|sysctl) path="/sbin/" ;;
sed|cat|date|uname) path="/bin/" ;;
ipset|iptables|ip6tables) path="/usr/sbin/" ;;
*) path="/usr/bin/" ;;
esac
done
return 1
}
The text was updated successfully, but these errors were encountered: