> For the complete documentation index, see [llms.txt](https://docs.proxyshard.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.proxyshard.com/questions-and-answers/faq/how-to-check-proxy.md).

# Как проверить работоспособность прокси

Если прокси не подключаются или вы хотите убедиться, что всё работает, есть два простых способа проверки.

***

## Способ 1: Proxy Tester на сайте

Самый быстрый вариант.

Откройте наш [Proxy Tester](https://proxyshard.com/proxy-tester), вставьте прокси в поле и нажмите **Test Proxy**.

Подробнее о возможностях и форматах читайте в статье [Proxy Tester](/tools/proxy-tester.md).

***

## Способ 2: Проверка через curl (командная строка)

Этот способ подходит, если нужно быстро проверить подключение прямо с вашего компьютера. Работает на Windows, macOS и Linux.

### Windows

Откройте командную строку: нажмите <mark style="color:blue;">WIN+R</mark>, введите `cmd` и нажмите Enter.

### macOS / Linux

Откройте Terminal (на macOS через Spotlight или папку Applications > Utilities).

***

### Проверка HTTP прокси

```bash
curl -x http://ЛОГИН:ПАРОЛЬ@IP_ПРОКСИ:ПОРТ -I https://www.google.com
```

Пример с реальными данными:

```bash
curl -x http://KWFFEKf:LDLFEPF@88.99.123.233:44454 -I https://www.google.com
```

### Проверка SOCKS5 прокси

```bash
curl --socks5 ЛОГИН:ПАРОЛЬ@IP_ПРОКСИ:ПОРТ -I https://www.google.com
```

Пример:

```bash
curl --socks5 KWFFEKf:LDLFEPF@88.99.123.233:44454 -I https://www.google.com
```

***

### Как понять результат

{% hint style="success" %}
**Прокси работает.** Если в ответе вы видите `HTTP/1.1 200 OK` или `HTTP/2 200`, значит соединение прошло успешно.
{% endhint %}

{% hint style="danger" %}
**Прокси не работает.** Если вы получили ошибку вроде `Connection refused`, `Connection timed out` или `Could not resolve proxy`, значит подключиться не удалось.
{% endhint %}

### Что делать, если не подключается

1. Перепроверьте логин, пароль, IP и порт. Частая ошибка: путают **HTTP** и **SOCKS5** порты
2. Попробуйте подключиться через VPN, чтобы исключить блокировку со стороны вашего провайдера
3. Подождите 2-3 минуты после покупки: серверам нужно время на обновление
4. Если ничего не помогло, обратитесь в [поддержку](/contact-us.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.proxyshard.com/questions-and-answers/faq/how-to-check-proxy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
