Solaris tcp_keepalive_abort_interval

solaristcptuning

There is a section in Solaris reference manual for tcp_keepalive_abort_interval.

However, it doesn't appear in ndd /dev/tcp \? listing.

# uname -srvmpi
SunOS 5.10 Generic_142909-17 sun4us sparc FJSV,GPUZC-L
# ndd /dev/tcp \? | grep keepalive
tcp_keepalive_interval    (read and write)

Do any of you know where is this parameter?

UPDATE: It seems I was reading the wrong documentation, thank you for pointing it out.

Best Answer

it's an OpenSolaris/Solaris 11 parameter, not available in Solaris 10:

$ uname -a
SunOS openindiana01 5.11 oi_147 i86pc i386 i86pc Solaris

$ ndd -get /dev/tcp tcp_keepalive_abort_interval
480000
Related Topic