Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
faq:install-licenses-via-usb-stick [2023/09/28 08:09] – [How-to] fachetfaq:install-licenses-via-usb-stick [2023/09/28 18:14] (current) – [How-to] fachet
Line 4: Line 4:
   - Router must be in [[faq:install-licenses-via-usb-stick#reset-router-into-factor-reset-state|factory reset state]] (unconfigured)   - Router must be in [[faq:install-licenses-via-usb-stick#reset-router-into-factor-reset-state|factory reset state]] (unconfigured)
   - Format an USB-Stick FAT16/32   - Format an USB-Stick FAT16/32
-  - Download the [[faq:install-licenses-via-usb-stick#files|files]] autorun.key and autorun.sh and copy both attached files on the stick +  - Download the [[faq:install-licenses-via-usb-stick#files|files]] autorun.key and autorun.sh 
-  - Copy all the license files (00112B*.lic) on the stick. If you got the licenses in an zip archive, unpack before +  - Copy autorun.key and autorun.sh on the stick 
-  - Power on the router and wait until it has booted completely +  - If you got the licenses in an archive, extract the license files 
-  - Plug in the USB stick+  - Copy all the license files (00112B*.lic) on the stick 
 +  - Power on the router and wait until it has booted completely. The STAT LED will turn solid green. 
 +  - Plug in the USB stick and the WLAN1 LED will blink slow green. 
 +  - When the installation starts, all LEDs blink green and it takes some time. 
 + 
 +Finaly LEDs are  
 +  * green: ok 
 +  * yellow: ok, but there was no license change, e.g. installed the same license two times 
 +  * red: something went wrong. (WLAN1 blinking: red = no license file, yellow = license file corrupt) 
 +   
  
-AN LED will first blink fast red, the fast yellow. 
-If successful the LEDs will be solid green, otherwise red. 
  
 ===== Files ===== ===== Files =====
 <code c autorun.key> <code c autorun.key>
-$1$LVOmS4hg$h3X0lt8xMrlElRyqXODLC/ 
-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 
-0876dfca6d6fedf99b2ab87b6e2fed4bd4051ede78a8a9135b500b2e94d99b88 
-d6414f06abe9d25df078def16971fc48a0c18fb5da799c141cc8c555683467a7 
-</code> 
-<code c autorun.sh> 
 #!/bin/ash/ #!/bin/ash/
 set -xv set -xv
 echo "SLOW GREEN" > /tmp/status/led-manager/led3 echo "SLOW GREEN" > /tmp/status/led-manager/led3
 +sleep 3
  
-eval $(/usr/local/sbin/cli status -s )+/usr/local/sbin/cli status -s | grep FEATURE_ > /tmp/license.txt
  
-sleep 3+eval $(/usr/local/sbin/cli status -s | grep SERIAL_NUMBER)
 cp /mnt/media/autorun/$SERIAL_NUMBER\.lic /tmp/ || echo "FAST RED" > /tmp/status/led-manager/led3  cp /mnt/media/autorun/$SERIAL_NUMBER\.lic /tmp/ || echo "FAST RED" > /tmp/status/led-manager/led3 
-cli update license file:///tmp/$SERIAL_NUMBER\.lic  ||  echo "FAST YELLOW" > /tmp/status/led-manager/led3 +sleep 3
-sleep +
- +
-eval $(/usr/local/sbin/cli status -s )+
  
-if [ "$FEATURE_WLAN" != licensed ]; then +if cli update license file:///tmp/$SERIAL_NUMBER\.lic; then 
-    for i in $(ls /sys/class/leds/*green/brightness); do echo 1 > $i; done+ sleep 5 
 + /usr/local/sbin/cli status -s | grep FEATURE_ > /tmp/license_new.txt 
 + for i in $(ls /sys/class/leds/*green/brightness); do echo 1 > $i; done 
 + if cmp -s /tmp/license.txt /tmp/license_new.txt; then 
 + for i in $(ls /sys/class/leds/*red/brightness); do echo 1 > $i; done 
 + fi
 else else
- for i in $(ls /sys/class/leds/*red/brightness); do echo 1 > $i; done+ sleep 5 
 +   for i in $(ls /sys/class/leds/*red/brightness); do echo 1 > $i; done
 fi fi
 +rm /tmp/license.txt license_new.txt /tmp/license_new.txt /tmp/$SERIAL_NUMBER\.lic
 </code> </code>