По базовой настройке OpenWRT

FIX AFTER UNINSTALLING PACKAGES

opkg update && opkg install luci-lua-runtime --force-reinstall

RESET SETTINGS SSH

rm -rf /overlay/*
sync
reboot

DISABLE IPv6

Follow the following steps to disable IPV6 on your OpenWrt router:
uci set 'network.lan.ipv6=0'
uci set 'network.wan.ipv6=0'
uci set 'dhcp.lan.dhcpv6=disabled'
/etc/init.d/odhcpd disable
uci commit
Disable RA and DHCPv6 so no IPv6 IPs are handed out:
uci -q delete dhcp.lan.dhcpv6
uci -q delete dhcp.lan.ra
uci commit dhcp
/etc/init.d/odhcpd restart
You can now disable the LAN delegation:
uci set network.lan.delegate="0"
uci commit network
/etc/init.d/network restart
You might as well disable odhcpd:
/etc/init.d/odhcpd disable
/etc/init.d/odhcpd stop
And finally you can delete the IPv6 ULA Prefix:
uci -q delete network.globals.ula_prefix
uci commit network
/etc/init.d/network restart

TMDB BYPASS

Network - DHCP and DNS - Forwards. В DNS Forwards добавить
/.themoviedb.org/9.9.9.9
/.tmdb.org/9.9.9.9
/tmdb-image-prod.b-cdn.net/9.9.9.9
Если роутер выступает в качестве локального DNS-сервера, нужно сделать 3 статические DNS-записи:
api.tmdb.org 54.192.99.23
image.tmdb.org 138.199.37.231
images.tmdb.org 54.192.99.19

ZAPRET INSTALL

curl -fsSL https://raw.githubusercontent.com/remittor/zapret-openwrt/zap1/zapret/update-pkg.sh -o /tmp/zap.sh && sh /tmp/zap.sh -u 1

ZAPRET2 INSTALL

curl -fsSL https://raw.githubusercontent.com/remittor/zapret-openwrt/zap1/zapret/update-pkg.sh -o /tmp/zap.sh && sh /tmp/zap.sh -u 2

ZAPRET TUNE

sh <(wget -O - https://raw.githubusercontent.com/StressOzz/Zapret-Manager/main/Zapret-Manager.sh)
или
wget -O /tmp/Zapret-Manager.sh https://raw.githubusercontent.com/StressOzz/Zapret-Manager/main/Zapret-Manager.sh && sh /tmp/Zapret-Manager.sh

TORRSERVER INTERACTIVE SETUP (Not Worked on OpenWRT)

curl -s https://raw.githubusercontent.com/YouROK/TorrServer/master/installTorrServerLinux.sh | sudo bash