Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to configure TCP timer in AIX TCP-stack?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
In TCP there are several timers controlling session status and terminating inactive sessions after timing out. One of the most important timers is the keepalive timer. It determines the amount of time a machine tries to send data over an established TCP connection without getting responses. It's default seems to 600 sec.
I need to configure this value. Is it possible and how can I do it?
Thanks in advance!
 

try to use the command

no (network options)

look at the man page for the use of it.

bye
kla
 
For terminating inactive sessions, u should change the parameter tcp_keepidle. By default it's value is set to 14400 and you can view it by no -a|grep tcp
U should now that the unit used is 0.5 second.
For ending sessions after 2 min do
no -o tcp_keepidle=240
Change will be lost after reboot so insert the line into the inittab or to the rc.net

hope helpful
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top