LEDE on Netgear EX3700 (ramips MT7620)

Hello,

I have successful installing LEDE on Netgear EX3700. Last time I am using LEDE on GL.Inet AR150. AR150 has 2 ethernet but EX3700 just 1 ethernet..

On AR 150 I got LAN and WAN

config interface 'lan'
    	option type 'bridge'
    	option ifname 'eth1'
    	option proto 'static'
    	option ipaddr '192.168.8.1'
    	option netmask '255.255.255.0'

    config interface 'wan'
    	option ifname 'eth0'
    	option _orig_ifname 'eth0'
    	option _orig_bridge 'false'
    	option proto 'static'
    	option ipaddr '192.168.10.5'
    	option netmask '255.255.255.0'

With this setting any devices connected using wireless will got IP 192.168.8.x, because dhcp running on lan

But on EX3700, I just got lan without wan...static IP on lan and dhcp running on lan. When any devices connected using wireless every devices got DHCP IP from my modem, not from dhcp lan. Devices IP 192.168.10.x

Is there any solution to make configuration like AR150 working on EX3700. Ethernet using 192.168.10.1 and all devices connected using wireless will got IP 192.168.8.x (DHCP from EX3700 not from modem).

Thank you.

I just got solution by myself

config interface 'lan'
	option type 'bridge'
	option ifname 'wlan0'
	option proto 'static'
	option ipaddr '192.168.8.1'
	option netmask '255.255.255.0'

config interface 'wan'
	option ifname 'eth0'
	option proto 'dhcp'

And then using luci on Network - Interface - LAN - DHCP Server - Advanced Setting - check "Force DHCP on this network even if another server is detected"

With this, WAN get IP from ISP router (modem) and wireless devices connected to my EX3700 got IP from LAN DHCP.

But performance really bad, I barely got 39Mbps by my laptop and android device cannot connect at all. If connected suddenly wifi not responding at all until I turn off my EX3700.

I don't know if this issue because of these bug:

  1. mt7620 abysmal wifi performance
  2. mt7620 - dropping frames (WiFi)

I hope developers from LEDE and Openwrt can fix these bug, because from those report all MT7620 devices affected

Thank you & Sorry for my English