File: iptstate.8

package info (click to toggle)
iptstate 2.2.6-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 204 kB
  • ctags: 153
  • sloc: cpp: 1,800; makefile: 117
file content (185 lines) | stat: -rw-r--r-- 8,245 bytes parent folder | download
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
173
174
175
176
177
178
179
180
181
182
183
184
185
.\" Process this file with
.\" groff -man -Tascii iptstate.8
.\"
.TH IPTSTATE 8 "JUNE 2012" "" ""
.\"
.\" Man page written by Phil Dibowitz <phil AT ipom DOT com>
.\"
.\" IPTState is copyright by Phil Dibowitz. Please see the README and LICENSE.
.\"
.SH NAME 
.B iptstate
\- A top-like display of IP Tables state table entries

.SH SYNOPSIS
.B iptstate 
.RB [< options >]

.SH DESCRIPTION
.B iptstate
displays information held in the IP Tables state table in real-time in a top-like format.
Output can be sorted by any field, or any field reversed. Users can choose to have the output only print once and exit, rather than the top-like system. Refresh rate is configurable, IPs can be resolved to names, output can be formatted, the display can be filtered, and color coding are among some of the many features.

.SH COMMAND\-LINE OPTIONS
.TP
.B -c, --no-color
Toggle color-code by protocol
.TP
.B -C, --counters
Toggle display of bytes/packets counters
.TP
.B -d, --dst-filter \fIIP\fP
Only show states with a destination of \fIIP\fP
Note, that this must be an IP, hostname matching is not yet supported.
.TP
.B -D --dstpt-filter \fIport\fP
Only show states with a destination port of \fIport\fP
.TP
.B -h, --help
Show help message
.TP
.B -l, --lookup
Show hostnames instead of IP addresses. Enabling this will also enable \fB-L\fP to prevent an ever-growing number of DNS requests.
.TP
.B -m, --mark-truncated
Mark truncated hostnames with a '+'
.TP
.B -o, --no-dynamic
Toggle dynamic formatting
.TP
.B -L, --no-dns
Skip outgoing DNS lookup states
.TP
.B -f, --no-loopback
Filter states on loopback
.TP
.B -p, --no-scroll
No scrolling (don't use a "pad"). See \fBSCROLLING AND PADS\fP for more information.
.TP
.B -r, --reverse
Reverse sort order
.TP
.B -R, --rate \fIseconds\fP
Refresh rate, followed by rate in \fIseconds\fP. Note that this is for statetop mode, and not applicable for single-run mode (\-\-single).
.TP
.B -1, --single
Single run (no curses)
.TP
.B -b, --sort \fIcolumn\fP
This determines what column to sort by. Options:
.br
.B "	S"
Source Port
.br
.B "	d"
Destination IP (or Name)
.br
.B "	D"
Destination Port
.br
.B "	p"
Protocol
.br
.B "	s"
State
.br
.B "	t"
TTL
.br
.B "	b"
Bytes
.br
.B "	P"
Packets
.br
To sort by Source IP (or Name), don't use \-b. Sorting by bytes/packets is only available for kernels that support it, and only when compiled against libnetfilter_conntrack (the default).
.TP
.B -s, --src-filter \fIIP\fP
Only show states with a source of \fIIP\fP. Note, that this must be an IP, hostname matching is not yet supported.
.TP
.B -S, --srcpt-filter \fIport\fP
Only show states with a source port of \fIport\fP
.TP
.B -t, --totals
Toggle display of totals

.SH INTERACTIVE OPTIONS
As of version 2.0, all command-line options are now available interactively using the same key as the short-option. For example, \fB--sort\fP is also \fB-b\fP, so while \fBiptstate\fP is running, hitting \fBb\fP will change the sorting to the next column. Similarly, \fBt\fP toggles the display of totals, and so on.
.PP
There are also extra interactive options: \fBB\fP - change sorting to previous column (opposite of \fBb\fP); \fBq\fP - quit; and \fBx\fP - delete the currently highlighted state from the netfilter conntrack table.
.PP
Additionally, the following keys are used to navigate within \fBiptstate\fP:
.TP
\fBUp\fP or \fBj\fP - Move up one line
.TP
\fBDown\fP or \fBk\fP - Move down one line
.TP
\fBLeft\fP or \fBh\fP - Move left one column
.TP
\fBRight\fP or \fBl\fP - Move right one column
.TP
\fBPageUp\fP or \fB^u\fP - Move up one page
.TP
\fBPageDown\fP or \fB^d\fP - Move down one page
.TP
\fBHome\fP - Go to the top
.TP
\fBEnd\fP - Go to the end
.PP
In many cases, \fBiptstate\fP needs to prompt you in order to change something. For example, if you want to set or change the source-ip filter, when you hit \fBs\fP, \fBiptstate\fP will pop up a prompt at the top of the window to ask you what you want to set it to.
.PP
Note that like many UNIX applications, ctrl-G will tell \fBiptstate\fP "nevermind" - it'll remove the prompt and forget you ever hit \fBs\fP.
.PP
In most cases, a blank response means "clear" - clear the source IP filter, for example.
.PP
At anytime while \fBiptstate\fP is running, you can hit \fBh\fP to get to the \fBinteractive help\fP which will display all the current settings to you as well give you a list of all interactive commands available.
.PP
While running, \fBspace\fP will immediately update the display. \fBIptstate\fP should gracefully handle all window resizes, but if it doesn't, you can force it to re-calculate and re-draw the screen with a \fBctrl-L\fP.
.PP
Note that hitting \fBl\fP to enable hostname resolution while in interactive mode will also enable \fBL\fP to skip all DNS entries (to prevent an ever-growing number of DNS requests).

.SH SCROLLING AND PADS
For almost any user, there is no reason to turn off scrolling. The ability to turn this off - and especially the ability to toggle this interactively - is done more for theoretical completeness than anything else.
.TP
But, nonetheless, here are the details. Typically in a curses application you create a "window." Windows don't scroll, however. They are, at most, the size of your terminal. Windows provide double-buffering to make refreshing as fast and seemless as possible. However, to enable scrolling, one has to use "pads" instead of windows. Pads can be bigger than the current terminal. Then all necessary data is written to the pad, and "scrolling" becomes a function of just showing the right part of that pad on the screen.
.TP
However, pads do not have the double-buffering feature that windows have. Thus, there _might_ be some case where for some user using some very strange machine, having scrolling enabled could cause poor refreshing. Given the nature of the way \fBiptstate\fP uses the screen though, I find this highly unlikely. In addition, the scrolling method uses a little more memory. However, \fBiptstate\fP is not a memory intensive application, so this shouldn't be a problem even on low-memory systems.
.TP
Nonetheless, if this does negatively affect you, the option to turn it off is there.

.SH EXIT STATUS
Anything other than 0 indicates and error. A list of current exit statuses are below:
.TP
.B 0
Success
.TP
.B 1
Bad command-line arguments
.TP
.B 2
Error communicating with the netfilter subsystem.
.TP
.B 3
Terminal too narrow

.SH BUGS
We don't support filtering on resolved names, and we don't support filtering on networks. IPv6 support is new and the dynamic formatting doesn't yet always handle IPv6 addresses as well as it should.

.SH BUG REPORTS
All bugs should be reported to Phil Dibowitz <phil AT ipom DOT com>. Please see the \fBREADME\fR and \fBBUGS\fR for more information on bug reports. Please read the \fBWISHLIST\fR before sending in features you hope to see.  

.SH NOTES
\fBiptstate\fP does a lot of work to try to fit everything on the screen in an easy-to-read way. However, in some cases, hostnames may need to be truncated (in lookup mode). Similarly, IPv6 addresses may need to be truncated. The truncation of names happens from the right for source because you most likely know your own domain name, and from the left for destination because knowing your users are connection to "mail.a." doesn't help much. However, for addresses, this is reversed.
.PP
\fBiptstate\fP does not automatically handle window-resizes while in the \fBinteractive help\fP screen. If you do resize while in this window, you should return to the main window, hit \fBctrl-L\fP to re-calculate and re-draw the screen, and then, if you choose, return to the \fBinteractive help\fP.
.PP
\fBiptstate\fP currently uses libnetfilter_conntrack to access the netfilter connection state table. However, older versions read out of /proc/net/ip_conntrack, and the current version can still be compiled to do this. This deprecated method can be racy on SMP systems, and can hurt performance on very heavily loaded firewalls. This deprecated method should be avoided - support will be removed in future versions.

.SH SEE ALSO
.BR iptables (8)
.PP

.SH AUTHOR
\fBiptstate\fP was written by Phil Dibowitz <phil AT ipom DOT com>
.br
http://www.phildev.net/iptstate/