Skip to content

Instantly share code, notes, and snippets.

@jjzazuet
Last active June 22, 2022 01:25
Show Gist options
  • Save jjzazuet/df8cfd6957fa2629a25d6511ada33472 to your computer and use it in GitHub Desktop.
Save jjzazuet/df8cfd6957fa2629a25d6511ada33472 to your computer and use it in GitHub Desktop.
AP205 Instant Firmware upgrade

Download FW package and start TFTP server. I used uftpd on Debian.

Generate CCODE using AP's serial number:

echo -n "<CC>-<SN>" | sha1sum | tr -d " -"

Concatenate the resulting string with the following format:

CCODE-<CC>-<SHA1SUM_CODE>

Connect to and Stop AP boot sequence with console cable:

sudo screen /dev/ttyUSB0 9600

Stamp CCODE onto the AP:

proginv system ccode <C_CODE>

Bring network up, set TFTP server address, and upgrade OS image on partitions 0 and 1

dhcp
setenv serverip <TFTP_IP>
upgrade os 0 ArubaInstant_Taurus_6.5.4.16_74160
upgrade os 1 ArubaInstant_Taurus_6.5.4.16_74160

Factory reset and reboot:

factory_reset
saveenv
reset

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment