Excellent D/L Speeds

  • Thread starter Thread starter baudhayan
  • Start date Start date
  • Replies Replies 26
  • Views Views 4,616
@ d time I got tht amazing speed I was synched @ 256 256 but my SNR was 22 22.BTW u can always use Windows Media Encoder 4 recording screenshots.
 
All,

am not sure if you have this option on windows but on any Unix you could probably have. I use a Mac OS X box (primarily unix inside). Here is the shell script for Mac OS X:

#!/bin/sh

##
# Broadband Optimizer
# optimize networking for broadband connection
##

. /etc/rc.common

#CheckForNetwork

StartService ()
{
ConsoleMessage "Starting Broadband Optimizer"

/usr/sbin/sysctl -w net.inet.tcp.link-removed=65536 > /dev/null
/usr/sbin/sysctl -w net.inet.tcp.recvspace=65536 > /dev/null
/usr/sbin/sysctl -w kern.ipc.maxsockbuf=524288 > /dev/null
/usr/sbin/sysctl -w net.inet.tcp.delayed_ack=0 > /dev/null
/usr/sbin/sysctl -w net.inet.udp.recvspace=73728 > /dev/null

ConsoleMessage -S
}

StopService ()
{
return 0
}

RestartService ()
{
return 0
}

RunService "$1"
---------------------------------
Go to Terminal and run sysctl -a and you should see the changes.

This script is brought to you by:http://www.enigmarelle.com/


For Windows I found this online (googed)
http://www.speedguide.net/downloads.php
 
Originally posted by dowgMac@Jan 19 2006, 12:13 AM
For Windows I found this online (googed)
http://www.speedguide.net/downloads.php

If anyone uses the optimization tool on the above mentioned page, please post your results if you see any speed improvement. I tried it some time back, but it didn't make any difference to my speeds.
 
Originally posted by dowgMac@Jan 19 2006, 12:13 AM
Unix you could probably have. I use a Mac OS X box (primarily unix inside).
You mean the BSD rip off right? /dev/null
/usr/sbin/sysctl -w net.inet.tcp.recvspace=65536 > /dev/null
/usr/sbin/sysctl -w kern.ipc.maxsockbuf=524288 > /dev/null
/usr/sbin/sysctl -w net.inet.tcp.delayed_ack=0 > /dev/null
/usr/sbin/sysctl -w net.inet.udp.recvspace=73728 > /dev/null

ConsoleMessage -S
}

StopService ()
{
return 0
}

RestartService ()
{
return 0
}

RunService \"$1\"
---------------------------------
Go to Terminal and run sysctl -a and you should see the changes.

This script is brought to you by:http://www.enigmarelle.com/[/b]
Thanks for the shell script. I think my debian / fedora boxes should be able to run them :)
 
prathapml, i wasn't planning to run that script anyway. I got my own scripts doing stuff for me :)
 

Back