Search found 51 matches

by VanCleef
Thu Jan 02, 2020 6:23 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

I still prefer to prioritize only the udp ports and leave ack and tcp aside. Using basically the same as before: iptables -t mangle -N qos_in iptables -t mangle -F qos_in iptables -t mangle -A PREROUTING -i eth0.2 -j qos_in iptables -t mangle -A INPUT -i eth0.2 -j qos_in iptables -t mangle -A FORWAR...
by VanCleef
Thu Jan 02, 2020 7:39 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

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
by VanCleef
Wed Jan 01, 2020 5:40 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

Are you both using DSCP or just qos gargoyle?
by VanCleef
Mon Dec 23, 2019 7:50 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

I would like to test, you can send by private message.
by VanCleef
Wed Dec 18, 2019 5:25 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

Hello again I currently disabled QoS Gargoyle and using only DSCP, the result is better than expected. Not even torrents disturb my game. using this: iptables -t mangle -N qos_plus iptables -t mangle -A PREROUTING -j qos_plus iptables -t mangle -A INPUT -j qos_plus iptables -t mangle -A FORWARD -j q...
by VanCleef
Wed Dec 11, 2019 7:56 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

I recommend changing CS7 on pppoe interface line by CS0 or CS3 max.

Because using cs7 you are giving higher priority to other non-gaming connections.
by VanCleef
Sat Dec 07, 2019 9:10 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

I am also testing better MTU values, and it looks like xbox was right to have MTU 1480 as default. Games are more responsive on my ps4. The mtu in gargoyle interface i do not change. If you play on PC and have trouble for open sites after the change, you can use these commands to set mtu: iptables -...
by VanCleef
Thu Dec 05, 2019 4:07 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

Hello

Based on the documentation, for wifi is also recommended CS4 for games.
https://tools.ietf.org/html/rfc8325
https://tools.ietf.org/id/draft-ietf-ts ... 11-05.html
I play over wifi and it's good.

But if the game flows better in voice class, like EF on cable, it will be CS6 on wifi.
by VanCleef
Wed Dec 04, 2019 9:27 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

qos_plus is a random name of your choice.

In this rule qos_plus means PRE / INP / FOR / OUT / POST at the same time.

Just an alternative to simplifying the rules.
by VanCleef
Wed Dec 04, 2019 3:47 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 373623

Re: Best settings for gaming QoS+DSCP

You're right, it's just a different way of writing the rules. eth0 is the wan interface. Using the command ifconfig, the interface that displays your public ip (from internet) will be your wan interface. But maybe using the interface in the rule is not necessary. I have tested your rules too, but fo...