From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-x241.google.com (mail-it0-x241.google.com [IPv6:2607:f8b0:4001:c0b::241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.bufferbloat.net (Postfix) with ESMTPS id 329273B2A0 for ; Sat, 12 Nov 2016 22:05:12 -0500 (EST) Received: by mail-it0-x241.google.com with SMTP id q124so5230729itd.1 for ; Sat, 12 Nov 2016 19:05:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to; bh=GJRc3URTPIMmD85+OLDxiPnavkuPYtWInfoydQUjKZw=; b=JsUGFfU5zCtPWbpG94Eh58BE65nulsoIJzISDDOGUoXAYwmw4hFSjuTTwaZU4lMW2t oh77WVpPQFj23OTCwwFQNRzk4KpXF49QrvUoigRSg8MkPZkgc4eYIFuZcKzaUJ2hRkii Dw5gSFxWiwwc7eCUKbZYgbhChXVwNr8CHX2SLdcB1lMuDdmdf7jWcr3CdHZvIWCI224w DApXU/1JvY9ZBDacGDT8MUjLBaFvDTWzB9lxPld13pOJ7KyM2OorIIEWeZG127S/Vud4 MHzRolnYCKKqb0egFbTRP/Qi7RcJL+Lk524JtUwScpy0Fv+jXAFL21DC+NfTebkMsFzb sqYA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to; bh=GJRc3URTPIMmD85+OLDxiPnavkuPYtWInfoydQUjKZw=; b=ILE+aAZccsFK+DUOZ++y2jyffMLWx8OyfEvQ+0/g7G9NaLX5J8RbZ31gViIoxALFGo zsqzlE7H+xhEE+aYPngIQg/bq9yeCAn+KNG6UwE5tOkPQHfjAVAZkXi11GdR+C2YLPAV RPdaiNMyAbU9a1fAZkaHqJxLdT2sePPvmB2dfnhMcvyUjiNZQA0FulG/gI0ANpjOsfH2 aZNLspHtdnEBCWCvWxL2nPeJSz1Tu7BGDkXz+APYxYRaAXtT92gjEkS8+Dc5O+6KWS13 pSVDP1NKEy78hsVwNZGZNRr2nWV0F8CfstlcRUUPSuBoqSZ5Vd5s7fp7C6Vo+K6BffLP zt0g== X-Gm-Message-State: ABUngvfjtQwMTPDutNdK7lPbSY0B6h7o7fIF2ka6jAhhwKFc6F5sZhwuvoEyNYO8W+ovpA== X-Received: by 10.36.79.11 with SMTP id c11mr2527018itb.104.1479006311357; Sat, 12 Nov 2016 19:05:11 -0800 (PST) Received: from [10.0.0.5] (c-68-42-142-136.hsd1.mi.comcast.net. [68.42.142.136]) by smtp.gmail.com with ESMTPSA id u190sm6782649itc.21.2016.11.12.19.05.10 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 12 Nov 2016 19:05:10 -0800 (PST) To: make-wifi-fast@lists.bufferbloat.net References: From: Noah Causin Message-ID: Date: Sat, 12 Nov 2016 22:05:10 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/alternative; boundary="------------25DE4D70C74A2010F69E611B" Subject: Re: [Make-wifi-fast] Time to upgrade my home network... X-BeenThere: make-wifi-fast@lists.bufferbloat.net X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Nov 2016 03:05:12 -0000 This is a multi-part message in MIME format. --------------25DE4D70C74A2010F69E611B Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit I have an Archer C7v2. Toke's repository has the airtime fairness patch and a patch to enable fq_codel on the ath10k for 5Ghz. http://kau.toke.dk/git/lede/ Both the 2.4Ghz N and 2.4Ghz AC work very well. I recommend installing cake. It's under kernel modules and network support in the menuconfig. Since cake now has NAT integration. You can use the dual flow isolation feature to give equal bandwidth to the devices on your network. Simply select cake as the qdisc and a sqm script that uses cake. Under the "Queue Discipline" tab, enable a set of two checkboxes. Under "Advanced option string to pass to the ingress queueing disciplines," put in "dual-dsthost nat" Under "Advanced option string to pass to the egress queueing disciplines," put in "dual-srchost nat" Because of the issues with WMM in the WiFi stack, I recommend using the following custom iptables rules: iptables -t mangle -A FORWARD -o br-lan -j DSCP --set-dscp-class be iptables -t mangle -A OUTPUT -o br-lan -j DSCP --set-dscp-class be ip6tables -t mangle -A FORWARD -o br-lan -j DSCP --set-dscp-class be ip6tables -t mangle -A OUTPUT -o br-lan -j DSCP --set-dscp-class be You still need WMM to get the full speeds on the newer WiFi modes. Noah On 11/12/2016 7:05 PM, Jim Gettys wrote: > to the fresh bits... > > But which bits to run? I have the following routers: > > 1) a new Archer C7v2 > 2) The old standby WNDR3800's. > 3) ubiquity nanostation. > > Anyone care to recommend what bits I should run to be most helpful? > > Thanks, > Jim Gettys > > > > _______________________________________________ > Make-wifi-fast mailing list > Make-wifi-fast@lists.bufferbloat.net > https://lists.bufferbloat.net/listinfo/make-wifi-fast --------------25DE4D70C74A2010F69E611B Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 8bit

I have an Archer C7v2.

Toke's repository has the airtime fairness patch and a patch to enable fq_codel on the ath10k for 5Ghz.

http://kau.toke.dk/git/lede/

Both the 2.4Ghz N and 2.4Ghz AC work very well.

I recommend installing cake.  It's under kernel modules and network support in the menuconfig.  Since cake now has NAT integration.  You can use the dual flow isolation feature to give equal bandwidth to the devices on your network.

Simply select cake as the qdisc and a sqm script that uses cake.  Under the "Queue Discipline" tab, enable a set of two checkboxes.

Under "Advanced option string to pass to the ingress queueing disciplines," put in "dual-dsthost nat"

Under "Advanced option string to pass to the egress queueing disciplines," put in "dual-srchost nat"

Because of the issues with WMM in the WiFi stack, I recommend using the following custom iptables rules:

iptables -t mangle -A FORWARD -o br-lan -j DSCP --set-dscp-class be
iptables -t mangle -A OUTPUT -o br-lan -j DSCP --set-dscp-class be
ip6tables -t mangle -A FORWARD -o br-lan -j DSCP --set-dscp-class be
ip6tables -t mangle -A OUTPUT -o br-lan -j DSCP --set-dscp-class be

You still need WMM to get the full speeds on the newer WiFi modes.

Noah

On 11/12/2016 7:05 PM, Jim Gettys wrote:
to the fresh bits...

But which bits to run?  I have the following routers:

1) a new Archer C7v2
2) The old standby WNDR3800's.
3) ubiquity nanostation.

Anyone care to recommend what bits I should run to be most helpful?

                               Thanks,
                                        Jim Gettys



_______________________________________________
Make-wifi-fast mailing list
Make-wifi-fast@lists.bufferbloat.net
https://lists.bufferbloat.net/listinfo/make-wifi-fast

--------------25DE4D70C74A2010F69E611B--