как пир конечно
вот примерно так настраивается: https://www.ivpn.net/setup/router/opnsense-wireguard/
вот примерно так настраивается: https://www.ivpn.net/setup/router/opnsense-wireguard/
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu#!/bin/sh
OPNSENSE_URL="https://ip:port"
API_KEY="key"
API_SECRET="secret"
ALIAS_NAME="NNN_ips"
IP_FILE="/tmp/NNN_ips.txt"
add_ip_to_alias() {
local ip="$1"
curl -k -X POST \
-H "Content-Type: application/json" \
-u "${API_KEY}:${API_SECRET}" \
-d "{\"address\":\"${ip}\"}" \
"${OPNSENSE_URL}/api/firewall/alias_util/add/${ALIAS_NAME}"
}
apply_changes() {
curl -k -X POST \
-H "Content-Type: application/json" \
-u "${API_KEY}:${API_SECRET}" \
-d "{}" \
"${OPNSENSE_URL}/api/firewall/alias/reconfigure"
}
while IFS= read -r ip; do
if [ -n "$ip" ]; then
add_ip_to_alias "$ip"
echo "$ip"
fi
done < "$IP_FILE"
apply_changes
Quote from: Clumpton on December 15, 2024, 11:14:26 AMI have 44 lists which gives me about 600 000 blocked domains.I have only 4 lists in unbound blacklist category and they gave me about 900k blocked donains. Everything that can be blocked via domains can be blocked as it is, you don't need an additional service for that.
Quote from: dseven on December 12, 2024, 08:41:11 PMMaybe everyone else is running 4k monitors nowadays,Then I really sympathize with them, it's shallow on 1080p, and on 4k you won't be able to see anything at all).
Quote from: hayate on December 12, 2024, 03:42:49 PMВ syshook запускаю не службу, но напрямую бинарник с нужными параметрамистранно, я истерию и tun2socks запускаю как службы и нормально стартует
Quote from: Balya on December 12, 2024, 02:06:47 PMФайл нужно положить в /usr/local/etc/rc.syshook.d/early/эм. Тоже интересно, откуда такая информация.
Quoteон запускается на старте /usr/local/etc/rc.syshook.d/start файлом 90-singbox
внутри одной строчкой
Quote from: vivekmauli14 on December 10, 2024, 07:38:11 AMI followed these instructions:
Is there a guide or checklist available for this process?