Search found 51 matches

by VanCleef
Thu Oct 24, 2019 9:58 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

Hello taz
Thanks for sharing!

It may not be a good idea to give ports 80 and 443 high priority because they are mostly used for browsing and video.

Do you play on the PC?
by VanCleef
Thu Oct 24, 2019 7:53 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

Hello

I am currently using MTU 1454, on Gargoyle and my Ps4 too, I am having good results so far.

Edit:
I returned Gargoyle MTU to 1500 because some sites would not open. Ps4 MTU continues 1454 with good results.
by VanCleef
Wed Oct 16, 2019 10:55 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

About the high ping running torrents, this line: iptables -t mangle -A POSTROUTING -j DSCP --set-dscp-class CS0 already marks all non-game or icmp packages as normal priority, thus leaving QoS Gargoyle to manage the bandwith equally, and reducing ping in RTT mode. This line is also important because...
by VanCleef
Wed Oct 16, 2019 10:32 am
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

Good to know it works for you too! Trying to simplify the rules, FORWARD doesn't seem to make much difference, and PREROUTING sometimes has some packet losses. POSTROUTING seems to do well: iptables -t mangle -A POSTROUTING -j DSCP --set-dscp-class CS0 iptables -t mangle -A POSTROUTING -p icmp -j DS...
by VanCleef
Sat Oct 12, 2019 4:47 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

I am currently using this: iptables -t mangle -A PREROUTING -j DSCP --set-dscp-class CS0 iptables -t mangle -A PREROUTING -p icmp -j DSCP --set-dscp-class EF iptables -t mangle -A POSTROUTING -p icmp -j DSCP --set-dscp-class EF iptables -t mangle -A FORWARD -p icmp -j DSCP --set-dscp-class EF iptabl...
by VanCleef
Wed Oct 09, 2019 5:56 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

Use this line too:

##NORMAL
iptables -t mangle -A PREROUTING -j DSCP --set-dscp-class CS0
by VanCleef
Wed Oct 09, 2019 5:17 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

Hello 1. Yes, that is correct. On ps4, you can also use ports 9305-9308, I believe are the ports used for party audio. Whenever I play on my ps4, upnp shows that they are being used. 2. Yes, since the ports being tagged correctly are not necessary, and I also feel it works better without ip. 3. I no...
by VanCleef
Tue Oct 08, 2019 1:11 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

So I believe I finally found the definitive settings that will work for everyone, Pc, xbox, playstation, nintendo... 1- access your router by SSH, on Pc use the Putty, on android, I use JuiceSSH. ip: 192.168.1.1 Port: 22 login: root password: use the one you set in gargoyle 2- use the vi command to ...
by VanCleef
Sat Oct 05, 2019 4:49 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

Yes, qos gargoyle is great, but acts more when link is saturated, while DSCP gives priority to the package at all times. Both together is the best combo. In the openwrt forum has good discussions about DSCP, gave me some ideas, advise to see too. From what I know, CS4 is better for streaming video. ...
by VanCleef
Tue Oct 01, 2019 4:16 pm
Forum: Monitoring / Quota / QoS Issues
Topic: Best settings for gaming QoS+DSCP
Replies: 141
Views: 375419

Re: Best settings for gaming QoS+DSCP

This is my current setting: iptables -t mangle -A PREROUTING -j DSCP --set-dscp-class CS0 iptables -t mangle -A POSTROUTING -p udp -d 192.168.1.142 --dport 1024:65535 -j DSCP --set-dscp-class CS6 iptables -t mangle -A POSTROUTING -p udp -s 192.168.1.142 --sport 1024:65535 -j DSCP --set-dscp-class CS...