-->
Page 12 of 14

Re: WiFi Repeater (aka. WiFI NAT Router) with Monitoring Por

PostPosted: Tue Dec 11, 2018 1:22 pm
by martin_g
WPA2 Enterprise (PEAP) support has now been included into the project. It allows for a "converter" that translates a WPA2 enterprise network with PEAP authentication into a WPA2-PSK network. This solves a common problem especially in university environments: the local WiFi network is a WPA2 Enterprise network with PEAP-MSCHAPv2 authentication. A very prominent example is the "eduroam"-network that is available at many universities around the world. The problem is, that many IoT devices cannot handle WPA2 Enterprise authentication. So development and demos are difficult. What is very helpful is a "converter" that logs into the WPA2 Enterprise network and offers a simpler WPA-PSK network to its clients.

To use it set the following config parameters: ssid, use_peap, peap_identity, peap_username, and peap_password (you don't need the usual password parameter). This configuration has to be done (and saved) via the CLI and is not available in the web interface.

Re: WiFi Repeater (aka. WiFI NAT Router) with Monitoring Por

PostPosted: Tue Jan 01, 2019 8:41 am
by luizcarlos.azevedo94
Hello! Happy new year.

My friend, I was reading your post and would like to know how to do this converter because I have a serious project and I can not connect to the network of my work. Thanks for listening.

Re: WiFi Repeater (aka. WiFI NAT Router) with Monitoring Por

PostPosted: Fri Jan 04, 2019 3:48 am
by martin_g
Flash it and start it. Then use the console interface. This console is available either via the serial port at 115200 baud or via tcp port 7777 (e.g. "telnet 192.168.4.1 7777" from a connected STA).

There you configure:
Code: Select allset ap_ssid your_PSK_ssid
set ap_password your_PSK_password
set use_peap 1
set peap_identity your_id@yourorg.org
set peap_username your_PEAP_username
set peap_password your_PEAP_password
save
reboot

Re: WiFi Repeater (aka. WiFI NAT Router) with Monitoring Por

PostPosted: Fri Jan 04, 2019 10:29 am
by luizcarlos.azevedo94
martin_g wrote:Flash it and start it. Then use the console interface. This console is available either via the serial port at 115200 baud or via tcp port 7777 (e.g. "telnet 192.168.4.1 7777" from a connected STA).

There you configure:
Code: Select allset ap_ssid your_PSK_ssid
set ap_password your_PSK_password
set use_peap 1
set peap_identity your_id@yourorg.org
set peap_username your_PEAP_username
set peap_password your_PEAP_password
save
reboot


Thank you, Martin. I'll do it and give you feedback, I hope it works.