> For the complete documentation index, see [llms.txt](https://utm-1.gitbook.io/utm-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://utm-1.gitbook.io/utm-docs/dokumentaciya/utm-it/programmnoe-obespechenie/linux-servera/nastroiki/upravlenie-ibp.md).

# Управление ИБП

## Ссылки

Настройка ИБП на Linux: [ghostiam.dev](https://ghostiam.dev/ru/posts/linux-ups/)

Ippon Back Power Pro 800 и Ubuntu Lininux: [kosmoflyko.blogspot.com](https://kosmoflyko.blogspot.com/2011/09/ippon-back-power-pro-800-ubuntu-lininux.html)

Настройка ИБП на примере Ippon Back Power Pro 800: [kubuntu.ru](https://kubuntu.ru/node/10011)

Network UPS Tools: [networkupstools.org](https://networkupstools.org/index.html)

## Общая информация

**ИБП Powerman Back Pro Plus совместим с Linux**. Это линейно-интерактивные модели мощностью 650–2000 ВА с интерфейсом USB, которые предназначены для защиты ПК, рабочих станций, серверов и другого оборудования. Для подключения и настройки ИБП под Linux используется **система NUT**. Она позволяет управлять работой ИБП, контролировать его параметры и настраивать уведомления при изменении состояния.

### Драйвер

ИБП PowerMan BackPro 2000 Plus

[genericups](https://networkupstools.org/docs/man/genericups.html) upstype=4

Информация с сайта [networkupstools.org](https://networkupstools.org/stable-hcl.html)

### Пошаговая инструкция

* **Установить NUT**. Например, в Ubuntu пакет устанавливается командой&#x20;

  ```
  sudo apt-get install nut
  ```

  .
* **Настроить правила UDEV**. Для USB-подключения ИБП нужно создать файл в&#x20;

  ```
  /lib/udev/rules.d/52-nut-usbips.rules
  ```

  . В нём указать идентификаторы устройства (VendorID и ProductID).
* **Указать параметры подключения** в файле&#x20;

  ```
  /etc/nut/ups.conf
  ```

  . В нём нужно указать:

  * **Имя ИБП** в системе NUT;
  * **Имя драйвера** для подключения (для ИБП — blazer\_usb);
  * **Имя файла порта** — для USB можно указать «auto».
* **Настроить мониторинг ИБП** в файле&#x20;

  ```
  /etc/nut/upsmon.conf
  ```

  Например, можно задать, чтобы ИБП выключал ПК при низком заряде батареи (процент указан в параметре battery.charge.low ИБП).
* **Запустить сервисы** NUT:&#x20;

  ```
  systemctl start nut-driver
  ```

  ```
  systemctl start nut-server
  ```

  ```
  systemctl start nut-client
  ```
* **Проверить статус ИБП** командой&#x20;

  ```
  upsc ups
  ```

  &#x20;— система должна вывести информацию об ИБП.


---

# 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://utm-1.gitbook.io/utm-docs/dokumentaciya/utm-it/programmnoe-obespechenie/linux-servera/nastroiki/upravlenie-ibp.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.
