본문 바로가기

IBM/AIX

tune_TCP_stack

  • AIX TCP_KEEPIDLE
    • Description: The keepAlive packet ensures that a connection stays in an active/ESTABLISHED state.
    • How to view or set: Use the no command to determine the current value or to set the value. The change is effective until the next time you restart the machine. To permanently change the value, add the no command to the /etc/rc.net directory. For example:
                /usr/bin/no -o tcp_keepidle=600 
                
    • Default value: 14400 half seconds (2 hours).
    • Recommended value: 600 half seconds (5 minutes).
  • TCP_KEEPINTVL
    • Description: Specifies the interval between packets that are sent to validate the connection.
    • How to view or set: Use the following command to set the value to 5 seconds:
                /usr/bin/no -o tcp_keepintvl=10
                
    • Default value: 150(1/2 seconds)
    • Recommended value: 10(1/2 seconds)
  • TCP_KEEPINIT
    • Description: Specifies the initial timeout value for TCP connection.
    • How to view or set: Use the following command to set the value to 20 seconds:
                /usr/bin/no -o tcp_keepinit=40
                
    • Default value: 150(1/2 seconds)
    • Recommended value: 40(1/2 seconds)

'IBM > AIX' 카테고리의 다른 글

메시지카탈로그  (0) 2012.11.09
tcpwrapper설정  (0) 2012.11.09
FTP설정하기  (0) 2012.11.09
adapter순서를내맘대로  (0) 2012.11.09
Debugging rsh,rcp,rlogin and rdist Permission Denied Problems  (0) 2012.11.09
TCP및UDP성능조정  (0) 2012.11.09
Repairing Corrupt File Systems or File System Log Devices  (0) 2012.11.09
Inodes used 100% while filesystem is not full  (0) 2012.11.09
vmm memory tuning  (0) 2012.05.25
tar 대신 다른 명령으로 backup하기  (0) 2012.03.02