Hi,
I'm newbie in OpenWiSP. After following some guides (how to install OpenWiSP on Raspberry Pi 3 and install Openwisp-config on OpenWRT devices), now my OpenWRT devices are totally controlled by Raspberry.
After that, I started to configure wireless access point on my OpenWRT. Everything seemed to be OK (I could receive my Wifi Signal). But when I connected to this Wifi, I couldn't receive IP Address. Looking at interface I had created, I figured that it didn't configure DHCP Server on this interface (that's why I coudn't receive IP Address).
And how can I configure this section on OpenWiSP, or I must create it directly on OpenWRT devices?
Thanks in advance!
If you need to provide more information, please let me know.
Here's some pictures and my template configuration:



package network
config interface 'wlan0'
option ifname 'wlan0'
option proto 'none'
config interface 'wlan0'
option ifname 'wlan0 eth1.1'
option ipaddr '10.0.0.1'
option netmask '255.192.0.0'
option proto 'static'
option type 'bridge'
package wireless
config wifi-device 'radio0'
option channel '11'
option country 'VN'
option disabled '0'
option htmode 'HT20'
option hwmode '11g'
option txpower '18'
option type 'mac80211'
config wifi-iface 'wifi_wlan0'
option device 'radio0'
option encryption 'psk2+tkip+ccmp'
option ifname 'wlan0'
option isolate '1'
option key 'a1b22c333'
option mode 'ap'
option ssid 'OpenWiSP'