All streams
Search
Write a publication
Pull to refresh
0
0
Send message

Некоторые отписываются, что помогает вообще отключение протокола QUIC добавив строчку

iptables -I FORWARD -i br0 -p udp --dport 443 -j DROP

Или отдельно запретив его скриптом в /opt/etc/ndm/netfilter.d/

#!/opt/bin/sh
[ "$type" == "ip6tables" ] && exit 0
[ "$table" != "mangle" ] && exit 0   # check the table name
ipta()
{
	iptables -C "$@" >/dev/null 2>/dev/null || iptables -I "$@"
}
ipta FORWARD -p udp --dport 443 -j DROP

Information

Rating
Does not participate
Registered
Activity