1. 端对端latency. 需要的是在正常业务时间内的平均delay; (round trip)
2. TCP window size
3. MTU
4. MSS
假设你要取得3MByte/second, 或者24MBit/second的FTP效率。
1. Bandwidth*Delay Product (BPD) = 45Mbps * 40ms / 2 = 0.9 Mb (112.5 KB)
2. TCP Buffer Size at least 2* BPD = 2* 112.5KB = 225 KB
(Note: Default TCP Buffer Size usually = 64KB, too small !!)
3. Throughput = Window size / Round trip time =>
Window size = Throughput * Round Trip Time = 3MBps * 40ms = 120 KB
不懂AIX,试试看下面这个:
"For better performance on SMP systems, try the following:
ifconfig <iface> thread
This allows the interrupt handler for a GigE interface on an SMP AIX box to be multi-threaded."
2. TCP window size
3. MTU
4. MSS
假设你要取得3MByte/second, 或者24MBit/second的FTP效率。
1. Bandwidth*Delay Product (BPD) = 45Mbps * 40ms / 2 = 0.9 Mb (112.5 KB)
2. TCP Buffer Size at least 2* BPD = 2* 112.5KB = 225 KB
(Note: Default TCP Buffer Size usually = 64KB, too small !!)
3. Throughput = Window size / Round trip time =>
Window size = Throughput * Round Trip Time = 3MBps * 40ms = 120 KB
不懂AIX,试试看下面这个:
"For better performance on SMP systems, try the following:
ifconfig <iface> thread
This allows the interrupt handler for a GigE interface on an SMP AIX box to be multi-threaded."