logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

UCI - Manage OpenWrt Configuration | Online Free DevTools by Hexmos

Manage OpenWrt configuration files with UCI. Configure network settings, system parameters, and application configurations using command line. Free online tool, no registration required.

uci

Manage OpenWrt configuration files. More information: https://openwrt.org/docs/techref/uci.

  • Fetch a value:

uci get {{network.lan.ipaddr}}

  • List all options and their values:

uci show {{network}}

  • Set a value:

uci set {{config}}.{{section}}.{{option}}={{value}}

  • Add a new section:

uci add {{config}} {{section}}

  • Delete a section or value:

uci delete {{config}}.{{section}}.{{option}}

  • Commit changes:

uci commit {{config}}

  • Discard uncommitted changes:

uci revert {{config}}

  • Display help:

uci

See Also