Brennan123
Active Member
- Joined
- Dec 25, 2012
- Messages
- 41
- Reaction score
- 6
Got back Home from university on the 9 June. I been home for almost two weeks now and the internet is horrible. I must confess I play alot of online games when I am at home, especially league of legends. When my internet is working perfectly the ping to league of legends server (Frankfurt,Germany) is normally between 200ms and 250ms which is acceptable for me. Must say during the december 2013 holiday when i was using the mweb trail 4mb uncapped account (my line is only 2mb) got a stable 178ms - 190ms. Lately my ping is so unstable I dont even want to play league any more. During a game it will jump between 250ms and 500ms constantly, if i am lucky it would only go as high as 350ms. This is happening during the day (10:00 - 16:00) . When the clock strikes 17:00 I can forget about playing league until like 23:30 at night because my ping is anywhere between 300ms and 1100ms during this time.
The worst part is this unstable and high ping has been happening every f**king day since i got home. Needless to say we have a 20gig capped telkom account and there is still 8gigs left for the month. A few day ago i found this article (http://mybroadband.co.za/news/adsl/82251-how-to-test-for-adsl-exchange-congestion.html) and in the comments i read about pingplotter. I downloaded and installed the pro version. The program has been running since 18 june on my computer.
Just to be clear: Pingplotter is doing a traceroute to telkom.co.za
1,login.router,10.0.0.2
2,ti-224-96-01.telkomadsl.co.za,105.224.96.1
3,ti-226-0-22.telkomadsl.co.za,105.226.0.22
4,ti-226-0-57.telkomadsl.co.za,105.226.0.57
5, -------------- ,165.165.214.213
6, -------------- ,196.43.39.166
7,rrba-ip-bssr-1-ge-2-48.telkom-ipnet.co.za,196.43.23.6
8,nbsc-ip-bssr-2-atm-5-0-0-1.telkom-ipnet.co.za,196.43.23.34
9,telkom.co.za,196.43.22.222
Pingplotter is doing the traceroute to telkom.co.za every 15 seconds. The nice thing i found about PingPlotter is that you can export the result to a text file. This is one of the traceroute results : "6/18/2014 2:21:16 PM",0,11,17,13,13,34,40,42,35
At the moment i have over 17000 of these traceroute results.
So i wrote a small java program to help me analyze this data. As you can see each traceroute results has a date and time. I created a 2D array with the following properties: day,month,year,hour,minute,second,am_pm,time_interval and the traceroute results. Here is and example how it looks: (6 21 2014 3 24 48 AM 3 0 10 13 12 11 34 33 34 37 ) the 3 after AM tells us this traceroute was done between 03:00:00 and 03:59:59. and after that is the results for the traceroute (hop 1 = 0ms ... hop 9 = 37ms) And from this i can do different queries
One of the queries that i have done on the data: I calculate the average ping to telkom.co.za for each time interval from 17000 and still growing traceroute results. I will post the results when i am doing implementing the variance, median, and standard deviation for each hop in each time interval. So that they can see how unstable the ping is.
They want proof i will give them proof.
The worst part is this unstable and high ping has been happening every f**king day since i got home. Needless to say we have a 20gig capped telkom account and there is still 8gigs left for the month. A few day ago i found this article (http://mybroadband.co.za/news/adsl/82251-how-to-test-for-adsl-exchange-congestion.html) and in the comments i read about pingplotter. I downloaded and installed the pro version. The program has been running since 18 june on my computer.
Just to be clear: Pingplotter is doing a traceroute to telkom.co.za
1,login.router,10.0.0.2
2,ti-224-96-01.telkomadsl.co.za,105.224.96.1
3,ti-226-0-22.telkomadsl.co.za,105.226.0.22
4,ti-226-0-57.telkomadsl.co.za,105.226.0.57
5, -------------- ,165.165.214.213
6, -------------- ,196.43.39.166
7,rrba-ip-bssr-1-ge-2-48.telkom-ipnet.co.za,196.43.23.6
8,nbsc-ip-bssr-2-atm-5-0-0-1.telkom-ipnet.co.za,196.43.23.34
9,telkom.co.za,196.43.22.222
Pingplotter is doing the traceroute to telkom.co.za every 15 seconds. The nice thing i found about PingPlotter is that you can export the result to a text file. This is one of the traceroute results : "6/18/2014 2:21:16 PM",0,11,17,13,13,34,40,42,35
At the moment i have over 17000 of these traceroute results.
So i wrote a small java program to help me analyze this data. As you can see each traceroute results has a date and time. I created a 2D array with the following properties: day,month,year,hour,minute,second,am_pm,time_interval and the traceroute results. Here is and example how it looks: (6 21 2014 3 24 48 AM 3 0 10 13 12 11 34 33 34 37 ) the 3 after AM tells us this traceroute was done between 03:00:00 and 03:59:59. and after that is the results for the traceroute (hop 1 = 0ms ... hop 9 = 37ms) And from this i can do different queries
One of the queries that i have done on the data: I calculate the average ping to telkom.co.za for each time interval from 17000 and still growing traceroute results. I will post the results when i am doing implementing the variance, median, and standard deviation for each hop in each time interval. So that they can see how unstable the ping is.
They want proof i will give them proof.
