From: Sebastian Moeller <moeller0@gmx.de>
To: Fred Stratton <fredstratton@imap.cc>
Cc: "cerowrt-devel@lists.bufferbloat.net"
<cerowrt-devel@lists.bufferbloat.net>
Subject: Re: [Cerowrt-devel] cerowrt-3.10.2-1 dev release + owamp
Date: Fri, 26 Jul 2013 11:54:01 +0200 [thread overview]
Message-ID: <4A60E070-DCCC-4C30-805D-C1AE275A63C0@gmx.de> (raw)
In-Reply-To: <3A95A665-3348-44F5-84E8-E59720086E09@imap.cc>
Hi Fred, hi List
On Jul 26, 2013, at 08:21 , Fred Stratton <fredstratton@imap.cc> wrote:
> I can certainly confirm this, having spent several fruitless hours with the build.
>
> 6in4 remains broken for henet.
>
> dnsmasq appears not to recognise additional domain name servers. The ISP I use has a very slow domain name service, to which the system now defaults. The consequence of this is that opkg times out, and no packages can be installed.
>
> It is still not possible to watch a video stream and download files simultaneously on an ADSL line.
I can not comment on most of your issues, but I might have some information about the ADSL issue. I only got around to test 3.10.1-1 but I suspect that there are no changes in the relevant packages between these versions. I had a few issues with getting my ADSL line (atm carried adsl2+) to work reasonably; maybe some of these issues are at play in your setup as well.
Anyway, it turned out to have probably two main reasons:
1) It looks that the AQM luci interface does not really propagate the requested bandwidth down to simple_qos.sh (the version Toke's AQM package supplies), to get this working I had to edit the bandwidth defaults in /usr/lib/aqm/functions.sh to make it work at all. (I then switched back to the stand alone simple_qos.sh; no time yet to debug why the luci-fied version did not honor the up- and download speeds from the gui)
That helped a lot. Enabling simple_qos.sh's PPPOE option did not improve things to where I expected them.
2) It seems HTB's issues with regards to the ATM carrier (and potentially per packet overhead do not seem fully solved yet. I side stepped this issue by resorting to handle these issues with the more generic td-stab mechanism:
I added the following to simple_qos.sh (my line has 40 bytes of encapsulation overhead, but linux already accounts for the 14bytes ethernet header, so the additional overhead is 26, you probably know your overhead already*):
EGRESS_STAB_STRING="stab mtu 2048 tsize 128 overhead 26 linklayer atm"
INGRESS_STAB_STRING="stab mtu 2048 tsize 128 overhead 26 linklayer atm"
then I changed egress() from:
$TC qdisc add dev $IFACE root handle 1: htb default 12
to:
$TC qdisc add dev $IFACE root handle 1: ${EGRESS_STAB_STRING} htb default 12
and ingress() from:
$TC qdisc add dev $DEV root handle 1: htb default 12
to:
$TC qdisc add dev $DEV root handle 1: ${INGRESS_STAB_STRING} htb default 12
that again helped a lot.
3) I also turned of polipo on my wndr3700 v2 assuming that the device has to little memory and flash storage to allow for polipo to be actually useful. I intend to supply polipo with a larger backing store and enable it again in due time.
These changes turned maximum ping RTTs under load from initially up to almost 6 seconds (avg ~ 250ms) down to 226ms (avg 26ms). I just measured the ping times to a near host (RTT ~24ms ) while saturating the upload with a single large transfer and stressing the download by opening around 100 media heavy browser tabs at once
In case you test these changes I would love to hear whether this improves your situation or not.
*) Note: thee is no universal ADSL overhead, it depends on the encapsulation method used by your ISP, so one either needs to look up the required information (see: http://ace-host.stuart.id.au/russell/files/tc/tc-atm/ and http://www.dsm.fordham.edu/cgi-bin/man-cgi.pl?topic=tc-stab&sect=8 and http://www.faqs.org/rfcs/rfc2684.html) or figure it out empirically.
Best Regards
Sebastian
>
>
>
>
> On 26 Jul 2013, at 06:20, Dave Taht <dave.taht@gmail.com> wrote:
>
>> sysupgrade -n doesn't work with this release. Stay away. I have a new
>> build of 3.10.3-1 and am trying to fix it...
>>
>> I did find the problem on the ubnt builds - I'd switched to the new
>> babeld from quagga, but failed to install it by default.
>>
>> in openwrt trunk, elliptic curve has been enabled in openssl. It's
>> long past time we enable https for configuration by default, and might
>> as well figure out how to turn perfect forward secrecy on as well in
>> the post-snowden era.
>>
>> owamp seemingly works well, with a couple glitches here and there. I
>> got to where the lab was synced to about 1ms resolution... and 5 more
>> gpses arrived today....
>> _______________________________________________
>> Cerowrt-devel mailing list
>> Cerowrt-devel@lists.bufferbloat.net
>> https://lists.bufferbloat.net/listinfo/cerowrt-devel
>
> _______________________________________________
> Cerowrt-devel mailing list
> Cerowrt-devel@lists.bufferbloat.net
> https://lists.bufferbloat.net/listinfo/cerowrt-devel
next prev parent reply other threads:[~2013-07-26 9:54 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-23 18:45 Dave Taht
2013-07-26 5:20 ` Dave Taht
2013-07-26 6:21 ` Fred Stratton
2013-07-26 9:54 ` Sebastian Moeller [this message]
2013-07-26 10:51 ` David Personette
2013-07-26 14:31 ` Fred Stratton
2013-07-26 15:51 ` Sebastian Moeller
2013-07-31 19:50 ` Fred Stratton
2013-07-31 20:38 ` Sebastian Moeller
2013-07-31 21:37 ` Fred Stratton
[not found] ` <7AA8F2EC-633F-4DF6-86D1-73B7BAB6DDB7@gmx.de>
2013-07-31 22:35 ` Fred Stratton
[not found] ` <94CA76B3-44B9-41E8-9893-864BBEEFB70D@gmx.de>
2013-08-03 10:36 ` Fred Stratton
2013-08-03 18:56 ` Fred Stratton
[not found] ` <AE353C99-CFF9-49F7-B3CB-912DD2078E2F@gmx.de>
2013-08-03 21:28 ` Fred Stratton
2013-08-04 13:03 ` Fred Stratton
2013-08-11 20:25 ` Sebastian Moeller
2013-08-11 21:52 ` Dave Taht
2013-08-12 8:55 ` Sebastian Moeller
[not found] <46820144-E1DD-4858-A2B6-38F95D2894DB@imap.cc>
2013-08-05 10:47 ` Fred Stratton
2013-08-07 13:38 ` Sebastian Moeller
2013-08-07 23:21 ` Fred Stratton
2013-08-08 9:41 ` Sebastian Moeller
2013-08-08 10:26 ` Fred Stratton
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/cerowrt-devel.lists.bufferbloat.net/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A60E070-DCCC-4C30-805D-C1AE275A63C0@gmx.de \
--to=moeller0@gmx.de \
--cc=cerowrt-devel@lists.bufferbloat.net \
--cc=fredstratton@imap.cc \
/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