|
Dave,
One more question, the author in that link you gave talks about
"If you would like these changes to be preserved across reboots, it may be a good idea to add these commands to your /etc/rc.d/rc.local file."
He's reffering to adding these commands:
echo 8388608 > /proc/sys/net/core/wmem_max
echo 8388608 > /proc/sys/net/core/rmem_max
echo "4096 87380 4194304" > /proc/sys/net/ipv4/tcp_rmem
echo "4096 65536 4194304" > /proc/sys/net/ipv4/tcp_wmem
My question is would it have the same effect if I addded those values to the /etc/sysctl.conf file instead?
For example:
net.core.wmem_max = 8388608
net.core.rmem_max = 8388608
net.ipv4.tcp_rmem = 4096 87380 4194304 - should this value be in quotes?
net.ipv4.tcp_wmem = 4096 65536 4194304 - should this value be in quotes?
Last edited by defa0009; 06-21-2003 at 03:58 PM.
|