netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* nftables bug?? Maybe
@ 2020-09-29  8:14 Evgeniy Yakubov
  0 siblings, 0 replies; only message in thread
From: Evgeniy Yakubov @ 2020-09-29  8:14 UTC (permalink / raw)
  To: netfilter-devel

Hello, Netfilter-devel.


I tried to make autoload rules to nftables.

First, I created file with set of ipv4 addresses and apply it:

yacudzer@adm-ovpn-03:/etc/nftables$ cat OpenVPN_set_PRD-RMQ-star.nft
table ip filter {
    set OpenVPN_set_PRD-RMQ-star {
        type ipv4_addr
        elements = {
                    10.22.0.62,                   10.22.0.93,                   10.22.0.95
        }
    }
}
yacudzer@adm-ovpn-03:/etc/nftables$ sudo nft -f OpenVPN_set_PRD-RMQ-star.nft


Then, I created file with applying this set:
yacudzer@adm-ovpn-03:/etc/nftables$ cat ovpn-RabbitMQ.nft
add chain filter OpenVPN-RabbitMQ
flush chain filter OpenVPN-RabbitMQ

table ip filter {
    set OpenVPN_set_PRD-RMQ-star {
        type ipv4_addr
        elements = {
                    10.22.0.62,                   10.22.0.93,                   10.22.0.95
        }
    }
        chain OpenVPN-RabbitMQ {
                ip daddr @OpenVPN_set_PRD-RMQ-star accept
                return
        }
}

And when I tried to apply it, I see this error message:
yacudzer@adm-ovpn-03:/etc/nftables$ sudo nft -f ovpn-RabbitMQ.nft
ovpn-RabbitMQ.nft:6:26-50: Error: Set 'OpenVPN_set_PRD-RMQ-star' does not exist
                ip daddr @OpenVPN_set_PRD-RMQ-star accept
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^

If I place set rule in same file - everything OK:

yacudzer@adm-ovpn-03:/etc/nftables$ cat ovpn-RabbitMQ.nft
add chain filter OpenVPN-RabbitMQ
flush chain filter OpenVPN-RabbitMQ

table ip filter {
    set OpenVPN_set_PRD-RMQ-star {
        type ipv4_addr
        elements = {
                    10.22.0.62,                   10.22.0.93,                   10.22.0.95
        }
    }
        chain OpenVPN-RabbitMQ {
                ip daddr @OpenVPN_set_PRD-RMQ-star accept
                return
        }
}
yacudzer@adm-ovpn-03:/etc/nftables$ sudo nft -f ovpn-RabbitMQ.nft


But error only when set and rule in different files.
I think that it a bug.

I tried versions 0.9.0 (in debian repo) and 0.9.6 (compiled manually).

-- 
С уважением,
 Evgeniy                          mailto:yacudzer@mail.ru


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-09-29  8:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29  8:14 nftables bug?? Maybe Evgeniy Yakubov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).