espressif / arduino-esp32

Arduino core for the ESP32
GNU Lesser General Public License v2.1
13.04k stars 7.3k forks source link

WiFi connection unstable after updating to 2.0.X #6654

Open ToMe25 opened 2 years ago

ToMe25 commented 2 years ago

Board

ESP32DevkitCVE/IE

Device Description

The devkit with an external antenna connector(CVIE) an external antenna is connected, in the case of the one with internal antenna nothing is connected besides a PC using an USB-A to USB-Micro-B cable.

Hardware Configuration

Nothing connected.

Version

latest master (checkout manually)

IDE Name

PlatformIO - Eclipse

Operating System

Ubuntu 20.04

Flash frequency

40MHz

PSRAM enabled

no

Upload speed

921600

Description

After updating a sketch from 1.0.6 to 2.0.2 I noticed that the WiFi in STA mode doesn't get an IP until it times out and reconnects. This can already take a few minutes, and is the case even tho the first WiFi method called in that sketch is WiFi.disconnect(true);.

After finally connecting WiFi works for a few minutes, before silently stopping(No log output even with CORE_DEBUG_LEVEL set to 5). After not working for a few minutes it causes a disconnect event, on which my sketch would then reconnect. This actually works, and doesn't take a few minutes.

After some useless debugging I then tried to find a minimal sketch to reproduce this. My end result was pretty much just a web server, but I will post this sketch below.

I then tried the SimpleWiFiServer example. which seems to have the same issues, except it didn't seem to ever reconnect.

Restarting the ESP did not seem to change anything at all.

This might be related to #4980

In the log of my custom sketch below I used a bash script to request the content of the web server every 3 seconds. As far as I know that is the only thing that interacted with the ESP during the time of the test. The log doesn't seem to change much even without the script, however I wanted to know when it stops working. Here the script:

while true
do
    curl -s --connect-timeout 5 http://192.168.2.138/index.html > /dev/null
    if [ $? == 0 ]; then
        echo OK
    else
        echo ERROR
    fi
    sleep 3
done

Sketch

#include <ESPAsyncWebServer.h>

extern const char WIFI_SSID[] = "WIFI_SSID";
extern const char WIFI_PASS[] = "WPA_PASSPHRASE";

uint64_t start = 0;
AsyncWebServer server(80);

void onWiFiGotIp(WiFiEvent_t event, WiFiEventInfo_t eventInfo) {
    Serial.print("IP Address: ");
    Serial.println((IPAddress) eventInfo.got_ip.ip_info.ip.addr);

    Serial.print("WiFi ready after ");
    Serial.print(millis() - start);
    Serial.println("ms.");
}

void onWiFiDisonnected(WiFiEvent_t event) {
    Serial.println("WiFi Disconnected");
    WiFi.disconnect(true);
    delay(100);
    WiFi.begin(WIFI_SSID, WIFI_PASS);
}

void setupWebServer() {
    server.on("/index.html", HTTP_GET, [] (AsyncWebServerRequest *request) {
        request->send(200, "text/plain", "OK");
    });

    server.onNotFound([] (AsyncWebServerRequest *request) {
        request->send(404, "text/plain", "Not Found");
    });

    server.begin();
}

void setup() {
    start = millis();
    Serial.begin(115200);
    Serial.println("setup start");

    WiFi.disconnect(true);
    WiFi.onEvent(onWiFiGotIp, ARDUINO_EVENT_WIFI_STA_GOT_IP);
    WiFi.onEvent(onWiFiDisonnected, ARDUINO_EVENT_WIFI_STA_DISCONNECTED);
    WiFi.begin(WIFI_SSID, WIFI_PASS);

    setupWebServer();
    Serial.println("setup end");
}

void loop() {
    delay(100);
}

Debug Message

SimpleWiFiServer log:

Click here to show

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:12784
load:0x40080400,len:3032
entry 0x400805e4
[     2][V][WiFiServer.h:42] WiFiServer(): WiFiS�␘ƕ��:WiFiServer(port=80, ...)
[     4][D][esp32-hal-cpu.c:214] setCpuFrequencyMhz(): PLL: 480 / 2 = 240 Mhz, APB: 80000000 Hz

Connecting to WLAN-8C1784
[    77][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 0 - WIFI_READY
[   173][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[   172][V][WiFiGeneric.cpp:283] _arduino_event_cb(): STA Started
[   179][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 2 - STA_START
[   231][V][WiFiGeneric.cpp:295] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[   233][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[   258][V][WiFiGeneric.cpp:305] _arduino_event_cb(): STA Got New IP:192.168.2.137
[   259][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 7 - STA_GOT_IP
[   262][D][WiFiGeneric.cpp:914] _eventCallback(): STA IP: 192.168.2.137, MASK: 255.255.255.0, GW: 192.168.2.1
.
WiFi connected.
IP address: 
192.168.2.137
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
New Client.
GET /index.html HTTP/1.1
Host: 192.168.2.137
User-Agent: curl/7.68.0
Accept: */*

Client Disconnected.
[240064][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[240065][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[240072][W][WiFiGeneric.cpp:873] _eventCallback(): Reason: 7 - NOT_ASSOCED
[360065][V][WiFiGeneric.cpp:309] _arduino_event_cb(): STA IP Lost
[360066][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 9 - STA_LOST_IP

Custom Sketch(posted above) Debug Log:

Click here to show

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:12784
load:0x40080400,len:3032
entry 0x400805e4
[␀␘␂␂␂��m␑um����2-hal-cpu.c:214] setCpuFrequencyMhz(): PLL: 480 / 2 = 240 Mhz, APB: 80000000 Hz
setup start
[    65][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 0 - WIFI_READY
[   159][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[   157][V][WiFiGeneric.cpp:283] _arduino_event_cb(): STA Started
[   165][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 2 - STA_START
setup end
[   229][V][WiFiGeneric.cpp:295] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[   231][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[ 75550][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[ 75551][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[ 75558][W][WiFiGeneric.cpp:873] _eventCallback(): Reason: 7 - NOT_ASSOCED
WiFi Disconnected
[ 75576][V][WiFiGeneric.cpp:286] _arduino_event_cb(): STA Stopped
[ 75705][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[ 75703][V][WiFiGeneric.cpp:283] _arduino_event_cb(): STA Started
[ 75721][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 3 - STA_STOP
[ 75721][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 0 - WIFI_READY
[ 75725][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 2 - STA_START
[ 75766][V][WiFiGeneric.cpp:295] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[ 75768][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[ 75850][V][WiFiGeneric.cpp:305] _arduino_event_cb(): STA Got New IP:192.168.2.138
[ 75851][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 7 - STA_GOT_IP
[ 75854][D][WiFiGeneric.cpp:914] _eventCallback(): STA IP: 192.168.2.138, MASK: 255.255.255.0, GW: 192.168.2.1
IP Address: 192.168.2.138
WiFi ready after 75835ms.
[438184][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[438185][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[438192][W][WiFiGeneric.cpp:873] _eventCallback(): Reason: 7 - NOT_ASSOCED
WiFi Disconnected
[438212][V][WiFiGeneric.cpp:286] _arduino_event_cb(): STA Stopped
[438339][V][WiFiGeneric.cpp:283] _arduino_event_cb(): STA Started
[438340][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[438359][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 3 - STA_STOP
[438359][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 0 - WIFI_READY
[438362][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 2 - STA_START
[438419][V][WiFiGeneric.cpp:295] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[438421][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[438448][V][WiFiGeneric.cpp:305] _arduino_event_cb(): STA Got Same IP:192.168.2.138
[438449][D][WiFiGeneric.cpp:852] _eventCallback(): Arduino Event: 7 - STA_GOT_IP
[438452][D][WiFiGeneric.cpp:914] _eventCallback(): STA IP: 192.168.2.138, MASK: 255.255.255.0, GW: 192.168.2.1
IP Address: 192.168.2.138
WiFi ready after 438433ms.

Other Steps to Reproduce

It works correctly with version 1.0.6, if the event names are changed to account for the version change.

I have checked existing issues, online documentation and the Troubleshooting Guide

SuGlider commented 2 years ago

@PilnyTomas, PTAL Could you please check this issue? Thanks.

PilnyTomas commented 2 years ago

Hi, I've tested your sketch on ESP32 with the PCB antenna (I don't have one with the external antenna) I have tested it on 3 versions. Here are my results: 2.0.0 connection time 2 200ms, no errors in the script. 2.0.2 connection time 2 200ms, no errors in the script. 2.0.3 connection time 240ms, no errors in the script. Could you please test your code on a different chip or board with a different antenna?

podaen commented 2 years ago

I don't believe the timeout is really set with those flags in the recv. They need to adapte the LWIP library, so we could make it work. The library just don't wait. So why setting a timeout...

ToMe25 commented 2 years ago

Could you please test your code on a different chip or board with a different antenna?

I tested this with one board with a PCB antenna and one with an external one. As for a different chip, do you mean a different type or just another one of them in case mine was damaged? In the second case, I did that as stated in the original issue.

My hypothesis based on the EMS-ESP32 issue is that I just have a router that is compatible with the old version, but not the new version, however I did not yet test it with a different one. I will, if I don't forget it, test it using a hotspot on my phone later, to confirm whether its the router.

However even if it is something that only occurs with some routers, considering how quickly someone else reported it on the EMS repo I believe its still worth trying to fix it.

me-no-dev commented 2 years ago

However even if it is something that only occurs with some routers, considering how quickly someone else reported it on the EMS repo I believe its still worth trying to fix it.

The ESP-IDF WiFi library comes as a blob to us (both Arduino and ESP-IDF). In order to be able to forward the issue to our radio team, we need first to have a proper information of the reason. Given that we can not reproduce it, chances are that they will not be able either (else they would have not caused a regression). Good luck with testing. See if you can change settings on your router and will they also change the connection time.

ToMe25 commented 2 years ago

See if you can change settings on your router and will they also change the connection time.

Unfortunately it doesn't have that many settings that I could see changing this, thats why I want to try it with different hardware, like a RPi or my phone. Also the issue isn't the connection time, its more how long it takes for it to realize it doesn't have a connection anymore.

I do also intend to test this with the ESP-IDF eventually, but since I don't have an ESP-IDF workspace set up yet, and will probably take a while to get used to it enough to test this, that might be quite a while in the future.

podaen commented 2 years ago

Use a ping, you will see. Its hard to test it. Therefore you need a stream with a high bitrate.

ToMe25 commented 2 years ago

I'm sorry, but I don't quite get what this means.

podaen commented 2 years ago

LWIP... You can't connect to the wifi without it.

ToMe25 commented 2 years ago

I am aware LWIP is used for network stuff internally, however I do not have the knowledge to mess with it, nor much on how it works unfortunately.

podaen commented 2 years ago

Me ether, we have to find someone with a good knowledge of Linux to solve this.

We see some packages come in slow. The source of the issue is still undefined. The problem is that there is no way around with the current version of the LWIP.

ToMe25 commented 2 years ago

Sorry for taking so long, but I finally tested this with a hotspot on my phone. Result is it works as expected. I will try messing with some router settings later today, and hope to find something interesting. I also wanted to test this with a RPi 4 as the AP, however I don't have an empty SD card rn, and the image I have has makes some problems when I try to use it as an AP.

ToMe25 commented 2 years ago

I played around a bit with my router settings, not expecting anything to help since there wasn't a setting that seemed related, and I can no longer reproduce this. I was careful to keep track of all changes I did to be able to undo them, because I wanted to know what caused this. However even after undoing all the changes i can't seem to reproduce this issue anymore, with the same router and ESP32.

I see a decent chance that this issue will just magically re-appear after waiting for a night, like most of my WiFi issues so far, but atm there is nothing I can think of to reproduce this.

The ESP also seems to be fully connected and ready 130-1600ms after startup, which is faster than I can remember it ever being in the past.

ToMe25 commented 2 years ago

I just noticed I didn't make this clear in my last messages: I tested the issue before changing the router settings to make sure it isn't just fixed because of a new framework version, and was able to reproduce the issue. I just can't reproduce it since then. I will try it again tomorrow after everything except the router was shut down for the night, and after another router restart, to see if the issue re-occurs.

me-no-dev commented 2 years ago

Is it possible that you have a small pool of addresses in your router's DHCP config and they get filled by the computers and devices you have at home? One way to check this is if you get it to start failing again to restart the router and if it get's "fixed" for some time, that could be one clue.

ToMe25 commented 2 years ago

The router is set to give out dhcp addresses from 192.168.2.100 to 192.168.2.200, and the highest I can remember seeing was 192.168.2.156 or something similar. And that was months ago, I'm pretty sure before just now it didn't have anything above 142. Also the device list of the router never contains more than 20 devices, so I don't even know how it got to IPs that high.

Another thing is, it didn't work after a restart, it worked after changing the WiFi band. AFAIK neither the router nor the DHCP server restarted during that change, but even after changing that back it stayed fixed.

The router can use b/g, b/g/n, or a/n. Default is b/g/n, changing it to a/n for some reason means n capable devices without a support can't connect anymore. I first changed it to a/n without knowing that, resulting in a lot of devices, including the ESP, no longer being able to connect. After that I first changed it to b/g, then b/g/n, which made everything work again.

ToMe25 commented 2 years ago

I just checked, and the issue is back without me changing anything. I just turned the PC I'm using for ESP programming back on, and thus also the ESP used to test this and everything seems to be back in its old not working state.

SuGlider commented 2 years ago

It seems to be about the DHCP service from the AP Router that may reassign ESP STA IP to some other STA in the network...

Try this:

// call back function when IP is Lost by Station -- needs to reconnect to AP
void WiFiStationLostIP(arduino_event_id_t event)
{
  log_d("Enter into LOST IP Event Call Back...");
  while (! WiFi.reconnect()) {
    log_d("Trying to Reconnect due to STA__LOST_IP...");
    delay(500); // wait a bit for the necessary processing
  }
}

void setup() {
...
  // Set a callback function when the event STA_LOST_IP happens
  WiFi.onEvent(WiFiStationLostIP, ARDUINO_EVENT_WIFI_STA_LOST_IP);
...
}
ToMe25 commented 2 years ago

When I originally tested things for this issue I had a lot of WiFi callbacks that just print debug info, one of them being LOST_IP. As far as I can remember nothing useful came of that one, however I wanted to be sure so I tested it with your exact code.

The test.sh file I am using here is the connection check script I posted in the original issue. After adding your LOST IP callback and reflashing the ESP I tested it again. This time I ran ./test.sh & pio device monitor to get a combined log of the connection status and the ESP log. Here the result:

Click to expand

[1] 3671
--- Available filters and text transformations: colorize, debug, default, direct, esp32_exception_decoder, hexlify, log2file, nocontrol, printable, send_on_enter, time
--- More details at https://bit.ly/pio-monitor-filters
--- Miniterm on /dev/ttyUSB0  115200,8,N,1 ---
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
ERROR
ets Jul 29 2019 12:21:46

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:12784
load:0x40080400,len:3032
entry 0x400805e4
[␀␘␂␂␂��m␑um����2-hal-cpu.c:214] setCpuFrequencyMhz(): PLL: 480 / 2 = 240 Mhz, APB: 80000000 Hz
setup start
[    63][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 0 - WIFI_READY
[   154][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[   152][V][WiFiGeneric.cpp:285] _arduino_event_cb(): STA Started
[   160][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 2 - STA_START
setup end
[   220][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[   222][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[   260][V][WiFiGeneric.cpp:314] _arduino_event_cb(): STA Got New IP:192.168.2.136
[   261][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 7 - STA_GOT_IP
[   264][D][WiFiGeneric.cpp:938] _eventCallback(): STA IP: 192.168.2.136, MASK: 255.255.255.0, GW: 192.168.2.1
IP Address: 192.168.2.136
WiFi ready after 246ms.
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
OK
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
ERROR
[360050][V][WiFiGeneric.cpp:307] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[360050][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[360058][W][WiFiGeneric.cpp:897] _eventCallback(): Reason: 7 - NOT_ASSOCED
WiFi Disconnected
[360077][V][WiFiGeneric.cpp:288] _arduino_event_cb(): STA Stopped
[360205][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[360203][V][WiFiGeneric.cpp:285] _arduino_event_cb(): STA Started
[360224][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 3 - STA_STOP
[360224][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 0 - WIFI_READY
[360227][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 2 - STA_START
[360270][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[360272][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[360304][V][WiFiGeneric.cpp:314] _arduino_event_cb(): STA Got Same IP:192.168.2.136
[360305][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 7 - STA_GOT_IP
[360308][D][WiFiGeneric.cpp:938] _eventCallback(): STA IP: 192.168.2.136, MASK: 255.255.255.0, GW: 192.168.2.1
IP Address: 192.168.2.136
WiFi ready after 360290ms.
OK
OK
OK
OK
OK

--- exit ---

This time the initial connection works instantly, which it usually doesn't, but it still fails after a while without calling LOST IP and then reconnects and works again. Note that while I made sure that the LOST IP callback is registered correctly it is never called.

SuGlider commented 2 years ago

How far is the ESP32 from the AP Router? Could it be some RF failure due to RF noise and then it gets disconnected? Or even an unstable ESP32 power supplier that causes a variation on the RSSI or even to the RF directly?

It seems like the ESP gets "lost in the space" for a while...

SuGlider commented 2 years ago

Is there some sort of keep alive so that the ESP can keep the connection to the AP stable?

Maybe a nice test would be adding a PING call in the sketch loop to check the connection to the AP Router IP address.

ToMe25 commented 2 years ago

How far is the ESP32 from the AP Router?

Roughly 3-4 meters, though there is a ceiling in between.

Could it be some RF failure due to RF noise and then it gets disconnected?

No idea honestly, tho i would hope it would notice that sooner.

Or even an unstable ESP32 power supplier that causes a variation on the RSSI or even to the RF directly?

The power supply used is an USB port of a desktop PC for these tests, which it has to be for me to see the logs. Last time I checked the RSSIs seemed stable, tho that was with 1.0.6. I did have the same issue with the ESP powered by a USB charger rated for 2.4A tho, so I don't think it's lack of power. Also I don't have any WiFi issues with 1.0.6 when powering the ESP the same way using the PC.

Maybe a nice test would be adding a PING call in the sketch loop to check the connection to the AP Router IP address.

I'll try that tomorrow.

SuGlider commented 2 years ago

For Ping you may want to use one of these Libraries: https://github.com/pbecchi/ESP32_ping https://github.com/marian-craciunescu/ESP32Ping

This link has an example: https://techoverflow.net/2021/06/19/how-to-ping-gateway-in-esp32/

ToMe25 commented 2 years ago

I tested this now, and it seems like the times when the ping doesn't work and the times when the web server isn't reachable are the same. It also does seem like both the RSSI and the ping fluctuate, however I don't think its enough to cause a disconnect.

I changed the sketch to this:

Click to show

#include <ESPAsyncWebServer.h>
#include <ESP32Ping.h>

extern const char WIFI_SSID[] = "WIFI_SSID";
extern const char WIFI_PASS[] = "WPA_PASSPHRASE";

uint64_t start = 0;
AsyncWebServer server(80);

void onWiFiGotIp(WiFiEvent_t event, WiFiEventInfo_t eventInfo) {
    Serial.print("IP Address: ");
    Serial.println((IPAddress) eventInfo.got_ip.ip_info.ip.addr);

    Serial.printf("WiFi ready after %llums.\n", millis() - start);
}

void onWiFiDisonnected(WiFiEvent_t event) {
    Serial.println("WiFi Disconnected");
    WiFi.disconnect(true);
    delay(200);
    WiFi.begin(WIFI_SSID, WIFI_PASS);
}

void WiFiStationLostIP(WiFiEvent_t event) {
    Serial.println("Enter into LOST IP Event Call Back...");
    while (!WiFi.reconnect()) {
        Serial.println("Trying to Reconnect due to STA__LOST_IP...");
        delay(500);
    }
}

void setupWebServer() {
    server.on("/index.html", HTTP_GET, [] (AsyncWebServerRequest *request) {
        request->send(200, "text/plain", "OK");
    });

    server.onNotFound([] (AsyncWebServerRequest *request) {
        request->send(404, "text/plain", "Not Found");
    });

    server.begin();
}

void setup() {
    start = millis();
    Serial.begin(115200);
    Serial.println("setup start");

    WiFi.disconnect(true);
    WiFi.onEvent(onWiFiGotIp, ARDUINO_EVENT_WIFI_STA_GOT_IP);
    WiFi.onEvent(onWiFiDisonnected, ARDUINO_EVENT_WIFI_STA_DISCONNECTED);
    WiFi.onEvent(WiFiStationLostIP, ARDUINO_EVENT_WIFI_STA_LOST_IP);
    WiFi.begin(WIFI_SSID, WIFI_PASS);

    setupWebServer();
    Serial.println("setup end");
}

void loop() {
    if(Ping.ping(WiFi.gatewayIP(), 1)) {
        Serial.printf("Ping OK(%.3fms)\n", Ping.averageTime());
    } else {
        Serial.println("Ping Error");
    }
    Serial.printf("WiFi RSSI: %hd\n", WiFi.RSSI());
    delay(3000);
}

For this I also changed test.sh to this:

#!/bin/bash
while true
do
    curl -s --connect-timeout 5 http://$1/index.html > /dev/null
    if [ $? == 0 ]; then
        echo HTTP OK
    else
        echo HTTP ERROR
    fi
    sleep 3
done

With these changes I flashed the ESP again and ran ./test.sh "192.168.2.136" & pio device monitor. This is the resulting log:

Click to expand

[4] 8483
HTTP OK
--- Available filters and text transformations: colorize, debug, default, direct, esp32_exception_decoder, hexlify, log2file, nocontrol, printable, send_on_enter, time
--- More details at https://bit.ly/pio-monitor-filters
--- Miniterm on /dev/ttyUSB0  115200,8,N,1 ---
--- Quit: Ctrl+C | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
ets Jul 29 2019 12:21:46

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:1184
load:0x40078000,len:12784
load:0x40080400,len:3032
entry 0x400805e4
[␀␘␂␂␂��m␑um����2-hal-cpu.c:214] setCpuFrequencyMhz(): PLL: 480 / 2 = 240 Mhz, APB: 80000000 Hz
setup start
[    64][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 0 - WIFI_READY
[   157][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[   155][V][WiFiGeneric.cpp:285] _arduino_event_cb(): STA Started
[   163][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 2 - STA_START
setup end
[   179][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[   228][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[   230][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[  1180][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[  1181][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[  1184][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
[  4207][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[  5208][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[  5209][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[  5212][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
HTTP ERROR
[  8234][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[  9235][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[  9236][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[  9239][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
[ 12261][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 13262][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 13262][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 13266][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -71
HTTP ERROR
[ 16288][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 17289][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 17290][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 17293][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -73
[ 20315][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 21316][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 21316][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 21320][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
HTTP ERROR
[ 24342][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 25342][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 25342][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 25346][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
[ 28368][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 29368][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 29368][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 29372][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
HTTP ERROR
[ 32394][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 33395][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 33396][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 33399][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
[ 36421][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 37422][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 37422][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 37426][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
HTTP ERROR
[ 40448][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 41448][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 41448][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 41452][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
[ 44474][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[ 45474][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 45474][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 45478][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
HTTP ERROR
[ 48500][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 49501][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 49501][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 49505][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
[ 52527][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 53528][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 53528][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 53532][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
HTTP ERROR
[ 56554][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[ 57554][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 57554][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 57558][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -72
[ 60580][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 61581][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 61581][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 61585][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[ 64607][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 65608][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 65608][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 65612][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -69
HTTP ERROR
[ 68634][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 69634][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 69634][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 69638][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -72
[ 72660][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[ 73660][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 73660][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 73664][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
[ 75548][V][WiFiGeneric.cpp:307] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[ 75549][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[ 75556][W][WiFiGeneric.cpp:897] _eventCallback(): Reason: 7 - NOT_ASSOCED
WiFi Disconnected
[ 75575][V][WiFiGeneric.cpp:288] _arduino_event_cb(): STA Stopped
HTTP ERROR
[ 75803][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[ 75802][V][WiFiGeneric.cpp:285] _arduino_event_cb(): STA Started
[ 75819][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 3 - STA_STOP
[ 75819][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 0 - WIFI_READY
[ 75823][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 2 - STA_START
[ 75870][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[ 75872][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[ 76686][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 77688][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 77689][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 77692][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[ 80714][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 81715][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 81715][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 81719][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[ 84741][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[ 85742][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 85742][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 85746][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
[ 88768][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 89768][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 89768][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 89772][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -79
HTTP ERROR
[ 92794][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 93795][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 93795][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 93799][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
HTTP ERROR
[ 96821][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[ 97821][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[ 97821][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[ 97825][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
HTTP ERROR
[100847][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[101847][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[101847][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[101851][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
HTTP ERROR
[104873][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[105873][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[105873][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[105877][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -66
[108899][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[109900][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[109900][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[109904][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
HTTP ERROR
[112926][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[113926][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[113926][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[113930][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
[116952][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[117952][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[117952][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[117956][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -66
HTTP ERROR
[120978][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[121978][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[121978][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[121982][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
[125004][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[126005][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[126005][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[126009][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -80
HTTP ERROR
[129031][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[130031][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[130031][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[130035][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -65
HTTP ERROR
[133057][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[134057][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[134057][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[134061][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
[136051][V][WiFiGeneric.cpp:307] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[136052][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[136059][W][WiFiGeneric.cpp:897] _eventCallback(): Reason: 7 - NOT_ASSOCED
WiFi Disconnected
[136079][V][WiFiGeneric.cpp:288] _arduino_event_cb(): STA Stopped
[136307][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[136306][V][WiFiGeneric.cpp:285] _arduino_event_cb(): STA Started
[136323][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 3 - STA_STOP
[136323][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 0 - WIFI_READY
[136327][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 2 - STA_START
[136422][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[136424][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
HTTP ERROR
[137083][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[138084][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[138085][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[138088][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[141111][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[142112][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[142112][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[142116][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[145138][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[146139][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[146139][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[146143][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[149165][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[150165][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[150165][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[150169][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
[153191][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[154192][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[154192][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[154196][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[157218][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[158218][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[158218][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[158222][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[161244][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[162244][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[162244][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[162248][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[165270][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[166270][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[166270][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[166274][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -73
HTTP ERROR
[169296][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[170297][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[170297][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[170301][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
[173323][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[174323][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[174323][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[174327][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
HTTP ERROR
[177349][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[178350][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[178350][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[178354][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[181376][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[182376][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[182377][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[182380][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[185402][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

HTTP ERROR
[186403][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[186403][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[186407][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -75
[189429][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[190429][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[190429][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[190433][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[193455][I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[194455][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[194455][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[194459][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -75
HTTP ERROR
[196549][V][WiFiGeneric.cpp:307] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[196549][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[196557][W][WiFiGeneric.cpp:897] _eventCallback(): Reason: 7 - NOT_ASSOCED
WiFi Disconnected
[196576][V][WiFiGeneric.cpp:288] _arduino_event_cb(): STA Stopped
[196804][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[196803][V][WiFiGeneric.cpp:285] _arduino_event_cb(): STA Started
[196820][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 3 - STA_STOP
[196820][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 0 - WIFI_READY
[196824][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 2 - STA_START
[196866][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[196868][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[196897][V][WiFiGeneric.cpp:314] _arduino_event_cb(): STA Got New IP:192.168.2.136
[196898][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 7 - STA_GOT_IP
[196901][D][WiFiGeneric.cpp:938] _eventCallback(): STA IP: 192.168.2.136, MASK: 255.255.255.0, GW: 192.168.2.1
IP Address: 192.168.2.136
WiFi ready after 196882ms.
[197481][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[197502][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=16.993 ms

[197503][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[197508][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 16.993/16.993/16.993/0.000 ms

Ping OK(16.993ms)
WiFi RSSI: -63
HTTP OK
[200529][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[200540][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.618 ms

[200541][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[200546][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.618/7.618/7.618/0.000 ms

Ping OK(7.618ms)
WiFi RSSI: -62
HTTP OK
[203567][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[203576][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=5.055 ms

[203577][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[203582][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.055/5.055/5.055/0.000 ms

Ping OK(5.055ms)
WiFi RSSI: -76
HTTP OK
[206603][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[206613][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=6.165 ms

[206614][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[206619][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.165/6.165/6.165/0.000 ms

Ping OK(6.165ms)
WiFi RSSI: -62
HTTP OK
[209640][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[209654][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=10.393 ms

[209655][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[209660][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.393/10.393/10.393/0.000 ms

Ping OK(10.393ms)
WiFi RSSI: -62
HTTP OK
[212681][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[212691][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=6.229 ms

[212692][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[212697][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.229/6.229/6.229/0.000 ms

Ping OK(6.229ms)
WiFi RSSI: -78
HTTP OK
[215718][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[215726][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=4.388 ms

[215727][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[215732][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.388/4.388/4.388/0.000 ms

Ping OK(4.388ms)
WiFi RSSI: -64
HTTP OK
[218753][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[218761][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=4.321 ms

[218762][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[218767][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.321/4.321/4.321/0.000 ms

Ping OK(4.321ms)
WiFi RSSI: -78
HTTP OK
[221789][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[221807][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=14.157 ms

[221808][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[221813][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 14.157/14.157/14.157/0.000 ms

Ping OK(14.157ms)
WiFi RSSI: -64
HTTP OK
[224834][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[224845][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.803 ms

[224846][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[224851][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.803/7.803/7.803/0.000 ms

Ping OK(7.803ms)
WiFi RSSI: -64
HTTP OK
[227873][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[227895][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=18.678 ms

[227896][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[227901][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 18.678/18.678/18.678/0.000 ms

Ping OK(18.678ms)
WiFi RSSI: -65
HTTP OK
[230923][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[230938][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=11.328 ms

[230939][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[230944][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.328/11.328/11.328/0.000 ms

Ping OK(11.328ms)
WiFi RSSI: -64
HTTP OK
[233965][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[233990][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=20.756 ms

[233991][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[233996][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 20.756/20.756/20.756/0.000 ms

Ping OK(20.756ms)
WiFi RSSI: -67
HTTP OK
[237017][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[237032][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=10.956 ms

[237033][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[237038][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.956/10.956/10.956/0.000 ms

Ping OK(10.956ms)
WiFi RSSI: -81
HTTP OK
[240059][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[240064][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=3.271 ms

[240065][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[240071][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.271/3.271/3.271/0.000 ms

Ping OK(3.271ms)
WiFi RSSI: -66
HTTP OK
[243092][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[243101][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=5.582 ms

[243102][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[243107][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.582/5.582/5.582/0.000 ms

Ping OK(5.582ms)
WiFi RSSI: -64
HTTP OK
[246128][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[246139][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.040 ms

[246140][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[246145][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.040/7.040/7.040/0.000 ms

Ping OK(7.040ms)
WiFi RSSI: -65
HTTP OK
[249166][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[249181][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=11.224 ms

[249182][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[249187][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.224/11.224/11.224/0.000 ms

Ping OK(11.224ms)
WiFi RSSI: -81
HTTP OK
[252208][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[252217][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=5.848 ms

[252218][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[252224][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.848/5.848/5.848/0.000 ms

Ping OK(5.848ms)
WiFi RSSI: -65
HTTP OK
[255244][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[255254][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=5.984 ms

[255255][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[255260][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.984/5.984/5.984/0.000 ms

Ping OK(5.984ms)
WiFi RSSI: -64
HTTP OK
[258281][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[258295][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=10.593 ms

[258296][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[258301][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.593/10.593/10.593/0.000 ms

Ping OK(10.593ms)
WiFi RSSI: -76
HTTP OK
[261322][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[261330][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=4.325 ms

[261331][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[261336][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.325/4.325/4.325/0.000 ms

Ping OK(4.325ms)
WiFi RSSI: -65
HTTP OK
[264357][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[264368][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.098 ms

[264369][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[264374][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.098/7.098/7.098/0.000 ms

Ping OK(7.098ms)
WiFi RSSI: -65
HTTP OK
[267395][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[267409][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=10.239 ms

[267410][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[267415][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.239/10.239/10.239/0.000 ms

Ping OK(10.239ms)
WiFi RSSI: -65
HTTP OK
[270436][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[270444][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=4.512 ms

[270445][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[270450][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.512/4.512/4.512/0.000 ms

Ping OK(4.512ms)
WiFi RSSI: -64
HTTP OK
[273471][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[273481][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=6.696 ms

[273482][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[273487][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.696/6.696/6.696/0.000 ms

Ping OK(6.696ms)
WiFi RSSI: -64
HTTP OK
[276508][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[276518][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=6.312 ms

[276519][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[276524][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.312/6.312/6.312/0.000 ms

Ping OK(6.312ms)
WiFi RSSI: -61
HTTP OK
[279545][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[279557][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=8.329 ms

[279558][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[279563][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.329/8.329/8.329/0.000 ms

Ping OK(8.329ms)
WiFi RSSI: -62
HTTP OK
[282584][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[282595][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.559 ms

[282596][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[282601][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.559/7.559/7.559/0.000 ms

Ping OK(7.559ms)
WiFi RSSI: -61
HTTP OK
[285622][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[285631][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=5.012 ms

[285632][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[285637][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.012/5.012/5.012/0.000 ms

Ping OK(5.012ms)
WiFi RSSI: -63
HTTP OK
[288658][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[288668][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=6.869 ms

[288669][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[288675][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.869/6.869/6.869/0.000 ms

Ping OK(6.869ms)
WiFi RSSI: -63
HTTP OK
[291695][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[291706][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.523 ms

[291707][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[291712][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.523/7.523/7.523/0.000 ms

Ping OK(7.523ms)
WiFi RSSI: -61
HTTP OK
[294733][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[294749][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=12.765 ms

[294750][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[294756][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.765/12.765/12.765/0.000 ms

Ping OK(12.765ms)
WiFi RSSI: -62
HTTP OK
[297777][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[297786][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=5.075 ms

[297787][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[297792][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.075/5.075/5.075/0.000 ms

Ping OK(5.075ms)
WiFi RSSI: -62
HTTP OK
[300813][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[300828][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=11.150 ms

[300829][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[300834][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.150/11.150/11.150/0.000 ms

Ping OK(11.150ms)
WiFi RSSI: -62
HTTP OK
[303855][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[303869][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=9.771 ms

[303870][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[303875][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.771/9.771/9.771/0.000 ms

Ping OK(9.771ms)
WiFi RSSI: -63
HTTP OK
[306896][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[306904][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=4.642 ms

[306905][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[306910][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.642/4.642/4.642/0.000 ms

Ping OK(4.642ms)
WiFi RSSI: -72
HTTP OK
[309931][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[309941][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=6.275 ms

[309942][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[309947][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.275/6.275/6.275/0.000 ms

Ping OK(6.275ms)
WiFi RSSI: -62
HTTP OK
[312968][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[312980][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=8.336 ms

[312981][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[312986][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.336/8.336/8.336/0.000 ms

Ping OK(8.336ms)
WiFi RSSI: -61
HTTP OK
[316007][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[316024][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=12.935 ms

[316025][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[316030][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.935/12.935/12.935/0.000 ms

Ping OK(12.935ms)
WiFi RSSI: -61
HTTP OK
[319051][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[319073][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=18.860 ms

[319074][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[319080][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 18.860/18.860/18.860/0.000 ms

Ping OK(18.860ms)
WiFi RSSI: -61
HTTP OK
[322101][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[322109][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=4.760 ms

[322110][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[322115][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.760/4.760/4.760/0.000 ms

Ping OK(4.760ms)
WiFi RSSI: -60
HTTP OK
[325136][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[325149][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=9.412 ms

[325150][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[325155][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.412/9.412/9.412/0.000 ms

Ping OK(9.412ms)
WiFi RSSI: -70
HTTP OK
[328176][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[328189][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=9.471 ms

[328190][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[328195][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.471/9.471/9.471/0.000 ms

Ping OK(9.471ms)
WiFi RSSI: -60
[331216][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[331225][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=5.333 ms

[331225][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[331231][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.333/5.333/5.333/0.000 ms

Ping OK(5.333ms)
WiFi RSSI: -60
HTTP OK
[334251][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[334263][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=8.646 ms

[334264][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[334269][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.646/8.646/8.646/0.000 ms

Ping OK(8.646ms)
WiFi RSSI: -63
HTTP OK
[337290][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[337303][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=9.633 ms

[337304][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[337309][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.633/9.633/9.633/0.000 ms

Ping OK(9.633ms)
WiFi RSSI: -64
HTTP OK
[340330][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[340342][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=8.746 ms

[340343][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[340348][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.746/8.746/8.746/0.000 ms

Ping OK(8.746ms)
WiFi RSSI: -65
HTTP OK
[343369][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[343393][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=19.991 ms

[343394][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[343399][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 19.991/19.991/19.991/0.000 ms

Ping OK(19.991ms)
WiFi RSSI: -64
HTTP OK
[346420][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[346434][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=9.979 ms

[346435][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[346440][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.979/9.979/9.979/0.000 ms

Ping OK(9.979ms)
WiFi RSSI: -63
HTTP OK
[349460][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[350464][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[350465][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[350468][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
[353490][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[354493][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[354494][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[354497][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
HTTP ERROR
[357519][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[358522][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[358523][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[358526][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
[361548][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[362551][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[362551][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[362555][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[365577][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[366580][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[366580][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[366584][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -73
[369606][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[370609][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[370610][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[370613][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[373635][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[374638][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[374639][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[374642][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
[377664][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[378667][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[378668][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[378671][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[381693][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[382696][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[382697][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[382700][I][piHTTP ERROR
ng.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
[385722][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[386725][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[386726][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[386729][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
HTTP ERROR
[389751][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[390754][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[390755][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[390758][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[393780][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[394783][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[394784][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[394787][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -72
[397809][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[398812][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[398813][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[398816][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -72
HTTP ERROR
[401838][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[402841][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[402842][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[402845][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[405867][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[406870][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[406871][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[406874][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -73
HTTP ERROR
[409896][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[410901][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[410902][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[410905][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[413927][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[414930][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[414931][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[414934][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[417956][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[418959][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[418960][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[418963][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[421985][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[422988][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[422989][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[422992][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[426014][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[427017][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[427018][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[427021][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -73
HTTP ERROR
[430043][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[431046][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[431046][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[431050][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -64
[434072][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[435075][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[435075][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[435079][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[438101][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[439104][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[439105][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[439108][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[442130][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[443133][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[443134][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[443137][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
HTTP ERROR
[446159][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[447162][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[447163][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[447166][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[450188][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[451191][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[451192][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[451195][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -63
HTTP ERROR
[454217][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[455220][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[455221][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[455224][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[458246][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[459249][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[459250][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[459253][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
HTTP ERROR
[462275][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[463278][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[463279][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[463282][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -71
HTTP ERROR
[466304][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[467307][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[467308][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[467311][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -72
[470333][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[471336][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[471337][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[471340][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -71
HTTP ERROR
[474362][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[475365][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[475366][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[475369][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -60
[478391][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[479394][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[479395][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[479398][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
HTTP ERROR
[482420][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[483424][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[483425][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[483428][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
[486450][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[487453][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[487454][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[487457][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -62
HTTP ERROR
[490479][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[491483][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[491484][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[491487][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -60
HTTP ERROR
[494509][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[495513][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[495514][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[495517][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -60
[498539][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[499542][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[499542][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[499546][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -59
HTTP ERROR
[502568][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[503569][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[503569][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[503573][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -59
[506595][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[507598][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[507599][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[507602][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -59
HTTP ERROR
[510624][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

HTTP ERROR
[511625][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[511626][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[511629][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -59
[514651][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[515655][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[515656][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[515659][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -60
HTTP ERROR
[518681][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[519682][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[519683][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[519686][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -58
HTTP ERROR
[522708][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[523711][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[523712][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[523715][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -58
HTTP ERROR
[526737][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[527738][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[527739][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[527742][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -61
HTTP ERROR
[530764][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[531767][D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[531768][I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[531771][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/-nan ms

Ping Error
WiFi RSSI: -59
[532050][V][WiFiGeneric.cpp:307] _arduino_event_cb(): STA Disconnected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Reason: 7
[532051][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 5 - STA_DISCONNECTED
[532058][W][WiFiGeneric.cpp:897] _eventCallback(): Reason: 7 - NOT_ASSOCED
WiFi Disconnected
[532077][V][WiFiGeneric.cpp:288] _arduino_event_cb(): STA Stopped
[532305][V][WiFiGeneric.cpp:96] set_esp_interface_ip(): Configuring Station static IP: 0.0.0.0, MASK: 0.0.0.0, GW: 0.0.0.0
[532304][V][WiFiGeneric.cpp:285] _arduino_event_cb(): STA Started
[532324][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 3 - STA_STOP
[532325][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 0 - WIFI_READY
[532327][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 2 - STA_START
[532409][V][WiFiGeneric.cpp:300] _arduino_event_cb(): STA Connected: SSID: WLAN-8C1784, BSSID: 84:9c:a6:8c:17:50, Channel: 7, Auth: WPA2_PSK
[532411][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 4 - STA_CONNECTED
[532442][V][WiFiGeneric.cpp:314] _arduino_event_cb(): STA Got Same IP:192.168.2.136
[532443][D][WiFiGeneric.cpp:876] _eventCallback(): Arduino Event: 7 - STA_GOT_IP
[532446][D][WiFiGeneric.cpp:938] _eventCallback(): STA IP: 192.168.2.136, MASK: 255.255.255.0, GW: 192.168.2.1
IP Address: 192.168.2.136
WiFi ready after 532428ms.
HTTP OK
[534793][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[534817][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=19.878 ms

[534818][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[534823][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 19.878/19.878/19.878/0.000 ms

Ping OK(19.878ms)
WiFi RSSI: -61
HTTP OK
[537844][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[537861][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=13.775 ms

[537862][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[537868][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.775/13.775/13.775/0.000 ms

Ping OK(13.775ms)
WiFi RSSI: -60
HTTP OK
[540889][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[540902][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=9.870 ms

[540903][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[540908][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.870/9.870/9.870/0.000 ms

Ping OK(9.870ms)
WiFi RSSI: -61
HTTP OK
[543929][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[543948][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=15.089 ms

[543949][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[543954][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 15.089/15.089/15.089/0.000 ms

Ping OK(15.089ms)
WiFi RSSI: -61
HTTP OK
[546975][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[546986][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.750 ms

[546987][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[546992][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.750/7.750/7.750/0.000 ms

Ping OK(7.750ms)
WiFi RSSI: -62
HTTP OK
[550015][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[550023][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=4.958 ms

[550024][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[550030][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.958/4.958/4.958/0.000 ms

Ping OK(4.958ms)
WiFi RSSI: -62
HTTP OK
[553050][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[553061][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=7.699 ms

[553062][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[553067][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.699/7.699/7.699/0.000 ms

Ping OK(7.699ms)
WiFi RSSI: -63
HTTP OK
[556088][I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[556102][D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=10.312 ms

[556103][I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[556108][I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.312/10.312/10.312/0.000 ms

Ping OK(10.312ms)
WiFi RSSI: -65
HTTP OK

--- exit ---
SuGlider commented 2 years ago

I think that ESP32 considers that it has being with no connection to the AP Router for time enough to consider it has disconnected. There may be a way to set a higher timeout or something like that in the ESP32 WiFi in order to avoid it from disconnecting...

But there is a question.... if you run this same example with 1.0.6, evething works perfectly well?

ToMe25 commented 2 years ago

I tested that a few times when I initially made this issue, and I tested it again just now. With only one small change that sketch works flawlessly in 1.0.6. That change being the ARDUINO_EVENT_WIFI instances have to be replaced with SYSTEM_EVENT. It does take 2.2 to 2.5 seconds to connect to WiFi, which I know is kinda a lot, but its consistent and doesn't stop working as far as I can tell.

ToMe25 commented 2 years ago

Oh btw I wont be able to test the version 2.0.X things for a while, because my PC died today. I can test version 1.0.6 using a RPi, but version 2.0.X needs espressif/toolchain-xtensa-esp32 version 8.4.0+2021r2-patch3 which isn't available for aarch64.

SuGlider commented 2 years ago

The ping results are the same with 1.0.6?

ToMe25 commented 2 years ago

I can get you a full combined log tomorrow, I assumed that wasn't relevant since its fully working. I only looked at the first few pings to see if they work at all, which they did, I can't remember the times tho. I looked at the output of the HTTP test script for at least 15mins, and it worked the whole time. That's why I thought the pings didn't matter. I also remember from my initial testing that the 1.0.6 version didn't reconnect every few minutes, but I didn't check that today. The combined log should show that tho.

SuGlider commented 2 years ago

That 1.0.6 log would help in comparing both version results. Thanks.

ToMe25 commented 2 years ago

I just ran the test again with 1.0.6. I just ran bash -c "./test.sh 192.168.2.136 & pio device monitor" | tee esp.log and this is the resulting log:

Click to Show

HTTP OK
--- Available filters and text transformations: colorize, debug, default, direct, esp32_exception_decoder, hexlify, log2file, nocontrol, printable, send_on_enter, time
--- More details at https://bit.ly/pio-monitor-filters
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.752 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.752/12.752/12.752/0.000 ms

Ping OK(12.752ms)
WiFi RSSI: -59
ets Jul 29 2019 12:21:46

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0018,len:4
load:0x3fff001c,len:1044
load:0x40078000,len:10124
load:0x40080400,len:5828
entry 0x400806a8
setup start
[D][WiFiGeneric.cpp:374] _eventCallback(): Event: 0 - WIFI_READY
[D][WiFiGeneric.cpp:374] _eventCallback(): Event: 2 - STA_START
setup end
[I][ping.cpp:324] ping_start(): PING 0.0.0.0: 32 data bytes

[D][ping.cpp:233] ping_recv(): Request timeout for icmp_seq 1

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 0 packets received, 100.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 1000000000.000/0.000/0.000/nan ms

WiFi RSSI: 0
[D][WiFiGeneric.cpp:374] _eventCallback(): Event: 4 - STA_CONNECTED
[D][WiFiGeneric.cpp:374] _eventCallback(): Event: 7 - STA_GOT_IP
[D][WiFiGeneric.cpp:419] _eventCallback(): STA IP: 192.168.2.136, MASK: 255.255.255.0, GW: 192.168.2.1
.168.2.136
WiFi ready after 2287ms.
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.415 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.415/10.415/10.415/0.000 ms

Ping OK(10.415ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.438 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.438/8.438/8.438/0.000 ms

Ping OK(8.438ms)
WiFi RSSI: -66
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.728 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.728/9.728/9.728/0.000 ms

Ping OK(9.728ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=18.840 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 18.840/18.840/18.840/0.000 ms

Ping OK(18.840ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.209 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.209/11.209/11.209/0.000 ms

Ping OK(11.209ms)
WiFi RSSI: -66
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.014 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.014/6.014/6.014/0.000 ms

Ping OK(6.014ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.432 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.432/9.432/9.432/0.000 ms

Ping OK(9.432ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.608 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.608/3.608/3.608/0.000 ms

Ping OK(3.608ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.367 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.367/3.367/3.367/0.000 ms

Ping OK(3.367ms)
WiFi RSSI: -66
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=19.015 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 19.015/19.015/19.015/0.000 ms

Ping OK(19.015ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.746 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.746/6.746/6.746/0.000 ms

Ping OK(6.746ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.594 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.594/7.594/7.594/0.000 ms

Ping OK(7.594ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.984 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.984/12.984/12.984/0.000 ms

Ping OK(12.984ms)
WiFi RSSI: -60
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.398 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.398/5.398/5.398/0.000 ms

WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.147 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.147/9.147/9.147/0.000 ms

Ping OK(9.147ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=8.130 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.130/8.130/8.130/0.000 ms

Ping OK(8.130ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.138 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.138/6.138/6.138/0.000 ms

Ping OK(6.138ms)
WiFi RSSI: -67
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=15.115 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 15.115/15.115/15.115/0.000 ms

Ping OK(15.115ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.385 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.385/3.385/3.385/0.000 ms

Ping OK(3.385ms)
WiFi RSSI: -71
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=22.023 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 22.023/22.023/22.023/0.000 ms

Ping OK(22.023ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.943 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.943/9.943/9.943/0.000 ms

Ping OK(9.943ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.960 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.960/4.960/4.960/0.000 ms

Ping OK(4.960ms)
WiFi RSSI: -67
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.112 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.112/5.112/5.112/0.000 ms

Ping OK(5.112ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.479 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.479/7.479/7.479/0.000 ms

Ping OK(7.479ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.812 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.812/7.812/7.812/0.000 ms

Ping OK(7.812ms)
WiFi RSSI: -58
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=17.572 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 17.572/17.572/17.572/0.000 ms

Ping OK(17.572ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.988 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.988/12.988/12.988/0.000 ms

Ping OK(12.988ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.983 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.983/8.983/8.983/0.000 ms

Ping OK(8.983ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.932 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.932/6.932/6.932/0.000 ms

Ping OK(6.932ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.768 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.768/7.768/7.768/0.000 ms

Ping OK(7.768ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.818 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.818/10.818/10.818/0.000 ms

Ping OK(10.818ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.407 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.407/8.407/8.407/0.000 ms

Ping OK(8.407ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.911 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.911/12.911/12.911/0.000 ms

Ping OK(12.911ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.963 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.963/4.963/4.963/0.000 ms

Ping OK(4.963ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.152 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.152/9.152/9.152/0.000 ms

Ping OK(9.152ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=14.036 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 14.036/14.036/14.036/0.000 ms

Ping OK(14.036ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.805 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.805/5.805/5.805/0.000 ms

Ping OK(5.805ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.951 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.951/5.951/5.951/0.000 ms

Ping OK(5.951ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.410 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.410/10.410/10.410/0.000 ms

Ping OK(10.410ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.534 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.534/7.534/7.534/0.000 ms

Ping OK(7.534ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.673 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.673/8.673/8.673/0.000 ms

Ping OK(8.673ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.522 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.522/3.522/3.522/0.000 ms

Ping OK(3.522ms)
WiFi RSSI: -61
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=11.578 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.578/11.578/HTTP OK
11.578/0.000 ms

Ping OK(11.578ms)
WiFi RSSI: -60
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.478 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.478/8.478/8.478/0.000 ms

Ping OK(8.478ms)
WiFi RSSI: -58
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=18.906 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 18.906/18.906/18.906/0.000 ms

Ping OK(18.906ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.445 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.445/5.445/5.445/0.000 ms

Ping OK(5.445ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.651 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.651/7.651/7.651/0.000 ms

Ping OK(7.651ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.811 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.811/9.811/9.811/0.000 ms

Ping OK(9.811ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.808 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.808/6.808/6.808/0.000 ms

Ping OK(6.808ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.460 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.460/9.460/9.460/0.000 ms

Ping OK(9.460ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.163 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.163/7.163/7.163/0.000 ms

Ping OK(7.163ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.062 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.062/9.062/9.062/0.000 ms

Ping OK(9.062ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.310 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.310/4.310/4.310/0.000 ms

Ping OK(4.310ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.947 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.947/5.947/5.947/0.000 ms

Ping OK(5.947ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.903 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.903/6.903/6.903/0.000 ms

Ping OK(6.903ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.529 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.529/6.529/6.529/0.000 ms

Ping OK(6.529ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=16.291 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 16.291/16.291/16.291/0.000 ms

Ping OK(16.291ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.369 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.369/10.369/10.369/0.000 ms

Ping OK(10.369ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.238 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.238/6.238/6.238/0.000 ms

Ping OK(6.238ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=19.978 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 19.978/19.978/19.978/0.000 ms

Ping OK(19.978ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.064 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.064/8.064/8.064/0.000 ms

Ping OK(8.064ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.895 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.895/10.895/10.895/0.000 ms

Ping OK(10.895ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.322 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.322/7.322/7.322/0.000 ms

Ping OK(7.322ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.259 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.259/7.259/7.259/0.000 ms

Ping OK(7.259ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.907 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.907/8.907/8.907/0.000 ms

Ping OK(8.907ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.692 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.692/5.692/5.692/0.000 ms

Ping OK(5.692ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.364 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.364/10.364/10.364/0.000 ms

Ping OK(10.364ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.330 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.330/11.330/11.330/0.000 ms

Ping OK(11.330ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.235 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.235/7.235/7.235/0.000 ms

Ping OK(7.235ms)
WiFi RSSI: -61
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.615 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][pingHTTP OK
.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.615/12.615/12.615/0.000 ms

Ping OK(12.615ms)
WiFi RSSI: -69
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.888 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.888/8.888/8.888/0.000 ms

Ping OK(8.888ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.559 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.559/5.559/5.559/0.000 ms

Ping OK(5.559ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.105 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.105/7.105/7.105/0.000 ms

Ping OK(7.105ms)
WiFi RSSI: -71
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.450 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.450/11.450/11.450/0.000 ms

Ping OK(11.450ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.450 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.450/12.450/12.450/0.000 ms

Ping OK(12.450ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.640 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.640/12.640/12.640/0.000 ms

Ping OK(12.640ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.405 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.405/11.405/11.405/0.000 ms

Ping OK(11.405ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.717 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.717/3.717/3.717/0.000 ms

Ping OK(3.717ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.115 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.115/7.115/7.115/0.000 ms

Ping OK(7.115ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.975 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.975/7.975/7.975/0.000 ms

Ping OK(7.975ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.379 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.379/7.379/7.379/0.000 ms

Ping OK(7.379ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.878 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.878/12.878/12.878/0.000 ms

Ping OK(12.878ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.167 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.167/7.167/7.167/0.000 ms

Ping OK(7.167ms)
WiFi RSSI: -71
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.580 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.580/11.580/11.580/0.000 ms

Ping OK(11.580ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.081 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.081/8.081/8.081/0.000 ms

Ping OK(8.081ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.215 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.215/4.215/4.215/0.000 ms

Ping OK(4.215ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.867 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.867/6.867/6.867/0.000 ms

Ping OK(6.867ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.086 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.086/5.086/5.086/0.000 ms

Ping OK(5.086ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=16.700 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 16.700/16.700/16.700/0.000 ms

Ping OK(16.700ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.274 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.274/6.274/6.274/0.000 ms

Ping OK(6.274ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.682 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.682/6.682/6.682/0.000 ms

Ping OK(6.682ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.441 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.441/6.441/6.441/0.000 ms

Ping OK(6.441ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.401 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.401/3.401/3.401/0.000 ms

Ping OK(3.401ms)
WiFi RSSI: -72
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.298 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.298/9.298/9.298/0.000 ms

Ping OK(9.298ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.520 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.520/4.520/4.520/0.000 ms

Ping OK(4.520ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=18.391 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 18.391/18.391/18.391/0.000 ms

Ping OK(18.391ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.223 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.223/12.223/12.223/0.000 ms

Ping OK(12.223ms)
WiFi RSSI: -60
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.228 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][pingHTTP OK
.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.228/12.228/12.228/0.000 ms

Ping OK(12.228ms)
WiFi RSSI: -61
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.849 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.849/3.849/3.849/0.000 ms

Ping OK(3.849ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.050 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.050/6.050/6.050/0.000 ms

Ping OK(6.050ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.523 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.523/4.523/4.523/0.000 ms

Ping OK(4.523ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.863 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.863/3.863/3.863/0.000 ms

Ping OK(3.863ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.459 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.459/9.459/9.459/0.000 ms

Ping OK(9.459ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.188 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.188/9.188/9.188/0.000 ms

Ping OK(9.188ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.548 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.548/8.548/8.548/0.000 ms

Ping OK(8.548ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.888 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.888/8.888/8.888/0.000 ms

Ping OK(8.888ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.235 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.235/6.235/6.235/0.000 ms

Ping OK(6.235ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.156 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.156/3.156/3.156/0.000 ms

Ping OK(3.156ms)
WiFi RSSI: -71
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.470 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.470/8.470/8.470/0.000 ms

Ping OK(8.470ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.893 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.893/3.893/3.893/0.000 ms

Ping OK(3.893ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.263 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.263/13.263/13.263/0.000 ms

Ping OK(13.263ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.237 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.237/7.237/7.237/0.000 ms

Ping OK(7.237ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=16.048 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 16.048/16.048/16.048/0.000 ms

Ping OK(16.048ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.215 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.215/9.215/9.215/0.000 ms

Ping OK(9.215ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.601 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.601/13.601/13.601/0.000 ms

Ping OK(13.601ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.399 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.399/7.399/7.399/0.000 ms

Ping OK(7.399ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.018 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.018/9.018/9.018/0.000 ms

Ping OK(9.018ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.286 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.286/11.286/11.286/0.000 ms

Ping OK(11.286ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.709 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.709/10.709/10.709/0.000 ms

Ping OK(10.709ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.240 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.240/7.240/7.240/0.000 ms

Ping OK(7.240ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.776 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.776/4.776/4.776/0.000 ms

Ping OK(4.776ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.027 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.027/5.027/5.027/0.000 ms

Ping OK(5.027ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.141 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.141/11.141/11.141/0.000 ms

Ping OK(11.141ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.358 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.358/9.358/9.358/0.000 ms

Ping OK(9.358ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.519 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.519/4.519/4.519/0.000 ms

Ping OK(4.519ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.714 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.714/10.714/10.714/0.000 ms

Ping OK(10.714ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=16.783 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 16.783/16.783/16.783/0.000 ms

Ping OK(16.783ms)
WiFi RSSI: -70
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=17.447 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][pingHTTP OK
.cpp:349] ping_start(): round-trip min/avg/max/stddev = 17.447/17.447/17.447/0.000 ms

Ping OK(17.447ms)
WiFi RSSI: -60
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.092 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.092/8.092/8.092/0.000 ms

Ping OK(8.092ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.501 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.501/11.501/11.501/0.000 ms

Ping OK(11.501ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.498 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.498/5.498/5.498/0.000 ms

Ping OK(5.498ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.429 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.429/8.429/8.429/0.000 ms

Ping OK(8.429ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.262 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.262/8.262/8.262/0.000 ms

Ping OK(8.262ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.185 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.185/9.185/9.185/0.000 ms

Ping OK(9.185ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.207 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.207/8.207/8.207/0.000 ms

Ping OK(8.207ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.222 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.222/6.222/6.222/0.000 ms

Ping OK(6.222ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.554 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.554/5.554/5.554/0.000 ms

Ping OK(5.554ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.734 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.734/5.734/5.734/0.000 ms

Ping OK(5.734ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.563 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.563/9.563/9.563/0.000 ms

Ping OK(9.563ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.338 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.338/7.338/7.338/0.000 ms

Ping OK(7.338ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.276 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.276/10.276/10.276/0.000 ms

Ping OK(10.276ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.274 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.274/4.274/4.274/0.000 ms

Ping OK(4.274ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.046 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.046/11.046/11.046/0.000 ms

Ping OK(11.046ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.782 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.782/5.782/5.782/0.000 ms

Ping OK(5.782ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.206 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.206/5.206/5.206/0.000 ms

Ping OK(5.206ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=15.655 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 15.655/15.655/15.655/0.000 ms

Ping OK(15.655ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.504 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.504/3.504/3.504/0.000 ms

Ping OK(3.504ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.183 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.183/3.183/3.183/0.000 ms

Ping OK(3.183ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.801 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.801/13.801/13.801/0.000 ms

Ping OK(13.801ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.089 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.089/9.089/9.089/0.000 ms

Ping OK(9.089ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.597 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.597/11.597/11.597/0.000 ms

Ping OK(11.597ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 192.168.2.1: icmp_seq=1 time=4.976 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.976/4.976/4.976/0.000 ms

Ping OK(4.976ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 0.0.0.0: icmp_seq=1 time=3.775 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.775/3.775/3.775/0.000 ms

Ping OK(3.775ms)
WiFi RSSI: -61
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 192.168.2.1: icmp_seq=1 time=13.311 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cHTTP OK
pp:349] ping_start(): round-trip min/avg/max/stddev = 13.311/13.311/13.311/0.000 ms

Ping OK(13.311ms)
WiFi RSSI: -59
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.029 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.029/6.029/6.029/0.000 ms

Ping OK(6.029ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.940 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.940/6.940/6.940/0.000 ms

Ping OK(6.940ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.377 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.377/8.377/8.377/0.000 ms

Ping OK(8.377ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.803 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.803/4.803/4.803/0.000 ms

Ping OK(4.803ms)
WiFi RSSI: -71
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=20.914 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 20.914/20.914/20.914/0.000 ms

Ping OK(20.914ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.750 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.750/7.750/7.750/0.000 ms

Ping OK(7.750ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.529 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.529/7.529/7.529/0.000 ms

Ping OK(7.529ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.200 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.200/4.200/4.200/0.000 ms

Ping OK(4.200ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.534 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.534/7.534/7.534/0.000 ms

Ping OK(7.534ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.182 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.182/11.182/11.182/0.000 ms

Ping OK(11.182ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.972 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.972/12.972/12.972/0.000 ms

Ping OK(12.972ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.108 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.108/8.108/8.108/0.000 ms

Ping OK(8.108ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.230 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.230/8.230/8.230/0.000 ms

Ping OK(8.230ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.464 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.464/11.464/11.464/0.000 ms

Ping OK(11.464ms)
WiFi RSSI: -72
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.315 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.315/7.315/7.315/0.000 ms

Ping OK(7.315ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.435 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.435/5.435/5.435/0.000 ms

Ping OK(5.435ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.543 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.543/11.543/11.543/0.000 ms

Ping OK(11.543ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.345 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.345/5.345/5.345/0.000 ms

Ping OK(5.345ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.089 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.089/7.089/7.089/0.000 ms

Ping OK(7.089ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.896 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.896/3.896/3.896/0.000 ms

Ping OK(3.896ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.090 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.090/7.090/7.090/0.000 ms

Ping OK(7.090ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=19.997 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 19.997/19.997/19.997/0.000 ms

Ping OK(19.997ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.194 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.194/9.194/9.194/0.000 ms

Ping OK(9.194ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.756 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.756/4.756/4.756/0.000 ms

Ping OK(4.756ms)
WiFi RSSI: -60
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.826 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][pingHTTP OK
.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.826/10.826/10.826/0.000 ms

Ping OK(10.826ms)
WiFi RSSI: -60
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.898 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.898/12.898/12.898/0.000 ms

Ping OK(12.898ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.265 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.265/6.265/6.265/0.000 ms

Ping OK(6.265ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=14.986 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 14.986/14.986/14.986/0.000 ms

Ping OK(14.986ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.779 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.779/4.779/4.779/0.000 ms

Ping OK(4.779ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.153 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.153/9.153/9.153/0.000 ms

Ping OK(9.153ms)
WiFi RSSI: -71
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.353 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.353/8.353/8.353/0.000 ms

Ping OK(8.353ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.352 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.352/8.352/8.352/0.000 ms

Ping OK(8.352ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.003 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.003/9.003/9.003/0.000 ms

Ping OK(9.003ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.740 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.740/6.740/6.740/0.000 ms

Ping OK(6.740ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.655 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.655/7.655/7.655/0.000 ms

Ping OK(7.655ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.200 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.200/7.200/7.200/0.000 ms

Ping OK(7.200ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=52.326 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 52.326/52.326/52.326/0.000 ms

Ping OK(52.326ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.970 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.970/3.970/3.970/0.000 ms

Ping OK(3.970ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.460 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.460/9.460/9.460/0.000 ms

Ping OK(9.460ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.929 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.929/4.929/4.929/0.000 ms

Ping OK(4.929ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=3.899 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 3.899/3.899/3.899/0.000 ms

Ping OK(3.899ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.783 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.783/6.783/6.783/0.000 ms

Ping OK(6.783ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.434 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.434/8.434/8.434/0.000 ms

Ping OK(8.434ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.938 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.938/8.938/8.938/0.000 ms

Ping OK(8.938ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.659 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.659/5.659/5.659/0.000 ms

Ping OK(5.659ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.333 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.333/5.333/5.333/0.000 ms

Ping OK(5.333ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.193 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.193/10.193/10.193/0.000 ms

Ping OK(10.193ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.301 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.301/4.301/4.301/0.000 ms

Ping OK(4.301ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.452 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.452/5.452/5.452/0.000 ms

Ping OK(5.452ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.058 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.058/7.058/7.058/0.000 ms

Ping OK(7.058ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.378 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.378/7.378/7.378/0.000 ms

Ping OK(7.378ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=14.294 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 14.294/14.294/14.294/0.000 ms

Ping OK(14.294ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.408 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.408/10.408/10.408/0.000 ms

Ping OK(10.408ms)
WiFi RSSI: -69
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.982 ms

[I][ping.cpp:344] ping_start(): 1 packetHTTP OK
s transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.982/4.982/4.982/0.000 ms

Ping OK(4.982ms)
WiFi RSSI: -59
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.218 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.218/6.218/6.218/0.000 ms

Ping OK(6.218ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.786 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.786/11.786/11.786/0.000 ms

Ping OK(11.786ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.135 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.135/7.135/7.135/0.000 ms

Ping OK(7.135ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.798 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.798/5.798/5.798/0.000 ms

Ping OK(5.798ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=17.640 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 17.640/17.640/17.640/0.000 ms

Ping OK(17.640ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.776 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.776/6.776/6.776/0.000 ms

Ping OK(6.776ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.786 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.786/9.786/9.786/0.000 ms

Ping OK(9.786ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.943 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.943/5.943/5.943/0.000 ms

Ping OK(5.943ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.270 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.270/6.270/6.270/0.000 ms

Ping OK(6.270ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=21.204 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 21.204/21.204/21.204/0.000 ms

Ping OK(21.204ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.848 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.848/5.848/5.848/0.000 ms

Ping OK(5.848ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.232 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.232/10.232/10.232/0.000 ms

Ping OK(10.232ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.121 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.121/10.121/10.121/0.000 ms

Ping OK(10.121ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.796 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.796/7.796/7.796/0.000 ms

Ping OK(7.796ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.295 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.295/7.295/7.295/0.000 ms

Ping OK(7.295ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.399 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.399/6.399/6.399/0.000 ms

Ping OK(6.399ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.560 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.560/6.560/6.560/0.000 ms

Ping OK(6.560ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.961 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.961/8.961/8.961/0.000 ms

Ping OK(8.961ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.445 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.445/6.445/6.445/0.000 ms

Ping OK(6.445ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.996 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.996/6.996/6.996/0.000 ms

Ping OK(6.996ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.215 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.215/5.215/5.215/0.000 ms

Ping OK(5.215ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.824 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.824/11.824/11.824/0.000 ms

Ping OK(11.824ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.947 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.947/5.947/5.947/0.000 ms

Ping OK(5.947ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.424 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.424/7.424/7.424/0.000 ms

Ping OK(7.424ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=19.919 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 19.919/19.919/19.919/0.000 ms

Ping OK(19.919ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.945 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.945/13.945/13.945/0.000 ms

Ping OK(13.945ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.901 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.901/6.901/6.901/0.000 ms

Ping OK(6.901ms)
WiFi RSSI: -61
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.224 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.224/13.224/13.224/0.000 ms

3WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.962 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.962/5.962/5.962/0.000 ms

Ping OK(5.962ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.074 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.074/7.074/7.074/0.000 ms

Ping OK(7.074ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.339 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.339/9.339/9.339/0.000 ms

Ping OK(9.339ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=15.408 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 15.408/15.408/15.408/0.000 ms

Ping OK(15.408ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.792 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.792/4.792/4.792/0.000 ms

Ping OK(4.792ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.598 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.598/9.598/9.598/0.000 ms

Ping OK(9.598ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.608 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.608/9.608/9.608/0.000 ms

Ping OK(9.608ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.976 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.976/5.976/5.976/0.000 ms

Ping OK(5.976ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.216 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.216/6.216/6.216/0.000 ms

Ping OK(6.216ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.179 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.179/5.179/5.179/0.000 ms

Ping OK(5.179ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.346 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.346/7.346/7.346/0.000 ms

Ping OK(7.346ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.246 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.246/8.246/8.246/0.000 ms

Ping OK(8.246ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.282 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.282/12.282/12.282/0.000 ms

Ping OK(12.282ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.596 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.596/7.596/7.596/0.000 ms

Ping OK(7.596ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.727 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.727/8.727/8.727/0.000 ms

Ping OK(8.727ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.831 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.831/7.831/7.831/0.000 ms

Ping OK(7.831ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=14.832 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 14.832/14.832/14.832/0.000 ms

Ping OK(14.832ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=23.003 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 23.003/23.003/23.003/0.000 ms

Ping OK(23.003ms)
WiFi RSSI: -69
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.502 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.502/13.502/13.502/0.000 ms

Ping OK(13.502ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.579 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.579/4.579/4.579/0.000 ms

Ping OK(4.579ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.323 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.323/8.323/8.323/0.000 ms

Ping OK(8.323ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.424 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.424/6.424/6.424/0.000 ms

Ping OK(6.424ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.048 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.048/7.048/7.048/0.000 ms

Ping OK(7.048ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.644 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.644/4.644/4.644/0.000 ms

Ping OK(4.644ms)
WiFi RSSI: -70
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.652 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.652/4.652/4.652/0.000 ms

Ping OK(4.652ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.009 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.009/8.009/8.009/0.000 ms

Ping OK(8.009ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.919 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.919/11.919/11.919/0.000 ms

Ping OK(11.919ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.968 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.968/4.968/4.968/0.000 ms

Ping OK(4.968ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.194 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.194/6.194/6.194/0.000 ms

Ping OK(6.194ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.326 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.326/6.326/6.326/0.000 ms

Ping OK(6.326ms)
WiFi RSSI: -66
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.939 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.939/7.939/7.939/0.000 ms

Ping OK(7.939ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.333 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.333/6.333/6.333/0.000 ms

Ping OK(6.333ms)
WiFi RSSI: -59
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=18.111 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 18.111/18.111/18.111/0.000 ms

Ping OK(18.111ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.184 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.184/9.184/9.184/0.000 ms

Ping OK(9.184ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.239 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.239/6.239/6.239/0.000 ms

Ping OK(6.239ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=14.319 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 14.319/14.319/14.319/0.000 ms

Ping OK(14.319ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.818 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.818/9.818/9.818/0.000 ms

Ping OK(9.818ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.654 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.654/8.654/8.654/0.000 ms

Ping OK(8.654ms)
WiFi RSSI: -65
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 192.168.2.1: icmp_seq=1 time=8.614 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.614/8.614/8.614/0.000 ms

Ping OK(8.614ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=21.860 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 21.860/21.860/21.860/0.000 ms

Ping OK(21.860ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.363 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.363/10.363/10.363/0.000 ms

Ping OK(10.363ms)
WiFi RSSI: -67
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.944 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.944/7.944/7.944/0.000 ms

Ping OK(7.944ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.991 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.991/5.991/5.991/0.000 ms

Ping OK(5.991ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.671 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.671/7.671/7.671/0.000 ms

Ping OK(7.671ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.725 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.725/13.725/13.725/0.000 ms

Ping OK(13.725ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.208 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.208/11.208/11.208/0.000 ms

Ping OK(11.208ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.333 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.333/6.333/6.333/0.000 ms

Ping OK(6.333ms)
WiFi RSSI: -66
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.433 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.433/6.433/6.433/0.000 ms

Ping OK(6.433ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.678 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.678/8.678/8.678/0.000 ms

Ping OK(8.678ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=13.827 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 13.827/13.827/13.827/0.000 ms

Ping OK(13.827ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.993 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.993/5.993/5.993/0.000 ms

Ping OK(5.993ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.781 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.781/11.781/11.781/0.000 ms

Ping OK(11.781ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=12.369 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 12.369/12.369/12.369/0.000 ms

Ping OK(12.369ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=14.069 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 14.069/14.069/14.069/0.000 ms

Ping OK(14.069ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.592 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.592/5.592/5.592/0.000 ms

Ping OK(5.592ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.572 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.572/10.572/10.572/0.000 ms

Ping OK(10.572ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.533 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.533/5.533/5.533/0.000 ms

Ping OK(5.533ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.501 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.501/7.501/7.501/0.000 ms

Ping OK(7.501ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.920 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.920/8.920/8.920/0.000 ms

Ping OK(8.920ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.998 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.998/4.998/4.998/0.000 ms

Ping OK(4.998ms)
WiFi RSSI: -59
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=17.500 ms

[I][ping.cpp:344] ping_start(): 1 packeHTTP OK
ts transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 17.500/17.500/17.500/0.000 ms

Ping OK(17.500ms)
WiFi RSSI: -61
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.062 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.062/7.062/7.062/0.000 ms

Ping OK(7.062ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=4.814 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 4.814/4.814/4.814/0.000 ms

Ping OK(4.814ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=10.417 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 10.417/10.417/10.417/0.000 ms

Ping OK(10.417ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=5.309 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 5.309/5.309/5.309/0.000 ms

Ping OK(5.309ms)
WiFi RSSI: -62
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.370 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.370/8.370/8.370/0.000 ms

Ping OK(8.370ms)
WiFi RSSI: -68
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.513 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.513/7.513/7.513/0.000 ms

Ping OK(7.513ms)
WiFi RSSI: -61
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=9.772 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 9.772/9.772/9.772/0.000 ms

Ping OK(9.772ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=27.053 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 27.053/27.053/27.053/0.000 ms

Ping OK(27.053ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.384 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.384/6.384/6.384/0.000 ms

Ping OK(6.384ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=11.675 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 11.675/11.675/11.675/0.000 ms

Ping OK(11.675ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=22.000 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 22.000/22.000/22.000/0.000 ms

Ping OK(22.000ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=7.364 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 7.364/7.364/7.364/0.000 ms

Ping OK(7.364ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.772 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.772/6.772/6.772/0.000 ms

Ping OK(6.772ms)
WiFi RSSI: -59
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.273 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.273/8.273/8.273/0.000 ms

Ping OK(8.273ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=6.279 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 6.279/6.279/6.279/0.000 ms

Ping OK(6.279ms)
WiFi RSSI: -60
HTTP OK
[I][ping.cpp:324] ping_start(): PING 192.168.2.1: 32 data bytes

[D][ping.cpp:222] ping_recv(): 60 bytes from 215.19.14.128: icmp_seq=1 time=8.222 ms

[I][ping.cpp:344] ping_start(): 1 packets transmitted, 1 packets received, 0.0% packet loss

[I][ping.cpp:349] ping_start(): round-trip min/avg/max/stddev = 8.222/8.222/8.222/0.000 ms

Ping OK(8.222ms)
WiFi RSSI: -60
HTTP OK

--- exit ---
HTTP OK

While the ping still fluctuates it seems like the RSSI is consitently higher. The ESP was within a few centimeters of its position from the 2.0.X tests tho, so I can't imagine why the RSSI is significantly higher.

podaen commented 2 years ago

The RSSI questionable... When I did some tests I found out that when I was close I had a higher RSSI, than I was far from the transmitter (ps: I only print it at bootup). And a longer antenna didn't improve the RSSI. I installed an app on my phone to scan RSSI arround me and the fluctuate too.

I m curious... can you set a delay between the pings you send from the server, big engough to see if it has infuence on that. Let say 2second between each ping. I'm curious if it stablizes.

ToMe25 commented 2 years ago

The RSSI questionable... When I did some tests I found out that when I was close I had a higher RSSI, than I was far from the transmitter

The RSSI is signal strength, its supposed to be higher when you're closer.

And a longer antenna didn't improve the RSSI

A lot more things than just the antenna length matter for the RSSI. I did two tests with the same antenna:

  1. Using it without an antenna stand directly connected to an adapter and then the ESP. This way the RSSI was higher(better) than with an ESP with a PCB antenna.
  2. Using the same ESP and antenna with an antenna stand in between. This way the RSSI roughly matched that of an ESP with PCB antenna.

I installed an app on my phone to scan RSSI arround me and the fluctuate too.

Well, yeah, RF stuff always fluctuates a bit due to environmental factors. The only way your RSSI is stable is for you to place your device directly next to the AP.

I m curious... can you set a delay between the pings you send from the server, big engough to see if it has infuence on that. Let say 2second between each ping. I'm curious if it stablizes.

What? Currently my sketch pings once every 3 seconds. The 1.0.6 log was roughly 15 minutes of run time.

SuGlider commented 2 years ago

I just ran the test again with 1.0.6. I just ran bash -c "./test.sh 192.168.2.136 & pio device monitor" | tee esp.log and this is the resulting log:

Thanks @ToMe25 for the 1.0.6 log. It is really very different from the 2.0.0+ log in terms of ping success.

While the ping still fluctuates it seems like the RSSI is consitently higher. The ESP was within a few centimeters of its position from the 2.0.X tests tho, so I can't imagine why the RSSI is significantly higher.

Yes, I agree that this RSSI difference is something that may explain the 2.0.0+ issue with connection stability, but really not conclusive. I think that something on the IDF layer of the WiFi radio may have changed from IDF 3.3 (used in 1.0.6) to IDF 4.4 (used in 2.0.0+). It needs further investigation, here internally.

lubasi01 commented 1 year ago

Having the same behaviour on my side - after upgrading to 2.0.5 Wifi is completely unstable. My access point is a Unifi-UAP-AC-lite. When the ESP32 is connecting the AP drops all other connected devices (other ESPs, Firestick, Raspis) too. When using a TP-Link RE200 as access point everything is working fine.

drmpf commented 1 year ago

I have the same issue on ESP32 (sparkfun ESP32 Thing) ESP32 V2.0.2 mostly works, higher versions have problems up to and including V2.0.5 ESP32C3 on V2.0.5 works fine as does ESP8266 V3.0.2 boards

Testing with Window10 running Bluestack5 Android emulator running pfodApp

Power cycle the sparkfun ESP32 Thing, connect, connection made, but outgoing packet dropped connection times out on the pfodApp side and closed pfodApp automatically re-connects

Second and third connections usually send more outgoing packets before dropping one.

After about 3 re-connections the connection appears to be stable until the ESP32 is power cycled again.

Attached is the wireshark capture (zipped because github won't upload .pcapng) sparkfunESP32.zip

Also attached is the Serial monitor output of the received / sent msgs sparkfunESP32_monitor.txt The connection timeout on the pfodApp side is 15sec.

The ESP32 send msgs are buffered and the written using client->write((const uint8_t *)sendBuffer, sendBufferIdx); Edit -- the Router says it is running WiFi on Channel 10 Attached test sketch, static IP, DNS ips, and setNoDelay(true)

WifiESP32_fails.ino.txt

Edit 2 -- Rolled back to ESP32 V2.0.0 works fine on that version

podaen commented 1 year ago

I having troubles too when my shetch gets bigger. A special when more small packages are send and received after eachother. I have two clients in that shetch one with a high volume of data (receiving) and the other one that is sending and receiving small packages. It's hard to tell what the exact problem is. But if I put the Verbose log on I always get ASSOC_LEAVE. I think we need to make a simple shetch that is sending and receiving between two esps and where the load and the time between can be adjusted and one client can be added afterwards. The problem is I don't have time for a couple of weeks.

drmpf commented 1 year ago

Edit 2 -- Rolled back to ESP32 V2.0.0 works fine on that version

I had problems with ESP32 connections using V2.0.0 so have rolled back to V1.0.6 now

podaen commented 1 year ago

That's OK if you don't use tsl.

drmpf commented 1 year ago

That's OK if you don't use tsl.

pfodApp uses a secure hash appended to each message to provide wifi security against modification (not obscurity) so not a problem going back to V1.0.6 for pfodApp connections