From 62e5185888cb6a05799e4084168dc2778a622a8e Mon Sep 17 00:00:00 2001 From: steeb Date: Sun, 10 Nov 2024 19:42:34 -0700 Subject: [PATCH] Update Extreme Networks WS-AP3825I - How to flash with OpenWRT --- ... WS-AP3825I - How to flash with OpenWRT.-.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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 dd964b1..60ed2c4 100644 --- a/Extreme Networks WS-AP3825I - How to flash with OpenWRT.-.md +++ b/Extreme Networks WS-AP3825I - How to flash with OpenWRT.-.md @@ -101,6 +101,21 @@ config wifi-iface 'default_radio1' option mode 'ap' option ssid 'google how make internet work' option encryption 'psk2' - option 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. \ No newline at end of file