Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

macaron/WAB-I1750-PS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenWrt WAB-I1750-PS

I tried building an OpenWrt firmware for WAB-I1750-PS using GitHub Actions.

Disclaimer

Use at your own risk. I take no responsibility if your device explodes.

Download OpenWrt binary

https://github.com/macaron/WAB-I1750-PS/releases

Build

Quick build (Docker required)

docker run --rm -t -v$(pwd):/openwrt/bin rtlsdr/wab-i1750-ps

Customize config

git clone https://github.com/macaron/WAB-I1750-PS && cd WAB-I1750-PS
docker run --name builder -it rtlsdr/wab-i1750-ps make menuconfig
docker cp builder:/openwrt/.config . && docker rm builder
docker run --rm -t -v$(pwd)/.config:/openwrt/.config -v$(pwd):/openwrt/bin rtlsdr/wab-i1750-ps

Restore official firmware

  • Download latest firmware from elecom support https://www.elecom.co.jp/support/download/network/wireless_lan/ap/wab-i1750-ps/
  • dd if=WAB-I1750-PS-FW-V1-5-10.bin of=WAB-I1750-PS-FW-V1-5-10.bin.enc bs=1 skip=128
  • Run decrypt.py
    • e.g. python3 decrypt.py WAB-I1750-PS-FW-V1-5-10.bin.enc 8844a2d168b45a2d dec.bin
  • Confirm that the firmware is not corrupted using the "file" command.
    • u-boot legacy uImage, Linux Kernel Image, Linux/MIPS, OS Kernel Image (lzma), 6394657 bytes, Mon Dec 28 01:40:56 2020, Load Address: 0X80002000, Entry Point: 0X802C2E90, Header CRC: 0XF8E45FC3, Data CRC: 0X2FDEDA29
  • Upload dec.bin http://192.168.1.1/cgi-bin/luci/admin/system/flash
    • ⚠️ Do not turn off the power while the red LED is blinking.
  • Poweroff
  • Go 192.168.3.1 ID:admin PW:admin, Don't forget change your machine ip address.(In my case, 192.168.3.2/24)

Thanks