On Mon, Jul 15, 2019 at 11:05:01AM -0400, Charles Eidsness wrote: > Hi All, > > Using version 0.9.1 of nft when I try to add a jump rule with no > matching criteria I get an error, ie.: > > nft add rule ip testD test6 jump test8 > > Returns: > > Error: invalid verdict chain expression value > > add rule ip testD test6 jump test8 > ^^^^^^^^^^ Are these the steps to reproduce this? nft add table testD nft add chain testD test6 nft add chain testD test8 nft add rule ip testD test6 jump test8 It's working fine with nftables git HEAD (git.netfilter.org/nftables). Thanks.