Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

WiFiManager works only on port 80 #75

Closed
deanjott opened this issue Dec 1, 2021 · 1 comment
Closed

WiFiManager works only on port 80 #75

deanjott opened this issue Dec 1, 2021 · 1 comment

Comments

@deanjott
Copy link

deanjott commented Dec 1, 2021

Symptom:
Taking for example the code in Async_ConfigOnSwitch.ino you will find
#define HTTP_PORT 80
If any port other than 80 is used, the captive portal fails to connect.

Reproduce:
Using the example code, change HTTP_PORT to 81, Activate the captive port by pressing the button. Attempt to connect to http://192.168.4.1:81

Cause:
The code in ESPAsync_WiFiManager-Impl.h has a method "bool ESPAsync_WiFiManager::isIp(String str)" which is called from "bool ESPAsync_WiFiManager::captivePortal(AsyncWebServerRequest *request)" The "isIp" method parses the URL and if anything other than numbers and '.' character are found then the rewrite rule in "captivePortal" will be executed to redirect the request to the captive portal IP address but without the port number because "isIp" returns false while parsing something like "http://192.168.4.1:8080" due to the ':' character.

Suggested Remedy:
The "isIp" method should be adjusted as follows:
Old: if (c != '.' && (c < '0' || c > '9'))
New: if (c != '.' && c != ':' && (c < '0' || c > '9'))

The suggested remedy was tested locally and found to correct the issue.

This issue would exist regardless of platform or version however for the sake of including the required info:
Arduino IDE 1.8.15
ESP32 Core Version ??
OS: Windows 7 Ultimate 64 bit

khoih-prog added a commit that referenced this issue Dec 1, 2021
### Releases v1.9.7

1. Fix bug to permit using HTTP port different from 80. Check [WiFiManager works only on port 80 #75](#75)
@khoih-prog
Copy link
Owner

khoih-prog commented Dec 1, 2021

Hi @deanjott

Thanks for your bug report and the issue has been fixed by ESPAsync_WiFiManager releases v1.9.7 which has just been published.

Your contribution has been noted in Contributions and Thanks


Releases v1.9.7

  1. Fix bug to permit using HTTP port different from 80. Check WiFiManager works only on port 80 #75

PS:

Even this the real bug, the actual problem is a little bit different

  • The Captive Portal always redirects to port 80.
  • When you use different port, e.g. 81, and you specify 192.168.4.1:81, the isIP() detects the invalid IP and initiates the Captive Portal to connect to default port 80 as 192.168.4.1:80. Therefore you can't connect because the HTTP server is actually at port 81.
  • With the fix, whenever you select 192.168.4.1:81, the fixed isIP() sees this is the valid IP, therefore permitting you to connect to 192.168.4.1:81 and you're OK. No Captive Portal is involved.

khoih-prog added a commit to khoih-prog/ESP_WiFiManager that referenced this issue Dec 1, 2021
### Releases v1.7.8

1. To permit using HTTP port different from 80. Check [WiFiManager works only on port 80 #75](khoih-prog/ESPAsync_WiFiManager#75)
2. Fix bug returning IP `255.255.255.255` in core v2.0.0+ when using `hostname`
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants