Update Extreme Networks WS-AP3825I - How to flash with OpenWRT

steeb 2024-11-10 19:42:34 -07:00
parent b1e6820dc3
commit 62e5185888

@ -101,6 +101,21 @@ config wifi-iface 'default_radio1'
option mode 'ap'
option ssid 'google how make internet work'
option encryption 'psk2'
option key '<encryption key'
option key '<encryption key>'
```
### Disable DHCP, dnsmasq, and firewall
```
uci set dhcp.lan.ignore=1
uci commit dhcp
service dnsmasq disable
service dnsmasq stop
uci set dhcp.lan.dhcpv6=disabled
uci set dhcp.lan.ra=disabled
uci commit
/etc/init.d/firewall disable
/etc/init.d/firewall stop
/etc/init.d/network reload
```
The final command to reload the network service should be enough, but if it seems like settings are not taking, a reboot would do the trick.