From 1c4f206b9c9b3a60132100fcbd67e41cd4f330da Mon Sep 17 00:00:00 2001 From: steeb Date: Mon, 4 Nov 2024 19:06:21 -0700 Subject: [PATCH] Update Extreme Networks WS-AP3825I - How to flash with OpenWRT --- ...works WS-AP3825I - How to flash with OpenWRT.-.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Extreme Networks WS-AP3825I - How to flash with OpenWRT.-.md b/Extreme Networks WS-AP3825I - How to flash with OpenWRT.-.md index 1f6c65d..e62042d 100644 --- a/Extreme Networks WS-AP3825I - How to flash with OpenWRT.-.md +++ b/Extreme Networks WS-AP3825I - How to flash with OpenWRT.-.md @@ -14,24 +14,26 @@ sudo picocom -b 115200 /dev/ttyUSB0 2. Once we know that we can see the cable, go ahead and power up the AP and connect the RJ45 end of the serial cable to the Console port (**NOT** LAN2). -3. At this point, the `picocom` terminal should prompt for a login. Use `admin` for the username and `new2day` for the password. +3. Press 'Enter' on your keyboard when the message `Scanning JFFS2 FS: .` comes up to drop into a BOOT mode -4. In a new terminal window, create a temporary directory and move into it with +4. At this point, the `picocom` terminal should prompt for a login. Use `admin` for the username and `new2day` for the password. + +5. In a new terminal window, create a temporary directory and move into it with ``` cd $(mktemp -d) ``` -5. Still in the new terminal window, download the firmware image, +6. Still in the new terminal window, download the firmware image, ``` curl https://downloads.openwrt.org/releases/23.05.5/targets/mpc85xx/p1020/openwrt-23.05.5-mpc85xx-p1020-extreme-networks_ws-ap3825i-initramfs-kernel.bin -o ws-ap3825i-initramfs.bin ``` -6. Finally, in that same new terminal window, start a TFTP server using +7. Finally, in that same new terminal window, start a TFTP server using ``` sudo dnsmasq -d --enable-tftp --port 0 --tftp-root $(pwd) ``` -7. In the original `ttyUSB0` terminal, run the following commands, being sure to enter the correct IP address for the TFTP server (the computer you're using) and the AP. +8. In the original `ttyUSB0` terminal, run the following commands, being sure to enter the correct IP address for the TFTP server (the computer you're using) and the AP. ``` setenv ramboot_openwrt "setenv ipaddr ; setenv serverip ; tftpboot 0x2000000 ws-ap3825i-initramfs.bin; interrupts off; bootm start 0x2000000; bootm loados; fdt resize; fdt boardsetup; fdt resize; fdt boardsetup; fdt chosen; fdt resize; fdt chosen; bootm prep; bootm go;"