Some of Custom Openwrt Firmware has modified Openwrt Logo on luci header. And its getting value from OpenWRT Hostname such as OpenWRT shipped on custom BOLT BL201. If you want to modify its name here steps.
To change the hostname in OpenWRT, you can follow these steps:
-
SSH into your OpenWRT router: Use an SSH client to connect to your router. Replace
your_old_hostnamewith your current hostname, andyour_new_hostnamewith the new one.ssh root@your_old_hostname.local -
Change the Hostname: Once you're logged in, you can change the hostname using the
ucicommand. Replaceyour_new_hostnamewith your desired new hostname:uci set system.@system[0].hostname=your_new_hostname -
Commit the Changes: Apply the changes to the OpenWRT configuration:
uci commit system -
Restart the Device: You need to reboot your router to apply the new hostname. You can do this with the following command:
reboot
After the reboot, your OpenWRT router should have the new hostname you specified. You can use the new hostname to access your router via SSH or other services.