<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi Toke, hi list<div><br></div><div>Here is more on the topic of (potential) ATM quantization on a DSL link. (Note ATM typically is used for all/most ADSL1/DASL2/ADSL2+ links and might also be used with VDSL links, even though for VDSL non-cell quantized packet transfer mode (PTM) hopefully is more likely).</div><div>Anyway, so here is what I use to collect ping times to test for ATM quantization. Just replace TARGET with the nearest IP on the other side of your DSL link that returns ping packets with low variation. The only potentially clever twist here is to call ping for each packet independently and sleep for a tiny bit in-between to allow non-root to ping rates > 1Hz (based on sleep accepting non-integer inputs). (It is worth mentioning that in my tests to high frequencies to the same host led to very long ping RTTs, as if the host was putting my requests into a slow path, so for each host it might be required to titrate the lowest period to still get typical ping responses...)</div><div>I typically would let this run overnight, at 0.01 seconds PINGPERIOD period this will take 10100seconds or ~168 minutes. For my ADSL2+ link at 2558kbit uplink and 16402kbit downlink the numbers below give a very noticeable quantization step, for higher link speeds one might need to increase PINGSPERSIZE… Now, I have some reworked matlab code to parse and display the data from the ping log file, that also will attempt to estimate the ATM encapsulation related overhead on an ATM link; let me know whether there is any interest for that…</div><div><br></div><div>best</div><div><span class="Apple-tab-span" style="white-space:pre">    </span>sebastian</div><div><br></div><div><br></div><div><br></div><div>#! /bin/bash<br># TODO use seq or bash to generate a list of the requested sizes (to alow for non-equdistantly spaced sizes)<br><br># Telekom Tuebingen Moltkestrasse 6<br>TECH=ADSL2<br># finding a proper target IP is somewhat of an art, just traceroute a remote site <br># and find the nearest host reliably responding to pings showing the smallet variation of pingtimes<br>TARGET=87.186.197.70<span class="Apple-tab-span" style="white-space:pre">                </span># T<br>DATESTR=`date +%Y%m%d_%H%M%S`<span class="Apple-tab-span" style="white-space:pre">  </span># to allow multiple sequential records<br>LOG=ping_sweep_${TECH}_${DATESTR}.txt<br><br><br># by default non-root ping will only end one packet per second, so work around that by calling ping independently for each package<br># empirically figure out the shortest period still giving the standard ping time (to avoid being slow-pathed by our host)<br>PINGPERIOD=0.01<span class="Apple-tab-span" style="white-space:pre">           </span># in seconds<br>PINGSPERSIZE=10000<br><br># Start, needed to find the per packet overhead dependent on the ATM encapsulation<br># to reiably show ATM quantization one would like to see at least two steps, so cover a range > 2 ATM cells (so > 96 bytes)<br>SWEEPMINSIZE=16<span class="Apple-tab-span" style="white-space:pre">          </span># 64bit systems seem to require 16 bytes of payload to include a timestamp...<br>SWEEPMAXSIZE=116<br>    <br><br>n_SWEEPS=`expr ${SWEEPMAXSIZE} - ${SWEEPMINSIZE}`<br><br><br>i_sweep=0<br>i_size=0<br><br>while [ ${i_sweep} -lt ${PINGSPERSIZE} ]<br>do<br>    (( i_sweep++ ))<br>    echo "Current iteration: ${i_sweep}"<br>    # now loop from sweepmin to sweepmax<br>    i_size=${SWEEPMINSIZE}<br>    while [ ${i_size} -le ${SWEEPMAXSIZE} ]<br>    do<br><span class="Apple-tab-span" style="white-space:pre">        </span>echo "${i_sweep}. repetition of ping size ${i_size}"<br><span class="Apple-tab-span" style="white-space:pre">    </span>ping -c 1 -s ${i_size} ${TARGET} >> ${LOG} &<br><span class="Apple-tab-span" style="white-space:pre">    </span>(( i_size++ ))<br><span class="Apple-tab-span" style="white-space:pre">    </span># we need a sleep binary that allows non integer times (GNU sleep is fine as is sleep of macosx 10.8.4)<br><span class="Apple-tab-span" style="white-space:pre">   </span>sleep ${PINGPERIOD}<br>    done<br>done<br><br>#tail -f ${LOG}<br><br>echo "Done... ($0)<br><br></div><div><br></div><div><br></div><div><br><div><div>On Jun 17, 2013, at 12:50 , Toke Høiland-Jørgensen <<a href="mailto:toke@toke.dk">toke@toke.dk</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Sebastian Moeller <<a href="mailto:moeller0@gmx.de">moeller0@gmx.de</a>> writes:<br><br><blockquote type="cite">I fully believe you that it is flat (graph did not make it into my<br>inbox…)<br></blockquote><br>Heh. May have forgotten to attach it... Should be there now...<br><br><blockquote type="cite">So that looks like PTM. Good! But beware the expected step size<br>depends on your down and uplink speeds, at VDSL I would only expect a<br>very tiny increase (basically the time it takes to see an additional<br>ATM cell back and forth, (RTT step per ATM cell in milliseconds =<br>(53*8 / line.down.bit + 53*8 / line.up.bit ) * 1000); this means that<br>potentially a large sample size per ping packet size is required to be<br>reasonably sure that there is no step....<br></blockquote><br>Right, well in my case that comes out as something like 0.05 ms, which<br>is way below the measuring accuracy of my ping test (lowest mdev as<br>reported by ping is 0.7ms; highest is 3.3). So I guess testing is not<br>really going to be viable in this case. But then perhaps it's not going<br>to make much of a difference either way in this case?<br><br><blockquote type="cite">Hence in theory using a saturating load and measuring the latencies<br>for different overhead values should still work. I wonder whether rrul<br>might just be the right probe? If you go that route I would be<br>delighted to learn the outcome :). Sorry to be of no more help here.<br></blockquote><br>Right. That seems reasonable. However, it also seems to require a bit<br>more testing than I really have the time to spare right now, so I think<br>I'll defer it for the time being. I wonder if it would be possible to<br>persuade my ISP to set up a netperf server to test against...<br><br>Either way, thanks for your insight; I'll be sure to ping you if I come<br>up with something more conclusive... :)<br><br>-Toke<br><br><img name="pings.png" id="7f4ed040-312d-43d6-8b76-098319261de5" height="340" width="605" apple-width="yes" apple-height="yes" src="cid:F7727B1E-14F0-456F-B781-83717B32668A@uni-tuebingen.de"></blockquote></div><br></div></body></html>