endian
Dis Member
if you have a broadband connection, your tcp settings probably aren't set up optimally. you can change them from the command line using sysctl
sysctl -A lists all the settings as java/defaults style package names.
the ones you want to change are
net.inet.tcp.sendspace: 32768
net.inet.tcp.recvspace: 32768
kern.ipc.maxsockbuf: 262144
change them by saying sudo sysctl -w net.inet.tcp.sendspace=65535 (or whatever you want to change it to.) Obviously, substitute the different variable names.
i changed my tcp.sendspace & recvspace to 65535, and my maxsockbuf size to 524288 and have noticed about a 3-500 kbps improvement in my connection speed as reported on dslreports.com and http://computingcentral.msn.com/internet/speedtest.asp
there's a windoze-oriented page on this at http://www.dslreports.com/tweaks
you *can* go too far and wind up slowing yourself down, but if that happens, just set things back the way they were & no harm done.
sysctl -A lists all the settings as java/defaults style package names.
the ones you want to change are
net.inet.tcp.sendspace: 32768
net.inet.tcp.recvspace: 32768
kern.ipc.maxsockbuf: 262144
change them by saying sudo sysctl -w net.inet.tcp.sendspace=65535 (or whatever you want to change it to.) Obviously, substitute the different variable names.
i changed my tcp.sendspace & recvspace to 65535, and my maxsockbuf size to 524288 and have noticed about a 3-500 kbps improvement in my connection speed as reported on dslreports.com and http://computingcentral.msn.com/internet/speedtest.asp
there's a windoze-oriented page on this at http://www.dslreports.com/tweaks
you *can* go too far and wind up slowing yourself down, but if that happens, just set things back the way they were & no harm done.