Best settings for gaming QoS+DSCP

Report issues relating to bandwith monitoring, bandwidth quotas or QoS in this forum.

Moderator: Moderators

SirSWE
Posts: 88
Joined: Sat Jul 13, 2019 2:54 pm

Re: Best settings for gaming QoS+DSCP

Post by SirSWE »

What did you change to?

-taz-
Posts: 44
Joined: Wed Oct 23, 2019 11:21 pm

Re: Best settings for gaming QoS+DSCP

Post by -taz- »

openwrt-sfe-flowoffload
but in my case it is better gargoyle

SirSWE
Posts: 88
Joined: Sat Jul 13, 2019 2:54 pm

Re: Best settings for gaming QoS+DSCP

Post by SirSWE »

My friend said it was much smoother with Software flow and hardware flow enabled. Did you use fq_codel with cake?

-taz-
Posts: 44
Joined: Wed Oct 23, 2019 11:21 pm

Re: Best settings for gaming QoS+DSCP

Post by -taz- »

fq_codel

SirSWE
Posts: 88
Joined: Sat Jul 13, 2019 2:54 pm

Re: Best settings for gaming QoS+DSCP

Post 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.

-taz-
Posts: 44
Joined: Wed Oct 23, 2019 11:21 pm

Re: Best settings for gaming QoS+DSCP

Post by -taz- »

if that's why I went back to the gargoyle it's better in games

SirSWE
Posts: 88
Joined: Sat Jul 13, 2019 2:54 pm

Re: Best settings for gaming QoS+DSCP

Post by SirSWE »

Yeah I noticed 1.12 is much smoother then 1.11.

VanCleef
Posts: 51
Joined: Tue Jul 09, 2019 9:01 am

Re: Best settings for gaming QoS+DSCP

Post by VanCleef »

Are you both using DSCP or just qos gargoyle?
TP-Link Archer C7 v2
Gargoyle: 1.10.0
Down: 38MB
Up: 6.5MB

-taz-
Posts: 44
Joined: Wed Oct 23, 2019 11:21 pm

Re: Best settings for gaming QoS+DSCP

Post 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

VanCleef
Posts: 51
Joined: Tue Jul 09, 2019 9:01 am

Re: Best settings for gaming QoS+DSCP

Post by VanCleef »

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

Post Reply