(Ports to use for) Connection to Blynk-cloud

ESP8266, iOS, Android

void setup()
{  
  Serial.begin(115200); 
  delay(100);  
  Serial.println("....");
  Serial.println("Setup begin...");   

  Serial.println("Blynk init ...");
  Blynk.begin(auth, ssid, pass);
  Blynk.virtualWrite(V1, 0);
  Blynk.syncVirtual(V10); //Setpoint for channel 1
  Serial.println("Setup compleated...");  
}

Оператор проводного интернета Beeline
//Internet operator is Beeline

Если оставить так - то железо не может подключиться к Blynk даже в Setup - виснит на Blynk.begin(auth, ssid, pass);
Если раздать интернет с мобильного - сразу подключается.
//I still have problem with connecting to blynk-cloud.ru. In block of setup the hardware cannot connecting to Blynk if i use the static internet operator. But if i use the same operator but from 4G internet - all fine.

Кстати, если подключаться по ip - какой порт у Blynk cloud? разные версии видел 8080, 8442 и т.д.

Can you tell me (noob) what is the port of blynk cloud. I saw the different variants - 8080, 8442 e.t.c.

Either 80 or 8080 will work for basic TCP and 9443 for SSL

thnx

Please, close the topic