Update Extreme Networks WS-AP3825I - How to flash with OpenWRT
parent
c655902f89
commit
1c4f206b9c
@ -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).
|
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
|
||||||
```<sh>
|
```<sh>
|
||||||
cd $(mktemp -d)
|
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
|
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)
|
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 <server_ip>; setenv serverip <access_point_ip>; 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;"
|
setenv ramboot_openwrt "setenv ipaddr <server_ip>; setenv serverip <access_point_ip>; 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;"
|
||||||
|
Loading…
Reference in New Issue
Block a user