As we know vyos 1.4 merge iptables to nftables, then ipset command is not working anymore.
Is there any way to implement shell script loading CIDR on VyOS 1.4?
#implement with ipset set firewall group network-group us-ip-ranges # cat /config/scripts/vyos-postconfig-bootup.script for l in `cat /config/usipranges.txt`; do sudo ipset add us-ip-ranges $l;done