Customer Logo
Warning
- This Router App is intended only for Advantech industrial routers manufactured with firmware version 6.2.0 or later. It is not supported on routers based on the v2 platform.
Customer Logo
The Customer Logo Router App allows you to replace the default router logo in the web interface and change the favicon displayed in the browser's address bar.
Web Interface
The Customer Logo Router App provides a web interface for configuration. To open it, select the Router App name on the Router Apps page in the router's web interface.
The left panel of the Customer Logo Router App web interface contains a menu with the following sections (see the figure below):
- Configuration — includes the Logo and Favicon items.
- Administration — contains only the Return item, which switches from the router app interface back to the main router web interface.
Configuration
Logo
To upload a custom logo to the web interface:
- Click the Choose File button.
- Select a logo file in PNG format (maximum file size: 10 kB).
- Click the Modify button to apply the change.
To return to the router's main web interface, click the Return button.
Tips
Use Ctrl + F5 (or Cmd + Shift + R on macOS) to reload the current page and refresh the browser cache. This ensures that the updated logo is displayed.

Favicon
To upload a custom favicon to the web interface:
- Click the Choose File button.
- Select a favicon file in ICO format (maximum file size: 10 kB).
- Click the Modify button to apply the change.
To return to the router's main web interface, click the Return button.
Tips
Use Ctrl + F5 (or Cmd + Shift + R on macOS) to reload the current page and refresh the browser cache. This ensures that the updated favicon is displayed.

Insert Your Own Logo/Favicon into the Installation File
This procedure modifies the installation package so that future installations of the Customer Logo Router App automatically include your custom logo and/or favicon.
Generating a Custom Customer Logo Router App Package
Upload your logo and/or favicon using the procedure described above.
Open a command-line interface (CLI) or terminal application on your computer.
Enter the following command and press Enter:
ssh root@192.168.1.1If you have changed the router's local IP address, modify the command accordingly.
When prompted, enter the root password and press Enter.
Paste and execute the script corresponding to your router platform (see below).
Download the updated installation package from the router.
Script for v2i routers:
cp -r /opt/customerlogo /tmp/customerlogo
rm -f /tmp/customerlogo/backup/*
mv /tmp/customerlogo/etc/settings /tmp/customerlogo/etc/defaults
cd /tmp
tar -czvf customerlogo.v2i.tgz customerlogo/
ln -s /tmp/customerlogo.v2i.tgz /opt/customerlogo/www/customerlogo.v2i.tgzScript for v3 routers:
cp -r /opt/customerlogo /tmp/customerlogo
rm -f /tmp/customerlogo/backup/*
mv /tmp/customerlogo/etc/settings /tmp/customerlogo/etc/defaults
cd /tmp
tar -czvf customerlogo.v3.tgz customerlogo/
ln -s /tmp/customerlogo.v3.tgz /opt/customerlogo/www/customerlogo.v3.tgzScript for v4 routers:
cp -r /opt/customerlogo /tmp/customerlogo
rm -f /tmp/customerlogo/backup/*
mv /tmp/customerlogo/etc/settings /tmp/customerlogo/etc/defaults
cd /tmp
tar -czvf customerlogo.v4.tgz customerlogo/
ln -s /tmp/customerlogo.v4.tgz /opt/customerlogo/www/customerlogo.v4.tgzScript for v4i routers:
cp -r /opt/customerlogo /tmp/customerlogo
rm -f /tmp/customerlogo/backup/*
mv /tmp/customerlogo/etc/settings /tmp/customerlogo/etc/defaults
cd /tmp
tar -czvf customerlogo.v4i.tgz customerlogo/
ln -s /tmp/customerlogo.v4i.tgz /opt/customerlogo/www/customerlogo.v4i.tgz