OpenWrt software offloading configuration

Hi,
If I want to enable openwrt software offloading, how to configure it?
any suggestion?

Thanks

1 Like

And over ssh, this can be done via uci:

# for software offload
uci set firewall.@defaults[0].flow_offloading='1'

# for hardware offload
uci set firewall.@defaults[0].flow_offloading_hw='1'

# save settings
uci commit

# restart firewall to apply these settings
/etc/init.d/firewall restart

If you changed much stuff, just search for any uci property using the following:

uci show $SECTION

# example for firewall
uci show firewall

or even simpler, without narrowing down to sections:

uci show | grep -i 'search_term'

# example
uci show | grep -i 'offload'
1 Like