Page 8 of 15

Re: Best settings for gaming QoS+DSCP

Posted: Thu Dec 26, 2019 6:11 pm
by SirSWE
What did you change to?

Re: Best settings for gaming QoS+DSCP

Posted: Thu Dec 26, 2019 8:25 pm
by -taz-
openwrt-sfe-flowoffload
but in my case it is better gargoyle

Re: Best settings for gaming QoS+DSCP

Posted: Sat Dec 28, 2019 11:31 am
by SirSWE
My friend said it was much smoother with Software flow and hardware flow enabled. Did you use fq_codel with cake?

Re: Best settings for gaming QoS+DSCP

Posted: Sun Dec 29, 2019 4:28 am
by -taz-
fq_codel

Re: Best settings for gaming QoS+DSCP

Posted: Sun Dec 29, 2019 3:07 pm
by SirSWE
I dont know what games you are playing but it was alright in the older CoD titles , I still prefer Gargoyles qos. Me and my friend had some bad experience with Sfe + flow offload in modern warfare.

Re: Best settings for gaming QoS+DSCP

Posted: Sun Dec 29, 2019 5:03 pm
by -taz-
if that's why I went back to the gargoyle it's better in games

Re: Best settings for gaming QoS+DSCP

Posted: Tue Dec 31, 2019 5:44 am
by SirSWE
Yeah I noticed 1.12 is much smoother then 1.11.

Re: Best settings for gaming QoS+DSCP

Posted: Wed Jan 01, 2020 5:40 pm
by VanCleef
Are you both using DSCP or just qos gargoyle?

Re: Best settings for gaming QoS+DSCP

Posted: Wed Jan 01, 2020 9:46 pm
by -taz-
try this setting

without touching mtu


Image

Image

Image

Image

iptables -t mangle -A POSTROUTING -s 192.168.1.8/29 -j DSCP --set-dscp-class CS1
iptables -t mangle -A POSTROUTING -d 192.168.1.8/29 -j DSCP --set-dscp-class CS1
iptables -t mangle -A PREROUTING -s 192.168.1.8/29 -j DSCP --set-dscp-class CS1
iptables -t mangle -A PREROUTING -d 192.168.1.8/29 -j DSCP --set-dscp-class CS1

iptables -t mangle -A POSTROUTING -j DSCP --set-dscp-class EF/101110 -s 192.168.1.124
iptables -t mangle -A POSTROUTING -j DSCP --set-dscp-class EF/101110 -d 192.168.1.124
iptables -t mangle -A PREROUTING -j DSCP --set-dscp-class EF/101110 -s 192.168.1.124



iptables -t mangle -N qos_plus_up

iptables -t mangle -A PREROUTING -j qos_plus_up
iptables -t mangle -A INPUT -i pppoe-wan -j qos_plus_up
iptables -t mangle -A FORWARD -i pppoe-wan -j qos_plus_up

iptables -t mangle -A qos_plus_up -p tcp -m tcp --tcp-flags PSH PSH -m length --length :60 -j MARK --set-mark 0x2
iptables -t mangle -A qos_plus_up -p tcp -m tcp --tcp-flags ACK ACK -m length --length :60 -j MARK --set-mark 0x2
iptables -t mangle -A qos_plus_up -p tcp -m tcp --tcp-flags SYN SYN -m length --length :60 -j MARK --set-mark 0x2
iptables -t mangle -A qos_plus_up -p tcp -m tcp --tcp-flags RST RST -m length --length :60 -j MARK --set-mark 0x2
iptables -t mangle -A qos_plus_up -p tcp -m tcp --tcp-flags FIN FIN -m length --length :60 -j MARK --set-mark 0x2


iptables -t mangle -N qos_plus_down
iptables -t mangle -A POSTROUTING -o pppoe-wan -j qos_plus_down

iptables -t mangle -A qos_plus_down -p tcp -m tcp --tcp-flags PSH PSH -m length --length :60 -j MARK --set-mark 0x200
iptables -t mangle -A qos_plus_down -p tcp -m tcp --tcp-flags ACK ACK -m length --length :60 -j MARK --set-mark 0x200
iptables -t mangle -A qos_plus_down -p tcp -m tcp --tcp-flags SYN SYN -m length --length :60 -j MARK --set-mark 0x200
iptables -t mangle -A qos_plus_down -p tcp -m tcp --tcp-flags RST RST -m length --length :60 -j MARK --set-mark 0x200
iptables -t mangle -A qos_plus_down -p tcp -m tcp --tcp-flags FIN FIN -m length --length :60 -j MARK --set-mark 0x200





if you analyze with SG TCP / IP Analyzer from https://www.speedguide.net/ With the IP assigned to EF, you will know that DSCP is working with EF and if you analyze with Mobile or another separate PC, it will result in DSCP CS1

Re: Best settings for gaming QoS+DSCP

Posted: Thu Jan 02, 2020 7:39 am
by VanCleef
I use this site to know the mtu, but did not realize that also showed the field tos/dscp! nice find