Dear all,
由於產品需要RED認證,第三方認證單位提出資安問題.原本我們使用的wifi driver版本為2.4.2.0,在經過對方full port scan後並未發現有任何問題.後續由於連線品質不佳,升版至4.1.1.0.結果被驗出會隨機開啓一個UDP port(50000~65535之間),長時間放置後會關閉,再開啓下一個port.想了解是什麼原因需要自動開啓這個範圍內的port?機器在測試過程中,只有wifi連線(沒有開啓任何的app).
對方的測試環境如下.
Internet <==> Router + HUB <= air connect => DUT ...
Search found 21 matches
- Fri Mar 27, 2026 2:23 am
- Forum: ESP-AT 中文讨论版
- Topic: ESP32-C3 version4.1.1.0(資安問題)
- Replies: 1
- Views: 68
- Thu Oct 10, 2024 1:22 am
- Forum: ESP-AT 中文讨论版
- Topic: AT+HTTPCPOST 指令於請求上傳180k檔案時回傳 ERROR
- Replies: 3
- Views: 15367
Re: AT+HTTPCPOST 指令於請求上傳180k檔案時回傳 ERROR
謝謝您的回應,使用手冊上只有說有限制命令長度 並未提到內文長度也有限制, 感謝您的說明
- Fri Sep 27, 2024 1:14 pm
- Forum: ESP-AT
- Topic: AT+HTTPCPOST get ERROR when transmit 180k file size
- Replies: 1
- Views: 4579
AT+HTTPCPOST get ERROR when transmit 180k file size
Hi All:
I got ERROR response when I sent a command to ESP32C3 AT module as below
AT+HTTPCPOST=https://www.xxxx.xxxx/projects/xxxxx/upload_file.php, 184527,2,"Content-Type:multipart/form-data; boundary=\"||==ThE bOuNdArY==||\"","MIME-Version: 1.0"
I want to send a post with 184527 bytes data size ...
I got ERROR response when I sent a command to ESP32C3 AT module as below
AT+HTTPCPOST=https://www.xxxx.xxxx/projects/xxxxx/upload_file.php, 184527,2,"Content-Type:multipart/form-data; boundary=\"||==ThE bOuNdArY==||\"","MIME-Version: 1.0"
I want to send a post with 184527 bytes data size ...
- Fri Sep 27, 2024 1:04 pm
- Forum: ESP-AT 中文讨论版
- Topic: AT+HTTPCPOST 指令於請求上傳180k檔案時回傳 ERROR
- Replies: 3
- Views: 15367
AT+HTTPCPOST 指令於請求上傳180k檔案時回傳 ERROR
Hi 官方/各位先進:
您好, 最近我遇到一個AT+HTTPCPOST command 的問題
我發送以下的命令, 待發送長度為184527 bytes的一個post
AT+HTTPCPOST=https://www.xxxx.xxxx/projects/xxxxx/upload_file.php, 184527,2,"Content-Type:multipart/form-data; boundary=\"||==ThE bOuNdArY==||\"","MIME-Version: 1.0"
ESP32C3 module 回傳了ERROR , 而如果長度大約在110k bytes ...
您好, 最近我遇到一個AT+HTTPCPOST command 的問題
我發送以下的命令, 待發送長度為184527 bytes的一個post
AT+HTTPCPOST=https://www.xxxx.xxxx/projects/xxxxx/upload_file.php, 184527,2,"Content-Type:multipart/form-data; boundary=\"||==ThE bOuNdArY==||\"","MIME-Version: 1.0"
ESP32C3 module 回傳了ERROR , 而如果長度大約在110k bytes ...
- Sat Jun 17, 2023 12:21 am
- Forum: ESP-AT 中文讨论版
- Topic: ESP32C3使用httpcpost的request很慢
- Replies: 5
- Views: 12025
Re: ESP32C3使用httpcpost的request很慢
你好ESP_Sun:
我發現我目前使用的韌體版本不是最新的, 我升級到最新的版本, 指令就正常了, 謝謝你.
我發現我目前使用的韌體版本不是最新的, 我升級到最新的版本, 指令就正常了, 謝謝你.
- Sat Jun 17, 2023 12:10 am
- Forum: ESP-AT 中文讨论版
- Topic: ESP32C3使用httpcpost的request很慢
- Replies: 5
- Views: 12025
Re: ESP32C3使用httpcpost的request很慢
你好ESP_Sun:
謝謝你的回答, 我依照你的建議 我改變了指令, C3 開發版回了OK 但是 我看了一下 網路內容, Content-Type 似乎沒有改變.
screen1.png
screen2.png
以下是我用AT+GMR 得到的版本資訊.
AT version:2.2.0.0(90458f0 - ESP32C3 - Jun 18 2021 10:23:57)
SDK version:v4.3-beta3-195-g6be10fa
compile time(c16e015):Jun 18 2021 12:56:35
Bin version:2.2.0(MINI-1 ...
謝謝你的回答, 我依照你的建議 我改變了指令, C3 開發版回了OK 但是 我看了一下 網路內容, Content-Type 似乎沒有改變.
screen1.png
screen2.png
以下是我用AT+GMR 得到的版本資訊.
AT version:2.2.0.0(90458f0 - ESP32C3 - Jun 18 2021 10:23:57)
SDK version:v4.3-beta3-195-g6be10fa
compile time(c16e015):Jun 18 2021 12:56:35
Bin version:2.2.0(MINI-1 ...
- Fri Jun 16, 2023 8:37 am
- Forum: ESP-AT 中文讨论版
- Topic: ESP32C3使用httpcpost的request很慢
- Replies: 5
- Views: 12025
Re: ESP32C3使用httpcpost的request很慢
你好:
想請問multipart/form-data 這個content type 指令該怎麼下.
根據官方說明
AT+HTTPCPOST=<"url">,<length>[,<http_req_header_cnt>][,<http_req_header>..<http_req_header>]
我如果只下
AT+HTTPCPOST="http://192.168.1.38",10
我看到Content-Type: text/xml\r\n
而我如果用下面的方式
AT+HTTPCPOST="http://192.168.1.38",10,1,"multipart/form-data ...
想請問multipart/form-data 這個content type 指令該怎麼下.
根據官方說明
AT+HTTPCPOST=<"url">,<length>[,<http_req_header_cnt>][,<http_req_header>..<http_req_header>]
我如果只下
AT+HTTPCPOST="http://192.168.1.38",10
我看到Content-Type: text/xml\r\n
而我如果用下面的方式
AT+HTTPCPOST="http://192.168.1.38",10,1,"multipart/form-data ...
- Sat Dec 10, 2022 3:09 am
- Forum: ESP-IDF
- Topic: [Solved]How to build "esp-protocols" package for idf v5.0
- Replies: 4
- Views: 4971
Re: How to build "esp-protocols" package for idf v5.0
Dear ESP_Mahavir:
Thanks for advising, finally I built the example successfully.
The steps are as below.
1. Execute Eclipse
2. File->New->Espressif IDF Project to create a empty ESP32 project and name project to mdns
3. At this moment, "Install ESP-IDF components." does not show after the mouse ...
Thanks for advising, finally I built the example successfully.
The steps are as below.
1. Execute Eclipse
2. File->New->Espressif IDF Project to create a empty ESP32 project and name project to mdns
3. At this moment, "Install ESP-IDF components." does not show after the mouse ...
- Wed Dec 07, 2022 9:20 am
- Forum: ESP-IDF
- Topic: [Solved]How to build "esp-protocols" package for idf v5.0
- Replies: 4
- Views: 4971
Re: How to build "esp-protocols" package for idf v5.0
Dear ESP_Mahavir:
Thank you very very much to reply to me, I see the URL your mentioned before I pose this question.
But I'm confused,
For v4.4.3, I can use eclipse (new->New Project->ESP IDF Project->from ESP IDF template) to open a ESP32S3 project, because mdns example already exists in the ...
Thank you very very much to reply to me, I see the URL your mentioned before I pose this question.
But I'm confused,
For v4.4.3, I can use eclipse (new->New Project->ESP IDF Project->from ESP IDF template) to open a ESP32S3 project, because mdns example already exists in the ...
- Tue Dec 06, 2022 12:32 am
- Forum: ESP-IDF
- Topic: [Solved]How to build "esp-protocols" package for idf v5.0
- Replies: 4
- Views: 4971
[Solved]How to build "esp-protocols" package for idf v5.0
Dear Sirs:
The MDNS is isolated for idf v5.0 and hence I downloaded the esp-protocols from https://github.com/espressif/esp-protocols for mdns.
but, I don't know how to correctly use the package, I always get fail when I use eclipse to build it.
Could anyone tell me how to correctly use esp ...
The MDNS is isolated for idf v5.0 and hence I downloaded the esp-protocols from https://github.com/espressif/esp-protocols for mdns.
but, I don't know how to correctly use the package, I always get fail when I use eclipse to build it.
Could anyone tell me how to correctly use esp ...