From b37482312fd05550ce62eb9b5a79f3da9b73790e Mon Sep 17 00:00:00 2001 From: vitaly Date: Sun, 7 Jun 2026 19:37:57 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=BF=D1=83=D0=BD=D0=BA=D1=82=206=20?= =?UTF-8?q?=E2=80=94=20=D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20=D1=81=D0=B5=D1=82=D1=8C=20(=D0=B7=D0=B0=D0=BF=D1=83?= =?UTF-8?q?=D1=81=D0=BA=D0=B0=D0=B5=D1=82=20tests/test=5Fnetwork.sh)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- setup.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 6ff39c8..58d14a0 100755 --- a/setup.sh +++ b/setup.sh @@ -34,7 +34,10 @@ echo "" echo -e " ${BLD}5) Статус${CLR}" echo -e " ${GRY}Amnezia, UFW, сервисы, установленные AI инструменты и ключи.${CLR}" echo "" -echo -n "Выбери [1-5] или Enter для выхода: " +echo -e " ${BLD}6) Проверить сеть${CLR}" +echo -e " ${GRY}Тесты маршрутизации: .ru напрямую, остальное через Amnezia.${CLR}" +echo "" +echo -n "Выбери [1-6] или Enter для выхода: " read -r choice echo "" @@ -130,6 +133,9 @@ case "$choice" in fi done ;; + 6) + bash tests/test_network.sh + ;; "") exit 0 ;;