Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 2 down vote accepted

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
share|improve this answer

There is a known documentation mistake: http://docs.oracle.com/cd/E19082-01/819-2724/chapter1-1/index.html

This parameter is only available with SunOS 5.11 based OSes.

$ uname -srvmpi 
SunOS 5.11 snv_134 i86pc i386 i86pc
$ ndd /dev/tcp \? | grep keepalive
tcp_keepalive_interval        (read and write)
tcp_keepalive_abort_interval  (read and write)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.