Windows socket error 10051

Socket Error 10051 is a connection error. The most common causes are firewall or proxy problems, network configuration errors, or server problems.

Socket Error 10051 is a connection error. The most common causes are firewall or proxy problems, network configuration errors, or server problems.

The socket error code 10051 message has an HTTP status code of 500 which means that the request was unsuccessful and it’s not possible to determine why without more information from the web server (which is no longer available).

Socket Error codes can be caused by many things such as firewalls blocking ports on your computer; incorrect settings in your browser; issues with your internet service provider; and other networking-related errors. There may also be something wrong with your computer systems like outdated drivers for hardware components like wireless cards, sound cards, graphics cards, and motherboard chipset drivers. A virus could also cause this error.

A lot of Socket Errors are only temporary which means that you should wait a while and then try again. If it doesn’t work after a few tries then you probably have bigger problems with your computer system which need to be fixed before trying again. You should also check if there are any new updates available for your device drivers since outdated devices are often the cause of network-related errors like these.

How to Fix Socket Error 10051

To fix this problem, check your browser settings and add exceptions for the site where you get this error. You should also add at least one of the following addresses to your Firewall or Internet Security program which uses a firewall:

http://mysite/myfile.php
https://mysite/myfile.php
ftp://mysite/myfile.php

There is no means for the computer to connect to another server if the router or modem is down. So you need to check the router or modem. Turn it back on if it’s off. If it is on, check your Internet connection (wifi or ethernet cable plugged in).

You should also make sure decive drivers are up-to-date and reboot your computer before doing anything else.

If you recently moved into a new place with Wi-Fi, you might not be able to connect because the router isn’t set up yet or someone else might be using it already. Talk to your landlord about this so that he can either fix it soon or give you his login credentials so you can access the Wi-Fi yourself. It could also be an issue with security settings which allow Wi-Fi guests but not computers on the local network.

A flawed router might result in socket error 10051 as well. The misconfiguration means that the router thinks it cannot communicate with the server, so it does not try to connect. Some advanced users may be able to find the problem but it is best to call your Internet provider and ask them to check out your router configuration. 

I get an 10051 socket error every time I try to use this code:

    USES_CONVERSION;
LPTSTR addr = A2W("192.168.1.209");
m_pSMACLPRCli = new CSMACLPRCli(addr, 12010, m_hWnd);
m_pSMACLPRCli->StartThread();

This is the constructor for m_pSMACLPRCli:

CSMACLPRCli::CSMACLPRCli(LPTSTR lpsztIPAddress, int nPort, HWND hParentWnd)

And this is how I create the socket and connect:

void CBlockingSocket::Create(int nType /* = SOCK_STREAM */)
{
    ASSERT(m_hSocket == NULL);
    if ((m_hSocket = socket(AF_INET, nType, 0)) == INVALID_SOCKET)
    {
       TRACE("n Socket Error !1 (%d)n", WSAGetLastError());
       int err = WSAGetLastError();
}
}


BOOL CBlockingSocket::Connect(LPCSOCKADDR psa)
{
   ASSERT(m_hSocket != NULL);
   // should timeout by itself
   if (connect(m_hSocket, psa, sizeof(SOCKADDR)) == SOCKET_ERROR)
   {
       int nLastErr = WSAGetLastError();
       return FALSE;
   }

   return TRUE;
}

The real funny thing is that when I use the exact same code, class structure etc. in a VS2008 project, everything works as expected, but when I use it in a VS2010 project, at connect() I get a 10051 error, Network is unreachable.

EDIT: The original VS2010 proj. is compiled using UNICODE. I’ve made a new VS2010 using MULTI-BYTE for testing and the connect() method returns no error, and … connects. Could it be something wrong with my way of passing the address string to the constructor?

USES_CONVERSION;
LPTSTR addr = A2W("192.168.1.209");
m_pSMACLPRCli = new CSMACLPRCli(addr, 12010, m_hWnd);
m_pSMACLPRCli->StartThread();

SOLVED:

The real problem was not the connect() method, but had to do with my way of passing the address string to a constructor of a sockaddr object.

The constructor:

CSockAddr(const char *pchIP, const USHORT ushPort = 0) // dotted IP addr string
{
    sin_family = AF_INET;
    sin_port = htons(ushPort);
    sin_addr.s_addr = inet_addr(pchIP);
}

Constructor call used by me:

 CString m_strSrvIPAddr;    
 CSockAddr saServer((char *) LPTSTR(LPCTSTR(m_strSrvIPAddr)), USHORT(m_nPort));

I changed the call to this:

CStringA strAddr(m_strSrvIPAddr);
CSockAddr saServer((const char *) strAddr, USHORT(m_nPort));

So I had to do a conversion of the string from UNICODE to MULTI_BYTE.

Содержание

  1. Asynchronous socket error 10051
  2. Форум казахстанского налогоплательщика
  3. Поиск по всем бухгалтерским и налоговым сайтам Казахстана:
  4. Как зарегистрироваться на форуме?
  5. Блог имени ludaramblerru9 (темы, которые создал(а) участник форума ludaramblerru9)
  6. Windows socket error 10051 Сделана попытка выполнить операци
  7. Re: СГДС-3 версия 3.0.1.202
  8. Эта тема в сообществах:
  9. Re: СГДС-3 версия 3.0.1.202
  10. Windows socket error 10051 Сделана попытка выполнить операци
  11. Re: Не работает МОНИТОР
  12. Re: Windows socket error 10051 Сделана попытка выполнить операци
  13. Re: Windows socket error 10051 Сделана попытка выполнить операци
  14. Re: Windows socket error 10051 Сделана попытка выполнить операци
  15. Re: Windows socket error 10051 Сделана попытка выполнить операци
  16. Re: Windows socket error 10051 Сделана попытка выполнить операци
  17. Re: Windows socket error 10051 Сделана попытка выполнить операци
  18. Re: Windows socket error 10051 Сделана попытка выполнить операци
  19. Re: Windows socket error 10051 Сделана попытка выполнить операци
  20. Re: Windows socket error 10051 Сделана попытка выполнить операци
  21. Re: Windows socket error 10051 Сделана попытка выполнить операци
  22. Re: Windows socket error 10051 Сделана попытка выполнить операци
  23. Re: Windows socket error 10051 Сделана попытка выполнить операци
  24. Кто сейчас на конференции

Asynchronous socket error 10051

С 1 июля 2017 прекращена поддержка программного продукта Frontol 4
С 9 ноября 2019 прекращена поддержка программного продукта Frontol 5
пруф

С 3 августа 2017 восстановление лицензий производится ТОЛЬКО через СервисДеск
Просьба обращаться к партнерам компании для оформления заявок в СД

Опытный

Группа: Пользователи
Сообщений: 492
Регистрация: 9.9.2008
Из: Истра
Пользователь №: 14 572

512/350 KB/s)
Почта на Yndex.ru

Настройки эл. почты во Frontol =

Проблема:
Ошибка отправки почты =
«Ошибка при выполнении команды Выгрузить по e-mail.
Socket Error # 10051
Network is unreachable.»

Пользователя пробовал писать как = 123@yandex.ru
Результат тот же ((((
Фишка: Загрузка проходит отлично, по флагу через почту из архива, как и было задумано.

Вопрос:
ЧО делать то , чтобы заработало, да еще желательно чтобы тоже по флагу .

PS: Если отсылать флаг выгрузки, то выгрузка происходит, но по почте не отправляется .. (((

Опытный

Группа: Пользователи
Сообщений: 492
Регистрация: 9.9.2008
Из: Истра
Пользователь №: 14 572

Решил добавить, что в качестве «распространителя» инета внутри магазина выступает WiFi от компании Zyxel, подключенный через USB.
И замечу, что выбор подключения в настройках Frontol остается доступным только = [Использовать текущее].

А если подключаться через кабель RJ-45 (к сожалению этот Zyxel через RJ-45 не подключается), то все ТИП-ТОП — всё отправляется в обе стороны (хотя не факт, что дело именно в этом).

Сообщение отредактировал Romeo — 8.8.2010, 16:53

Магистр слова

Группа: Партнеры
Сообщений: 14 906
Регистрация: 17.2.2007
Из: Москва
Пользователь №: 10 778

Windows socket error 10051 сделана попытка выполнить операцию на сокете при отключенной сети

В двух словах, Фронтол не может использовать текущее соединение для обмена данными, поскольку оно, текущее соединение, не подключено к сети. Текущее соединение подражумевает под собой соединение по локальной сети. Укажите в данном параметре соединение, которое Вы используете для выхода в интернет, перезапустите Фронтол сервис, в указанном соединении укажите, что логин и пароль используются любым пользователем ПК и свершится чудо. Фронтол сам установит связь, сделает нужные операции и сам разорвет соединение по окончании всех процедур обмена данными.

Тех.поддержка

Группа: Администраторы
Сообщений: 58 114
Регистрация: 25.9.2008
Из: Москва
Пользователь №: 14 717

Опытный

Группа: Пользователи
Сообщений: 492
Регистрация: 9.9.2008
Из: Истра
Пользователь №: 14 572

Windows socket error 10051 сделана попытка выполнить операцию на сокете при отключенной сети

В двух словах, Фронтол не может использовать текущее соединение для обмена данными, поскольку оно, текущее соединение, не подключено к сети. Текущее соединение подражумевает под собой соединение по локальной сети. Укажите в данном параметре соединение, которое Вы используете для выхода в интернет, перезапустите Фронтол сервис, в указанном соединении укажите, что логин и пароль используются любым пользователем ПК и свершится чудо. Фронтол сам установит связь, сделает нужные операции и сам разорвет соединение по окончании всех процедур обмена данными.

Кхе, это, конечно всё круто, но повторюся. Используется USB адаптер WiFi Zyxel. Он определяется в системе как беспроводной сетевой адаптер WiFi.
Интернет, как таковой, присутствует постоянно. Прием почты автоматом идет без проблем, а вот отправка — никак ! (((
И как в настройках ЭЛ. почты Frontol-a указать другое соединение, кроме как «Текущее» . , если вариантов Frontol не дает, а прописать вручную в этом поле ничо нельзя ??

Источник

Форум казахстанского налогоплательщика

Поиск по всем бухгалтерским и налоговым сайтам Казахстана:

  • Список форумовПрограммное обеспечение НК МФ РКСГДС
  • Написав интересную тему — получите приглашение
  • FAQ
  • Вход
  • Налогоплательщику
    • Налоговый и бухгалтерский учет
      • Налоговый и бухгалтерский учет
      • Избранное
      • Видео записи и слайды по Налоговому Кодексу
    • Специальные налоговые режимы
    • Налоговые проверки
    • Труд зарплата кадры
    • Экономика и финансы Казахстана и мира
  • Налоговые программы
    • Основные
    • Скачать налоговые программы
    • Общие вопросы налоговых программ
      • Общие проблемы налоговых программ
      • Избранное
      • Не принята сервером форма Коды ошибок
      • Как создать профайл
      • Как запросить уведомление
      • Как отправить дополнительную форму
    • СГДС-3
      • Форум о проблемах СГДС
      • Избранное
      • Рекомендуемые настройки СГДС
      • Как устанавливать или обновлять СГДС3
      • СГДС 202
    • ЭФНО
      • Форум о проблемах ЭФНО
      • Избранное
      • Как устанавливать или обновлять ЭФНО
      • ИС ЭФНО для госслужащих ф.210
    • ИСИД
      • Форум о проблемах ИСИД
      • Избранное
      • Как устанавливать или обновлять ИСИД
    • ИС НДС
      • Форум о проблемах ИС НДС
      • Избранное
      • Как устанавливать обновлять ИС НДС
    • ИС НДС
      • Форум о проблемах ИС НДС
      • Избранное
      • Как устанавливать, обновлять ИС НДС
    • ИНИС
      • Форум о проблемах ИНИС
      • Избранное
      • Как устанавливать или обновлять ИНИС
      • Ошибка 20000 verifyresult
    • А также
    • ИС МОП
      • Форум о проблемах ИС МОП
      • Избранное
      • Как устанавливать или обновлять ИС МОП
    • ИС Акциз Декларант
      • Форум о проблемах ИС Декларант
      • Избранное
      • Как устанавливать, обновлять Декларант
    • Как начать работать с налоговыми програмами
    • Графики состояния загруженности серверов НК
    • Другие программы
    • Кабинет налогоплательщика РК
    • ИС СОНО
  • Клуб Налогоплательщиков
    • Как вступить в Клуб
    • Информационные выпуски
  • Другое
    • Другие вопросы
    • Беседка
    • Компании
    • Полезные сайты
    • О работе Форума налогоплательщиков РК
    • Помочь нам СМС-кой
  • Законы для НП
    • Раздел: Законы для налогоплательщиков
    • Избранное
    • Налоговый кодекс РК 2009
  • Регистрация
    • Регистрация
    • Забыли пароль?
    • Повторно выслать код активации
    • Вход

Как зарегистрироваться на форуме?

Блог имени ludaramblerru9 (темы, которые создал(а) участник форума ludaramblerru9)

Windows socket error 10051 Сделана попытка выполнить операци

Re: СГДС-3 версия 3.0.1.202

ludaramblerru9 » 16 янв 2009, 19:50

Эта тема в сообществах:

Re: СГДС-3 версия 3.0.1.202

sokref » 16 янв 2009, 19:56

Windows socket error 10051 Сделана попытка выполнить операци

zlodey8080 » 06 фев 2009, 11:02

Re: Не работает МОНИТОР

zlodey8080 » 06 фев 2009, 11:12

Re: Windows socket error 10051 Сделана попытка выполнить операци

sokref » 06 фев 2009, 11:26

Re: Windows socket error 10051 Сделана попытка выполнить операци

zlodey8080 » 06 фев 2009, 11:50

Re: Windows socket error 10051 Сделана попытка выполнить операци

sokref » 06 фев 2009, 12:06

Re: Windows socket error 10051 Сделана попытка выполнить операци

zlodey8080 » 06 фев 2009, 12:11

Re: Windows socket error 10051 Сделана попытка выполнить операци

sokref » 06 фев 2009, 12:20

Re: Windows socket error 10051 Сделана попытка выполнить операци

Sharip156 » 26 авг 2009, 12:23

Сокреф, я отключил файруоллы и брандмаузер, все равно не заходит. А выдает новую ошибку 10061, раньше выдавала ошибку 10051.

И у меня подключение по локальной сети ( Мегалайн)

Re: Windows socket error 10051 Сделана попытка выполнить операци

sokref » 26 авг 2009, 14:26

Re: Windows socket error 10051 Сделана попытка выполнить операци

Sharip156 » 26 авг 2009, 15:20

Re: Windows socket error 10051 Сделана попытка выполнить операци

Sharip156 » 26 авг 2009, 15:23

убрал галочку на прокси )

Re: Windows socket error 10051 Сделана попытка выполнить операци

nartau » 09 фев 2010, 16:45

Sharip156 писал(а): а все работает!)

убрал галочку на прокси )

Sharip156
У меня такая же проблема была, убрал галочку на прокси и все заработало. Спасибо большое, форуму, за то что собрали тааакой внушительный сообщество!

Re: Windows socket error 10051 Сделана попытка выполнить операци

Aizhan_Sh » 15 фев 2010, 18:56

Re: Windows socket error 10051 Сделана попытка выполнить операци

Кайрат-F2 » 15 фев 2010, 19:45

Вы уверены, что ошибка 10051 у Вас показывается? Думаю нет.
Если проблемы с криптосистемой, то правильно будет открыть раздел по СГДС и посмотреть описание проблем и решений в разделе sgds-gdms/ — он как раз посвящен СГДС.

Хорошо, что не в разделе про Декларант написали, но тут чуть темой ошиблись

  • Похожие темы Ответы Просмотры Последнее сообщение
  • Windows Socket error (10060), on API connect
    FR05T » 18 апр 2008, 10:39 7 8826 sokref
    23 апр 2010, 12:13
  • При подключении СГДС ошибка Windows socket error 10049
    cnik » 17 ноя 2008, 14:22 1 2319 sokref
    17 ноя 2008, 14:29
  • Write error 998, Неверная попытка доступа к адресу памяти
    1 , 2 merkury » 16 май 2009, 10:36 20 5616 merkury
    22 май 2009, 11:14
  • Ключ СГДС Fatal Error
    smitatyana » 13 ноя 2009, 11:54 16 3913 tanyusha_zyk
    31 май 2011, 16:57
  • Криптоключ в состоянии Fatal Error
    1 , 2 , 3 , 4 , 5 taurus26 » 13 апр 2009, 10:26 93 16887 Кайрат-F2
    14 июл 2010, 11:59

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 2

Источник

Normally, SMTP error 10051 occurs while sending emails from email clients like Outlook, Thunderbird, etc.

Mostly, it occurs due to Network unreachable issue.

Here at Bobcares, we have seen several such SMTP related errors as part of our Server Management Services for web hosts and online service providers.

Today we’ll take a look at how to fix this SMTP error.

SMTP socket error 10051 – Causes and Fixes

Now, let’s see the different causes of this error. Also, let’s see how our Support Engineers fix it.

ISP firewall issues

Many ISP providers prevent their users from accessing “outside” SMTP servers using conventional e-mail programs like Outlook, Outlook Express.

So in order to prevent spamming on the server, the ISP’S block port number 25.

Solution

In order to verify if the ISP is blocking SMTP connections (port 25) or not, our Support Engineers ask the client to telnet the SMTP server from the Command prompt (DOS prompt):

1. Start >> Run >> enter “command” >> Click ok
2. Then enter the below command at the dos prompt

telnet mail.domain.com 25

If we find any problem with this connectivity at the ISP level, then we suggest our customers contact their ISP to remove the block on that port.

SMTP authentication issue

Another reason could be an improper SMTP authentication from the sender end.

In simple words, the error means that the SMTP server needs authentication. So, If a sender tries to connect to the SMTP server without authentication, the connection will be refused with this error SMTP error 10051.

Solution

First, we check the email client settings and ensure that SMTP authentication is enabled in the sender’s email client.

For example, In Outlook, we verify the SMTP server settings by following below steps:

First, we open the email client program (Outlook Express, Outlook) and from this, Tools >> Account Settings >> More settings >> Outgoing server tab >> My Outgoing server (SMTP) requires authentication.

Antivirus on PC causes SMTP error 10051

Some third-party antivirus installed on the user’s PC can block the connection from certain applications.

Also, the established connection can be aborted by software. This can be possibly done by an antivirus program.

Solution

In this case, we advise our customers to disable the antivirus software or tweak the antivirus settings.

[Still, not able to resolve this SMTP error? We can help you in fixing it]

Conclusion

In short, SMTP error 10051 occurs due to improper SMTP authentication, ISP firewall issues, Antivirus on PC, and so on. Today, we saw how our Support Engineers resolve this error.

PREVENT YOUR SERVER FROM CRASHING!

Never again lose customers to poor server speed! Let us help you.

Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.

GET STARTED

var google_conversion_label = «owonCMyG5nEQ0aD71QM»;

  • Remove From My Forums
  • Question

  • Our exchange 2013 CU2 (CAS+MBX, Win2012) was sending emails to Internet using another server (a kerio email server) and outbound internet email was working as expected.

    We have now removed the Kerio server, I also removed the kerio_Send_Connector I was using to send emails to internet and I also changed the email domain in Exchange to be authoritative. I created a new Internet send connector with default values, but the same
    bad behavior is present.

    Our Exchange 2013 receives emails internally and externally with no problems. The problems are sending emails to Internet. I am suspecting something in the firewall but i need to do some more research.

    If from the same Exchange server I telnet to an Internet email host:25 I do get the smtp banner but as soon as I start typing HELO/EHLO I get disconnected and errors are logged.

    Errors when sending emails to any emails address (this is from an email sent to google, all others are the same):
    ****
    Remote Server at aspmx3.googlemail.com (74.125.136.26) returned ‘400 4.4.7 Message delayed’
    7/1/14 9:52:44 a. m. — Remote Server at aspmx3.googlemail.com (74.125.136.26) returned ‘441 4.4.1 Error encountered while communicating with primary target IP address: «Failed to connect. Winsock error code: 10051, Win32 error code: 10051.» Attempted
    failover to alternate host, but that did not succeed. Either there are no alternate hosts, or delivery failed to all alternate hosts. The last endpoint attempted was 74.125.136.26:25’

    ****
    I cannot find any references from such Winsock error that are related to Exchange 2013.

    So far all email is being queued at the Exchange Server 2013. I am afraid to install CU3 and make things worse.

    Thanks for your comments.

Answers

  • Just check if the receive connector settings are set to fine

    check the send connector properties and see whether it is  set to use DNS to route emails through external DNS/Internal DNS or smart host .

    Do a telnet to external domain like hotmail,yahoo and see  at what transaction you are getting an error

    Enable verbose logging, restart the transport service and check if you get the same error in the verbose logs as well

    Get in touch with the ISP and see if the port 25 for Outbound SMTP is  opened.

    YOu can check if SMTP Proxy is enabled in the firewall. If so disable the SMTP proxy in the firewall and check.
    Good Luck!!

    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question.

    That will encourage me — and others — to take time out to help you.
    Regards,
    Sathish

    • Marked as answer by

      Tuesday, February 11, 2014 8:10 AM


Как зарегистрироваться на форуме?

Блог имени ludaramblerru9 (темы, которые создал(а) участник форума ludaramblerru9)

Правила форума
Прежде чем задать вопрос про СГДС, внимательней прочитайте темы и обсуждения в этом разделе. 95% проблем с СГДС уже имеют решения на этом форуме. Вы быстрее найдете решение, если прочтете темы.



Re: СГДС-3 версия 3.0.1.202

Сообщение sokref » 16 янв 2009, 19:56

«сделана попытка выполнить операцию на сокете при отключенной сети» — значит Вы пытаетесь подключиться при отсутствии сети. Отключитесь от интернета и подключитесь повторно. После этого повторно попытайтесь подключиться к СГДС. В некоторых случаях необходимо полностью закрыть все налоговые программы и открыть повторно

Не спрашивайте, что на форуме могут сделать для Вас. Спросите, что Вы можете сделать для других и помощь Вам вернется
Можете послать СМС, дать ответ на чей-то вопрос, поднять интересную тему или написать наш адрес на своем бедре ;-)

sokref
Эксперт-Куратор
 
Сообщения: 9576
Зарегистрирован: 26 янв 2008, 20:30
Профессия: Компьютерщик (не 1С)
Блог имени sokref
Активность участника








Re: Windows socket error 10051 Сделана попытка выполнить операци

Сообщение sokref » 06 фев 2009, 12:20

Попробуйте временно его (антивирус Касперского) отключить. Возможно Вы в нем отключили доступ СГДС к Интернету

Не спрашивайте, что на форуме могут сделать для Вас. Спросите, что Вы можете сделать для других и помощь Вам вернется
Можете послать СМС, дать ответ на чей-то вопрос, поднять интересную тему или написать наш адрес на своем бедре ;-)

sokref
Эксперт-Куратор
 
Сообщения: 9576
Зарегистрирован: 26 янв 2008, 20:30
Профессия: Компьютерщик (не 1С)
Блог имени sokref
Активность участника










Привет. Мы ищем таланты:

  • Тебе интересен форум? Ты хочешь участвовать и развивать его?
  • Тебе интересно в твоей профессии?
  • Тебе есть чем поделиться из твоего опыта с коллегами на форуме? Есть чем поделиться из собственного опыта, научить или рассказать?

Мы ищем таланты, которые помогут развить форум.
Что взамен:

  • Получить приглашение на форум
  • Радость общения
  • Совместное развитие

Как: об этом написано на странице: http://tandem.f2.kz/

Вернуться в СГДС

    • Windows Socket error (10060), on API connect
      FR05T » 18 апр 2008, 10:39
      7 Ответы
      8839 Просмотры
      Последнее сообщение sokref
      Перейти к последнему сообщению
      23 апр 2010, 12:13
    • При подключении СГДС ошибка Windows socket error 10049
      cnik » 17 ноя 2008, 14:22
      1 Ответы
      2323 Просмотры
      Последнее сообщение sokref
      Перейти к последнему сообщению
      17 ноя 2008, 14:29
    • Write error 998, Неверная попытка доступа к адресу памяти
      merkury » 16 май 2009, 10:36
      20 Ответы
      5624 Просмотры
      Последнее сообщение merkury
      Перейти к последнему сообщению
      22 май 2009, 11:14
    • Ключ СГДС Fatal Error
      smitatyana » 13 ноя 2009, 11:54
      16 Ответы
      3920 Просмотры
      Последнее сообщение tanyusha_zyk
      Перейти к последнему сообщению
      31 май 2011, 16:57
    • Криптоключ в состоянии Fatal Error
      taurus26 » 13 апр 2009, 10:26
      93 Ответы
      16920 Просмотры
      Последнее сообщение Кайрат-F2
      Перейти к последнему сообщению
      14 июл 2010, 11:59

    Кто сейчас на конференции

    Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 2

    A socket error, such as socket error 10051, occurs whenever one computer attempts to connect to another network or server. Error 10051 happens because the other network is unreachable, usually because there is a problem with the router or modem on the computer attempting the connection. This can be as harmless as the router being shut off or a firewall getting in the way. At the serious end of the spectrum, the router may be misconfigured or may have been destroyed and is nonfunctioning.

    Whenever a connection cannot be made, such as in the case of socket error 10051, one of the most common culprits is a firewall program. Though made to keep the computer safe, a firewall may restrict friendly connections. One should disable the firewall and see if the connection can go through. If the socket error still appears, then the firewall is not at fault.

    Socket error 10051 is commonly caused by problems with a router or modem.

    Socket error 10051 is commonly caused by problems with a router or modem.

    If the router or modem is down, then there is no way for the computer to connect to another server. Someone may have bumped into the router or meant to reset the router and never turned it back on. Turning the router back on should restore the Internet server and allow the computer to connect to a server. If the router has been damaged, by being hit or having liquid spilled on it, for example, the router may need to be completely replaced.

    A misconfigured router can cause socket error 10051. The misconfiguration means the router believes it cannot communicate with the server, so it doesn’t attempt the connection. Some advanced users may be able to find the problem, but it is best to call the Internet provider and get someone there to check out the router configuration. The provider will be able to find the problem and will tell the user how to fix it.

    Some users have more than one router active at the same time. If there is more than one, one portion of the computer may believe it has to talk with one router, while another section believes another router has to be used. In this instance, neither router is designated as the primary router so neither will work. Configuring the computer to speak with only one router will alleviate this problem.

    A similar problem that some users believe can cause socket error 10051 is when the computer is told not to use any router. This would cause the network to be unreachable, but it yields a different socket error. When the computer doesn’t have any router configured, this returns a socket error 10065.

    I setup a new exchange 2016 environment and had mail flow working inbound and outbound without issue and earlier this week outbound has stopped.

    I don’t recall making any changes to my environment that would break anything.

    I’ve got my send connector just using MX records to send, no smart host envolved. No matter who i try to email, they refuse my connection.

    Firewall allows all outbound traffic and i have a seperate domain with its exchange environment working fine going through the same firewall.

    could it be a certificate/tls issue?

    This is in my smtp log for the send connector: 2018-03-22T18:29:33.193Z,BNAMB01,08D59021B3F8B5BA,0,,108.177.119.27:25,,SendRoutingHeaders,Set Session Permissions 2018-03-22T18:29:33.193Z,BNAMB01,08D59021B3F8B5BA,1,,108.177.119.27:25,,,attempting to connect 2018-03-22T18:29:34.196Z,BNAMB01,08D59021B3F8B5BA,2,,108.177.119.27:25,,,»Failed to connect. Winsock error code: 10061, Win32 error code: 10061, Destination domain: gmail.com, Error Message: No connection could be made because the target machine actively refused it 108.177.119.27:25.» 2018-03-22T18:29:34.197Z,BNAMB01,08D59021B3F8B5BB,0,,[2a00:1450:4013:c07::1a]:25,,SendRoutingHeaders,Set Session Permissions 2018-03-22T18:29:34.197Z,BNAMB01,08D59021B3F8B5BB,1,,[2a00:1450:4013:c07::1a]:25,,,attempting to connect 2018-03-22T18:29:34.197Z,BNAMB01,08D59021B3F8B5BB,2,,[2a00:1450:4013:c07::1a]:25,,,»Failed to connect. Winsock error code: 10051, Win32 error code: 10051, Destination domain: gmail.com, Error Message: A socket operation was attempted to an unreachable network [2a00:1450:4013:c07::1a]:25.» 2018-03-22T18:29:34.197Z,BNAMB01,08D59021B3F8B5BC,0,,64.233.162.27:25,,SendRoutingHeaders,Set Session Permissions 2018-03-22T18:29:34.197Z,BNAMB01,08D59021B3F8B5BC,1,,64.233.162.27:25,,,attempting to connect 2018-03-22T18:29:35.200Z,BNAMB01,08D59021B3F8B5BC,2,,64.233.162.27:25,,,»Failed to connect. Winsock error code: 10061, Win32 error code: 10061, Destination domain: gmail.com, Error Message: No connection could be made because the target machine actively refused it 64.233.162.27:25.» 2018-03-22T18:29:35.201Z,BNAMB01,08D59021B3F8B5BD,0,,[2a00:1450:4010:c0f::1a]:25,,SendRoutingHeaders,Set Session Permissions 2018-03-22T18:29:35.201Z,BNAMB01,08D59021B3F8B5BD,1,,[2a00:1450:4010:c0f::1a]:25,,,attempting to connect 2018-03-22T18:29:35.201Z,BNAMB01,08D59021B3F8B5BD,2,,[2a00:1450:4010:c0f::1a]:25,,,»Failed to connect. Winsock error code: 10051, Win32 error code: 10051, Destination domain: gmail.com, Error Message: A socket operation was attempted to an unreachable network [2a00:1450:4010:c0f::1a]:25.»

    Понравилась статья? Поделить с друзьями:
  • Windows setup experienced an unexpected error to install windows restart the installation windows 7
  • Windows update error 80070002
  • Windows setup encountered an internal error while loading or searching
  • Windows update error 0xc1900223
  • Windows service error 1068