так можно попробовать убрать маркировку, но это сломает QoS для voip и т.д.
cat << "DSCP" > /etc/nftables.d/05-rules-ingress.nft
### DSCP marking rules ###
chain ingress {
type filter hook ingress device wan priority -500; policy accept;
iif wan counter ip dscp set cs0 comment "Wash all ISP DSCP marks to CS0 (IPv4)"
iif wan counter ip6 dscp set cs0 comment "Wash all ISP DSCP marks to CS0 (IPv6)"
}
DSCP