1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
.\" -*- nroff -*-
.TH TAPSET::IPMIB 3stap "October 2018" "SystemTap Tapset Reference"
.SH NAME
tapset::ipmib \- systemtap ipmib tapset
.SH DESCRIPTION
.TP
.P
.TP
.B ipmib_remote_addr
Get the remote ip address
.IP
See
.IR function::ipmib_remote_addr (3stap)
for details.
.P
.TP
.B ipmib_local_addr
Get the local ip address
.IP
See
.IR function::ipmib_local_addr (3stap)
for details.
.P
.TP
.B ipmib_tcp_remote_port
Get the remote tcp port
.IP
See
.IR function::ipmib_tcp_remote_port (3stap)
for details.
.P
.TP
.B ipmib_tcp_local_port
Get the local tcp port
.IP
See
.IR function::ipmib_tcp_local_port (3stap)
for details.
.P
.TP
.B ipmib_get_proto
Get the protocol value
.IP
See
.IR function::ipmib_get_proto (3stap)
for details.
.P
.TP
.B ipmib.InReceives
Count an arriving packet
.IP
See
.IR probe::ipmib.InReceives (3stap)
for details.
.P
.TP
.B ipmib.InNoRoutes
Count an arriving packet with no matching socket
.IP
See
.IR probe::ipmib.InNoRoutes (3stap)
for details.
.P
.TP
.B ipmib.InAddrErrors
Count arriving packets with an incorrect address
.IP
See
.IR probe::ipmib.InAddrErrors (3stap)
for details.
.P
.TP
.B ipmib.InUnknownProtos
Count arriving packets with an unbound proto
.IP
See
.IR probe::ipmib.InUnknownProtos (3stap)
for details.
.P
.TP
.B ipmib.InDiscards
Count discarded inbound packets
.IP
See
.IR probe::ipmib.InDiscards (3stap)
for details.
.P
.TP
.B ipmib.ForwDatagrams
Count forwarded packet
.IP
See
.IR probe::ipmib.ForwDatagrams (3stap)
for details.
.P
.TP
.B ipmib.OutRequests
Count a request to send a packet
.IP
See
.IR probe::ipmib.OutRequests (3stap)
for details.
.P
.TP
.B ipmib.ReasmTimeout
Count Reassembly Timeouts
.IP
See
.IR probe::ipmib.ReasmTimeout (3stap)
for details.
.P
.TP
.B ipmib.ReasmReqds
Count number of packet fragments reassembly requests
.IP
See
.IR probe::ipmib.ReasmReqds (3stap)
for details.
.P
.TP
.B ipmib.FragOKs
Count datagram fragmented successfully
.IP
See
.IR probe::ipmib.FragOKs (3stap)
for details.
.P
.TP
.B ipmib.FragFails
Count datagram fragmented unsuccessfully
.IP
See
.IR probe::ipmib.FragFails (3stap)
for details.
.SH SEE ALSO
.BR
.IR \%function::ipmib_remote_addr (3stap),
.BR
.IR \%function::ipmib_local_addr (3stap),
.BR
.IR \%function::ipmib_tcp_remote_port (3stap),
.BR
.IR \%function::ipmib_tcp_local_port (3stap),
.BR
.IR \%function::ipmib_get_proto (3stap),
.BR
.IR \%probe::ipmib.InReceives (3stap),
.BR
.IR \%probe::ipmib.InNoRoutes (3stap),
.BR
.IR \%probe::ipmib.InAddrErrors (3stap),
.BR
.IR \%probe::ipmib.InUnknownProtos (3stap),
.BR
.IR \%probe::ipmib.InDiscards (3stap),
.BR
.IR \%probe::ipmib.ForwDatagrams (3stap),
.BR
.IR \%probe::ipmib.OutRequests (3stap),
.BR
.IR \%probe::ipmib.ReasmTimeout (3stap),
.BR
.IR \%probe::ipmib.ReasmReqds (3stap),
.BR
.IR \%probe::ipmib.FragOKs (3stap),
.BR
.IR \%probe::ipmib.FragFails (3stap),
.BR
.IR \%stap (1),
.IR \%stapprobes (3stap)
|