Displaying 1 result from an estimated 1 matches for "prerouting_pre_nat".
2023 Apr 07
3
[Bug 1671] New: Implicit chains and nesting result in parser_bison.y aborting
...ate->scopes) - 1' failed.
Aborted
# nft -c -f without-nest.nft
# exit
exit
Expected behavior:
* Nested, implicit chains could be used
* Any errors would be identified in the "source" (rather than process abort)
---
$ cat nested-chain-failure.nft
table inet global {
chain prerouting_pre_nat {
type filter hook prerouting priority mangle - 1; policy accept
iifname eth0 jump {
ip version 4 jump {
ip version 4 accept
}
}
}
}
$ cat without-nest.nft
table inet global {
chain prerouting_pre_nat {
type filter hook prerouting prior...