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