Cake - FQ_codel the next generation
 help / color / mirror / Atom feed
From: Noah Causin <n0manletter@gmail.com>
Cc: cake@lists.bufferbloat.net
Subject: Re: [Cake] de-natting & host fairness
Date: Tue, 27 Sep 2016 16:58:08 -0400	[thread overview]
Message-ID: <ae58ff59-b362-393e-8f0c-d9019aa53ba8@gmail.com> (raw)
In-Reply-To: <CAA93jw6rPE8aAGEiqf7jp3hc1J0ThrVer8PFmFLPBqANdtEixg@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4856 bytes --]

Idle Ping:  35ms

Link:  75mbps down 10Mbps up.

Interface:  WAN

No ECN

I was browsing around to test the responsiveness, and I started a 
dslreports speedtest in the last few seconds.

Noah


On 9/27/2016 4:41 PM, Dave Taht wrote:
> got pictures? Can you send the *flent.gz files?
>
> On Tue, Sep 27, 2016 at 1:40 PM, Noah Causin <n0manletter@gmail.com> wrote:
>> Thank you for all your help.
>>
>> The de-nat with dual-flow isolation works great.  I tested it simultaneously
>> with two separate virtual machines, one running a Flent 50 flows download
>> test and the other running a Flent 8 flows download test.  Throughput was
>> even between the machines, and the latency was great.
>>
>> Noah Causin
>>
>>
>> On 9/27/2016 11:28 AM, Kevin Darbyshire-Bryant wrote:
>>
>> LEDE already has a patch included in the basefiles 'iproute2' package to
>> make tc cake aware.  If you replace
>> package/network/utils/iproute2/patches/950-add-cake-to-tc.patch (which is
>> unaware of the nat options) with the attached nat option aware version then
>> recompile, you should find you've a 'natted cake' capable version of the
>> iproute utilities without adding extra packages, feeds etc.
>>
>> I've not yet got around to adding a 'de-nat ipv6' option, so assuming you've
>> built my latest version of cake, it can be configured to de-nat ipv4 but not
>> ipv6.
>>
>> Similarly I've not updated the LEDE stuff as I'd rather like some code
>> review/testing done before it gets pushed out....and I get shouted at lots
>> :-)
>>
>> Kevin
>>
>>
>> On 27/09/16 15:52, Noah Causin wrote:
>>
>> Thank you for helping me get cake to compile on LEDE.
>>
>> The issue I have now is getting tc-adv to compile.
>>
>> I use this MakeFile:
>> https://github.com/antoinedeschenes/openwrt-sqm/tree/master/net/tc-adv
>>
>> I use these commands to compile it:
>>
>> make package/feeds/sqm/tc-adv/clean -j 1 V=s
>> make package/feeds/sqm/tc-adv/prepare
>> USE_SOURCE_DIR=/home/n0man/Desktop/denat/ -j 1 V=s
>> make package/feeds/sqm/tc-adv/compile -j 1 V=s
>>
>> These are the errors I get:
>>
>> *namespace.c: In function 'bind_etc':**
>> **namespace.c:18:22: error: 'MAXPATHLEN' undeclared (first use in this
>> function)**
>> **  char etc_netns_path[MAXPATHLEN];**
>> **                      ^**
>> **namespace.c:18:22: note: each undeclared identifier is reported only
>> once for each function it appears in**
>> **namespace.c:20:7: warning: unused variable 'etc_name'
>> [-Wunused-variable]**
>> **  char etc_name[MAXPATHLEN];**
>> **       ^**
>> **namespace.c:19:7: warning: unused variable 'netns_name'
>> [-Wunused-variable]**
>> **  char netns_name[MAXPATHLEN];**
>> **       ^**
>> **namespace.c:18:7: warning: unused variable 'etc_netns_path'
>> [-Wunused-variable]**
>> **  char etc_netns_path[MAXPATHLEN];**
>> **       ^**
>> **namespace.c: In function 'netns_switch':**
>> **namespace.c:46:16: error: 'MAXPATHLEN' undeclared (first use in this
>> function)**
>> **  char net_path[MAXPATHLEN];**
>> **                ^**
>> **namespace.c:46:7: warning: unused variable 'net_path'
>> [-Wunused-variable]**
>> **  char net_path[MAXPATHLEN];**
>> **       ^**
>> **namespace.c: In function 'netns_get_fd':**
>> **namespace.c:90:15: error: 'MAXPATHLEN' undeclared (first use in this
>> function)**
>> **  char pathbuf[MAXPATHLEN];**
>> **               ^**
>> **namespace.c:90:7: warning: unused variable 'pathbuf' [-Wunused-variable]**
>> **  char pathbuf[MAXPATHLEN];**
>> **       ^**
>> **<builtin>: recipe for target 'namespace.o' failed**
>> **make[4]: *** [namespace.o] Error 1**
>> **make[4]: Leaving directory '/home/n0man/Desktop/denat/lib'*
>>
>> Any help would be appreciated.
>>
>> Thank you,
>>
>> Noah Causin
>>
>> On 9/26/2016 10:32 PM, Kevin Darbyshire-Bryant wrote:
>>
>> Easy fix.  See the added DEPENDS line in the attached patch for the
>> package Makefile :-)
>>
>> I'm guessing you've updated the git checkout hash to point at a
>> suitable place.
>>
>> Cheers,
>>
>> Kevin
>>
>>
>>
>> On 27/09/16 02:52, Noah Causin wrote:
>>
>> I've been trying to compile this on LEDE, but I get this error:
>>
>> Package kmod-sched-cake is missing dependencies for the following
>> libraries:
>> nf_conntrack.ko
>>
>>
>>
>>
>> _______________________________________________
>> Cake mailing list
>> Cake@lists.bufferbloat.net
>> https://lists.bufferbloat.net/listinfo/cake
>>
>>
>>
>>
>> _______________________________________________
>> Cake mailing list
>> Cake@lists.bufferbloat.net
>> https://lists.bufferbloat.net/listinfo/cake
>>
>>
>>
>> _______________________________________________
>> Cake mailing list
>> Cake@lists.bufferbloat.net
>> https://lists.bufferbloat.net/listinfo/cake
>>
>>
>>
>> _______________________________________________
>> Cake mailing list
>> Cake@lists.bufferbloat.net
>> https://lists.bufferbloat.net/listinfo/cake
>>
>
>


[-- Attachment #2: DENATDUALFLOW.zip --]
[-- Type: application/x-zip-compressed, Size: 1191311 bytes --]

  parent reply	other threads:[~2016-09-27 20:58 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-26  3:20 Kevin Darbyshire-Bryant
2016-09-26  3:54 ` Dave Taht
2016-09-26  5:11   ` Dave Taht
2016-09-26  8:54 ` moeller0
2016-09-26 13:02   ` Kevin Darbyshire-Bryant
2016-09-26 13:28     ` moeller0
2016-09-26 14:06       ` Kevin Darbyshire-Bryant
2016-09-26 14:30       ` Jonathan Morton
2016-09-26 15:23         ` moeller0
2016-09-27  1:52 ` Noah Causin
2016-09-27  2:32   ` Kevin Darbyshire-Bryant
2016-09-27  4:20     ` Noah Causin
2016-09-27 14:52     ` Noah Causin
2016-09-27 15:28       ` Kevin Darbyshire-Bryant
2016-09-27 20:40         ` Noah Causin
2016-09-27 20:44           ` Jonathan Morton
     [not found]           ` <CAA93jw6rPE8aAGEiqf7jp3hc1J0ThrVer8PFmFLPBqANdtEixg@mail.gmail.com>
2016-09-27 20:58             ` Noah Causin [this message]
2016-09-28  4:38           ` Kevin Darbyshire-Bryant
2016-09-28  5:08             ` Noah Causin
2016-09-27 23:08 ` Jonathan Morton
2016-09-28  2:56   ` Kevin Darbyshire-Bryant
2016-09-28  3:06     ` Jonathan Morton
2016-09-28  3:33       ` Kevin Darbyshire-Bryant
2016-09-28  3:49         ` Jonathan Morton
2016-09-28  6:07       ` Kevin Darbyshire-Bryant
2016-09-28 11:08         ` Kevin Darbyshire-Bryant
2016-09-28 11:49           ` Dave Taht
2016-09-28 14:11             ` Kevin Darbyshire-Bryant
2016-09-28  5:56   ` Sebastian Moeller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://lists.bufferbloat.net/postorius/lists/cake.lists.bufferbloat.net/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ae58ff59-b362-393e-8f0c-d9019aa53ba8@gmail.com \
    --to=n0manletter@gmail.com \
    --cc=cake@lists.bufferbloat.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox