Solaris

Solaris tcp_keepalive_abort_interval

  • September 6, 2013

Solaris 參考手冊中有一節tcp_keepalive_abort_interval

但是,它不會出現在ndd /dev/tcp \?列表中。

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

有誰知道這個參數在哪裡?

**更新:**似乎我閱讀了錯誤的文件,謝謝您指出。

這是一個 OpenSolaris/Solaris 11 參數,在 Solaris 10 中不可用:

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

$ ndd -get /dev/tcp tcp_keepalive_abort_interval
480000

有一個已知的文件錯誤:http ://docs.oracle.com/cd/E19082-01/819-2724/chapter1-1/index.html

此參數僅適用於基於 SunOS 5.11 的作業系統。

$ 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)

引用自:https://serverfault.com/questions/198113