You are not logged in.

#1 2008-03-17 13:40:29

ravisghosh
Member
From: Intergalactic Spaces
Registered: 2006-10-12
Posts: 516
Website

Tweaks to increase throughput and internet speed

My isp says my broadband speed is 2 mbps and I can verify the same with speedtest.net using the nearest server. however, if I use other servers, the results give me a speed of 500 kbps and that is exactly my throughput (actual speed). There are various sites and softwares which describe and do the necessary tweaking to increase the throughput, but unfortunately they are all window based and mostly registry tweaking. I could'nt find any article describing tweaks to increase throughput for linux and novice people like me can hardly go any further without describing articles.

Could someone please put some links to articles or some tweaks to increase throughput/broadband speed.

Last edited by ravisghosh (2008-03-17 13:41:21)

Offline

#2 2008-03-17 13:51:07

brebs
Member
Registered: 2007-04-03
Posts: 3,742

Re: Tweaks to increase throughput and internet speed

Try wiki.

Offline

#3 2008-03-17 15:01:20

finferflu
Forum Fellow
From: Manchester, UK
Registered: 2007-06-21
Posts: 1,899
Website

Re: Tweaks to increase throughput and internet speed

Hmm that sounds interesting. I have added those lines as indicated in the guide. I still have to see how big is the improvement. Too bad the database is up to date already tongue


Have you Syued today?
Free music for free people! | Earthlings

"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery

Offline

#4 2008-03-18 02:48:49

ravisghosh
Member
From: Intergalactic Spaces
Registered: 2006-10-12
Posts: 516
Website

Re: Tweaks to increase throughput and internet speed

finferflu wrote:

Hmm that sounds interesting. I have added those lines as indicated in the guide. I still have to see how big is the improvement. Too bad the database is up to date already tongue

Did that help???

I tried pdnsd, but it seems its not helping me reduce dns lookup time. I've posted it here:
http://bbs.archlinux.org/viewtopic.php?id=44885

Offline

#5 2008-03-18 02:51:58

theringmaster
Member
From: Air Force
Registered: 2007-07-16
Posts: 581
Website

Re: Tweaks to increase throughput and internet speed

opendns is also a speedy dns alternative.


Check me out on twitter!!! twitter.com/The_Ringmaster

Offline

#6 2008-03-18 04:51:36

freakcode
Member
From: São Paulo - Brazil
Registered: 2007-11-03
Posts: 410
Website

Re: Tweaks to increase throughput and internet speed

+1 for OpenDNS.

It's a lot faster than my ISP's own DNS. I configured my router to lookup to OpenDNS instead.

Also, when a site isn't loading, you get a nice page with a google related search, instead of a generic error message.

Offline

#7 2010-04-26 01:11:02

raj7095
Member
Registered: 2010-02-14
Posts: 91

Re: Tweaks to increase throughput and internet speed

one more thing that might increase the speed a little.
type this command in terminal as root: ifconfig eth0 [or whatever interface it is] mtu [your maximum mtu]
you have to find your max mtu manually. first start typing in the numbers in thousands then, find the highest number in hundreds. for example, my highest mtu is 7200. I started from 9000 and then went down by thousands the highest valid mtu i got was 7000, so i increased the number by hundreds, so i got the numbers valid up to 7200, not anything beyond.

Offline

#8 2010-04-26 14:15:27

pyther
Member
Registered: 2008-01-21
Posts: 1,395
Website

Re: Tweaks to increase throughput and internet speed

raj7095 wrote:

one more thing that might increase the speed a little.
type this command in terminal as root: ifconfig eth0 [or whatever interface it is] mtu [your maximum mtu]
you have to find your max mtu manually. first start typing in the numbers in thousands then, find the highest number in hundreds. for example, my highest mtu is 7200. I started from 9000 and then went down by thousands the highest valid mtu i got was 7000, so i increased the number by hundreds, so i got the numbers valid up to 7200, not anything beyond.

I'm sorry but that is the worst advice you can give. Do you know what the mtu stands for? Unless all your networking equipment supports jumbo frames you are actually decreasing performance because the router than has to break up your 7200 byte packet into 5 smaller 1500 bytes packets.

Last edited by pyther (2010-04-26 14:15:59)


Website - Blog - arch-home
Arch User since March 2005

Offline

#9 2010-04-26 14:51:28

kokoko3k
Member
Registered: 2008-11-14
Posts: 2,397

Re: Tweaks to increase throughput and internet speed

to find the optimal mtu value, it is better to use:

ping -c 1  -M do -s #mtusize www.google.com

where mtusize is the mtu size you're trying with.
In my case. 1472 is the maximum:

# ping -c 1 -M do -s 1472 www.google.com
PING google.navigation.opendns.com (208.69.34.231) 1472(1500) bytes of data.
1480 bytes from google.navigation.opendns.com (208.69.34.231): icmp_seq=1 ttl=51 time=38.3 ms

--- google.navigation.opendns.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 38.318/38.318/38.318/0.000 ms

...because if i try with 1473, i get:

ping -c 1 -M do -s 1473 www.google.com
PING google.navigation.opendns.com (208.69.34.231) 1473(1501) bytes of data.
From 143.225.178.2 icmp_seq=1 Frag needed and DF set (mtu = 1500)

--- google.navigation.opendns.com ping statistics ---
0 packets transmitted, 0 received, +1 errors

(Packet has to be fragmented)

Hope it helps.


Help me to improve ssh-rdp !
Retroarch User? Try my koko-aio shader !

Offline

#10 2010-04-27 00:39:40

raj7095
Member
Registered: 2010-02-14
Posts: 91

Re: Tweaks to increase throughput and internet speed

pyther wrote:
raj7095 wrote:

one more thing that might increase the speed a little.
type this command in terminal as root: ifconfig eth0 [or whatever interface it is] mtu [your maximum mtu]
you have to find your max mtu manually. first start typing in the numbers in thousands then, find the highest number in hundreds. for example, my highest mtu is 7200. I started from 9000 and then went down by thousands the highest valid mtu i got was 7000, so i increased the number by hundreds, so i got the numbers valid up to 7200, not anything beyond.

I'm sorry but that is the worst advice you can give. Do you know what the mtu stands for? Unless all your networking equipment supports jumbo frames you are actually decreasing performance because the router than has to break up your 7200 byte packet into 5 smaller 1500 bytes packets.

but i get higher download speed using this method. about 100 kb increase. although the latency time reduces a little. and no i dont know what mtu stands for. sorry for being a dumb ass. btw i dont have a router so i dont know what would happen if this was used on one.

Last edited by raj7095 (2010-04-27 00:40:21)

Offline

#11 2010-04-27 07:31:07

kokoko3k
Member
Registered: 2008-11-14
Posts: 2,397

Re: Tweaks to increase throughput and internet speed

You don't need to own a router for your packets to traverse one wink


Help me to improve ssh-rdp !
Retroarch User? Try my koko-aio shader !

Offline

#12 2010-04-27 15:24:21

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Tweaks to increase throughput and internet speed

MTU:  Maximum transmission unit...... in bytes .....for internet protocol.


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

#13 2010-05-10 06:04:11

jeeva7
Member
Registered: 2010-05-10
Posts: 1

Re: Tweaks to increase throughput and internet speed

Use this link http://www.broadband.co.uk/help/speed-u … broadband/  to speed up  your boardband speed....After that check your speed here http://www.ip-details.com/

Last edited by jeeva7 (2010-05-10 06:04:28)

Offline

Board footer

Powered by FluxBB