web-dev-qa-db-ja.com

/ proc / net / tcpの出力を理解してマップできない

私のubuntu 12.10での/ proc/net/tcpの出力は次のとおりです。

sl  local_address rem_address   st tx_queue rx_queue tr tm->when retrnsmt   uid  timeout inode                                                     
   0: 0100007F:0CEA 00000000:0000 0A 00000000:00000000 00:00000000 00000000   115        0 14759 **1 0000000000000000 100 0 0 10 -1** 

表示されるデータ列の数が列の名前よりも多いことがわかります。したがって、最終的に見れば、次のことがわかります。

uid ->115

timeout->0

inode->14759

inode列の後の値、つまり1 0000000000000000 100 0 0 10 -1

6
Vivek

CPANに詳細があります Linux :: Proc :: Net :: TCP module page:

 1000        0 54165785 4 cd1e6040 25 4 27 3 -1
    |        |    |     |    |     |  | |  |  |--> slow start size threshold, 
    |        |    |     |    |     |  | |  |      or -1 if the threshold
    |        |    |     |    |     |  | |  |      is >= 0xFFFF
    |        |    |     |    |     |  | |  |----> sending congestion window
    |        |    |     |    |     |  | |-------> (ack.quick<<1)|ack.pingpong
    |        |    |     |    |     |  |---------> Predicted tick of soft clock
    |        |    |     |    |     |              (delayed ACK control data)
    |        |    |     |    |     |------------> retransmit timeout
    |        |    |     |    |------------------> location of socket in memory
    |        |    |     |-----------------------> socket reference count
    |        |    |-----------------------------> inode
    |        |----------------------------------> unanswered 0-window probes
    |---------------------------------------------> uid
5
charlesbridge