Question luci-app-nft-qos

I have installed the following software packages

opkg list-installed | grep nft-qos
luci-app-nft-qos - git-23.208.55544-596088f
nft-qos - 1.0.6-4

if I run the following command I get

/etc/init.d/nft-qos status
active with no instances

I would like to try leaving the configuration unchanged and stopping the service

/etc/init.d/nft-qos stop
/etc/init.d/nft-qos status
inactive

but this command doesn't take me back to the starting situation, it's as if the service is still active (I check with a speed test) and it seems to me that the clients are still being limited?

config file:

cat /etc/config/nft-qos 

config default 'default'
        option limit_enable '1'
        option limit_mac_enable '0'
        option priority_enable '0'
        option limit_type 'static'
        option static_rate_dl '0'
        option static_unit_dl 'kbytes'
        option static_rate_ul '0'
        option static_unit_ul 'kbytes'

config download
        option hostname 'guest'
        option rate '1500'
        option unit 'kbytes'
        option ipaddr '192.168.40.0/24'

config upload
        option hostname 'guest'
        option rate '420'
        option unit 'kbytes'
        option ipaddr '192.168.40.0/24'

I noticed that after stopping the service, the limitations with the command are still present

/etc/init.d/nft-qos stop

nft list ruleset

table inet nft-qos-monitor {
        chain upload {
                type filter hook postrouting priority filter; policy accept;
        }

        chain download {
                type filter hook prerouting priority filter; policy accept;
        }
}
table inet nft-qos-static {
        chain upload {
                type filter hook postrouting priority filter; policy accept;
                ip saddr 192.168.40.0/24 limit rate over 420 kbytes/second drop
        }

        chain download {
                type filter hook prerouting priority filter; policy accept;
                ip daddr 192.168.40.0/24 limit rate over 1500 kbytes/second drop
        }

add script for remove rule the deletion of the tables can be inserted when stopping the service:

nft delete table inet nft-qos-monitor &> /dev/null
nft delete table inet nft-qos-static &> /dev/null
nft delete table inet nft-qos-mac &> /dev/null

view: