martin-ger
martin-ger
`set automesh 0` on the cli does the job.
CLI meint command line Interface, also die serielle Konsole oder über Port 7777. Ja, das Programm arbeitet anders. Genau genommen ist es ja gar kein Repeater, sondern ein NAT Router....
Geräte können aus dem ESP-Netz heraus alle Adressen erreichen, nur umgekehrt bräuchte man den Port Forward mit: `portmap add [TCP|UDP] external_port internal_ip internal_port: adds a port forwarding`
`portmap add tcp 8080 10.24.1.2 80` Dann sollte man mit http://192.168.178.142:8080 auf das Gerät zugreifen können.
Currently you cannot disable the DHCP server, but bou are free to choose static IPs in the APs subnet. As the esp_wifi_repeater is in fact a (NAT-)Router, a central DHCP...
If you can compile the sources with the esp-open-sdk, you can simply add a `wifi_softap_dhcps_stop()` after line 3688 in user_main.c. But as said before: you can use static IPs in...
Transparent bridge does not work, sorry.
Don't undertstand the problem: a DNS address is distributed by the AP. It redistributes the DNS it receives from the uplink AP. If none available (yet), it uses Google's 8.8.8.8.
The esp_wifi_repeater is in fact a NAT router as described in the Readme. This means it has two different IP network segments and does routing in between them. A node...
Yes, it should: The esp_wifi_repeater by default distributes the same DNS server to its STA as the one it learned from its uplink AP. Usually standard home routers implement their...