Best settings for gaming QoS+DSCP
Moderator: Moderators
Re: Best settings for gaming QoS+DSCP
What did you change to?
Re: Best settings for gaming QoS+DSCP
openwrt-sfe-flowoffload
but in my case it is better gargoyle
but in my case it is better gargoyle
Re: Best settings for gaming QoS+DSCP
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
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
if that's why I went back to the gargoyle it's better in games
Re: Best settings for gaming QoS+DSCP
Yeah I noticed 1.12 is much smoother then 1.11.
Re: Best settings for gaming QoS+DSCP
Are you both using DSCP or just qos gargoyle?
TP-Link Archer C7 v2
Gargoyle: 1.10.0
Down: 38MB
Up: 6.5MB
Gargoyle: 1.10.0
Down: 38MB
Up: 6.5MB
Re: Best settings for gaming QoS+DSCP
try this setting
without touching mtu




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
without touching mtu




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
I use this site to know the mtu, but did not realize that also showed the field tos/dscp! nice find
TP-Link Archer C7 v2
Gargoyle: 1.10.0
Down: 38MB
Up: 6.5MB
Gargoyle: 1.10.0
Down: 38MB
Up: 6.5MB