We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given the minimal example
domain ip6 { table filter { chain INPUT { proto icmpv6 subchain "test" { icmpv6-type echo-request ACCEPT; } } } }
ferm 2.5.1 as well as current git cause ip6tables to fail with unknown option "--icmpv6-type" error. They do generate this command:
unknown option "--icmpv6-type"
/usr/sbin/ip6tables-legacy -t filter -A test --icmpv6-type echo-request --jump ACCEPT
Whereas ferm 2.4 generates the correct command including the needed --protocol icmpv6:
--protocol icmpv6
/sbin/ip6tables -t filter -A test --protocol icmpv6 --icmpv6-type echo-request --jump ACCEPT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the minimal example
ferm 2.5.1 as well as current git cause ip6tables to fail with
unknown option "--icmpv6-type"
error.They do generate this command:
Whereas ferm 2.4 generates the correct command including the needed
--protocol icmpv6
:The text was updated successfully, but these errors were encountered: