I don't know the definitive IP range for the Trend Micro servers, so I went with the /24 of the IP I currently see the wred process talking to. I also had to exclude port 80 from the VPNFix rule to avoid overriding my desired mark (I had also previously added 853 to this exclusion for DoT):
Not sure if this is really going to do any good, but in the spirit of not wanting anything to inhibit speedy websurfing, I thought I would bring this up to see if anyone else has thought about it before and if there is any value in doing this.Code:iptables -D OUTPUT -t mangle -o $wan -p tcp -m multiport ! --dports 53,123,853,80 -j MARK --set-mark ${Downloads_mark_up} &> /dev/null #VPN Fix - (Fixes upload traffic not detected when the router is acting as a VPN Client)
Not answering your question directly - but is it necessary for those of us using DNS-over-TLS (i.e. firmwares 384.11 onwards) in conjunction with this script - to add port 853 to the rule above?
BTW isn't port 53 and 123, regular DNS and ntp respectively? But aren't they UDP, not TCP?