File: flow-tools-examples.sgml

package info (click to toggle)
flow-tools 1%3A0.68-12.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 5,136 kB
  • ctags: 5,259
  • sloc: ansic: 43,197; sh: 1,674; perl: 661; python: 629; yacc: 303; makefile: 208; lex: 49
file content (327 lines) | stat: -rw-r--r-- 9,573 bytes parent folder | download | duplicates (5)
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<!DOCTYPE refentry PUBLIC "-//Davenport//DTD DocBook V3.0//EN">
<refentry>

<refmeta>
<refentrytitle>
<application>flow-tools-examples</application>
</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>

<refnamediv>
<refname>
<application>flow-tools-examples</application>
</refname>
<refpurpose>
Example usage of flow-tools.
</refpurpose>
</refnamediv>

<refsect1>
<title>EXAMPLE - Configuring Cisco IOS Router</title>
<informalexample>
<para>
NetFlow is configured on each input interface, then global commands are
used to specify the export destination.  To ensure a consistant source
address address Loopback0 is configured as the export source.
<programlisting>
ip cef distributed
ip flow-export version 5 origin-as
ip flow-export destination 10.0.0.100 5004
ip flow-export source Loopback0

interface Loopback0
 ip address 10.1.1.1 255.255.255.255

interface FastEthernet0/1/0 
 ip address 10.0.0.1 255.255.255.0
 no ip directed-broadcast
 ip route-cache flow
 ip route-cache distributed

</programlisting>

Many other options exist such as aggregated NetFlow and sampled NetFlow which
are detailed at <ulink url="http://www.cisco.com"></ulink>.
</para>
</informalexample>
</refsect1>

<refsect1>
<title>EXAMPLE - Configuring Cisco CatIOS Switch</title>
<informalexample>
<para>
Some Cisco Catalyst switches support a different implementation of NetFlow
that is performed on the supervisor.  With the cache based forwarding model
which is implemented in the Catalyst 55xx with Route Switch Module (RSM)
and NetFlow Feature Card (NFFC), the RSM processes the first flow and the
remaining packets in the flow are forwarded by the Supervisor.  This is
also implemented in the early versions of the 65xx with MSFC.  The
deterministic forwarding model used in the 65xx with MSFC2 do not use
NetFlow to determine the forwarding path, the flow cache is only used
for statistics as in the current IOS implementations.  In all of 
of the above configurations flow exports arrive from both the RSM/MSFC and
the Supervisor engines as distinct streams.  In the worst cast the RSM
exports in version 5 and the Supervisor exports in version 7.
Fortunately flow-capture and flow-receive can sort all this out by 
processing flows from both sources and converting them to a common 
export format.
</para>
<para>
The router side running IOS is configured identically to the example
given above.  The CatIOS NetFlow Data Export configuration follows:
</para>
<para>
<programlisting>
set mls flow full
set mls nde version 7
set mls nde 10.0.0.1 9800
set mls nde enable
</programlisting>
</para>
<para>
When the 65xx is running in Native mode, from a users perspective the 
switch is only running IOS.
</para>
<para>
More detailed examples can be found on Cisco's web site 
<ulink url="http://www.cisco.com"></ulink>.
</para>
</informalexample>
</refsect1>

<refsect1>
<title>EXAMPLE - Configuring Juniper Router</title>
<informalexample>
<para>
Juniper supports flow exports by the routing engine sampling packet
headers and aggregating them into flows.  Packet sampling is done by 
defining a firewall filter to accept and sample all traffic, 
applying that rule to the interface, then configuring the sampling
forwarding option.
<programlisting>
interfaces {
    ge-0/3/0 {
        unit 0 {
            family inet {
                filter {
                    input all;
                    output all;
                }
                address 10.0.0.1/24;
            }
        }
    }

firewall {
    filter all {
        term all {
            then {
                sample;
                accept;
            }
        }
    }
}

forwarding-options {
    sampling {
        input {
            family inet {
                rate 100;
            }
        }
        output {
            cflowd 10.0.0.100 {
                port 9800;
                version 5;
            }
        }
    }
}
</programlisting>
</para>
<para>
Other options exist such as aggregated flows which 
are detailed at <ulink url="http://www.juniper.net"></ulink>.
</para>
</informalexample>
</refsect1>

<refsect1>
<title>EXAMPLE - Network topology and <filename>flow.acl</filename></title>
<informalexample>
<para>
The network topology and flow.acl will be used for many of the examples
that follow.  Flows are collected and stored in <filename>/flows/R</filename>.
<screen>

                       ISP-A       ISP-B
                         +           +
                          +         +
            IP=10.1.2.1/24 +       + IP=10.1.1.1/24
                 ifIndex=2  +     +  ifIndex=1
       interface=serial1/1   +   +   interface=serial0/0
                             -----
                             | R | Campus Router
                             -----
                             +   +
           IP=10.1.4.1/24   +     +   IP=10.1.3.1/24
                ifIndex=4  +       +  ifIndex=3
    interface=Ethernet1/1 +         + interface=Ethernet0/0
                         +           +
                       Sales      Marketing

</screen>
<programlisting>
ip access-list standard sales permit 10.1.4.0 0.0.0.255
ip access-list standard not_sales deny 10.1.4.0 0.0.0.255
ip access-list standard marketing permit 10.1.3.0 0.0.0.255
ip access-list standard not_marketing deny 10.1.3.0 0.0.0.255
ip access-list standard campus permit 10.1.4.0 0.0.0.255
ip access-list standard campus permit 10.1.3.0 0.0.0.255
ip access-list standard not_campus deny 10.1.4.0 0.0.0.255
ip access-list standard not_campus deny 10.1.3.0 0.0.0.255
ip access-list standard evil_hacket permit host 10.6.6.6
ip access-list standard spoofer permit host 10.9.9.9
ip access-list standard multicast 224.0.0.0 15.255.255.255
</programlisting>
</para>
</informalexample>
</refsect1>

<refsect1>
<title>EXAMPLE - Finding spoofed addresses</title>
<informalexample>
<para>
A common problem on the Internet is the use of "spoofed" (addresses
that are not assigned to an organization) for use in DoS attacks or 
compromising servers that rely on the source IP address for authentication.
</para>
<para>
Display all flow records that originate from the campus and are sent
to the Internet but are not using legal addresses.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Snot_campus -I1,2 | flow-print</command>
</para>
<para>
Summary of the destinations of the internally spoofed addresses sorted by octets.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Snot_campus -I1,2 | flow-stat -f8 -S2</command>
</para>
<para>
Summary of the sources of the internally spoofed addresses sorted by flows.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Snot_campus -I1,2 | flow-stat -f9 -S1</command>
</para>
<para>
Summary of the internally spoofed sources and destination pairs sorted by packets.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Snot_campus -I1,2 | flow-stat -f10 -S4</command>
</para>
<para>
Display all flow records that originate external to the campus that have
campus addresses.  Many times these can be attackers trying to exploit host
based authentication mechanisms like unix r* commands.  Another common
source is mobile clients which send packets with their campus addresses
before obtaining a valid IP.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Scampus -i1,2 | flow-print</command>
</para>
<para>
Summary of the destinations of the externally spoofed addresses sorted by octets.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Scampus -i1,2 | flow-stat -f8 -S2</command>
</para>
</informalexample>
</refsect1>

<refsect1>
<title>EXAMPLE - Locate hosts using or running services</title>
<informalexample>
<para>
Find all SMTP servers active during the collection period
that have established connections to the Internet.  Summarize sorted
by octets.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -I1,2 -P25 | flow-stat -f9 -S2</command>
</para>
<para>
Find all outbound NNTP connections to the Internet.  Summarize with source
and destination IP sorted by octets.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -I1,2 -P119 | flow-stat -f10 -S3</command>
</para>
<para>
Find all inbound NNTP connections to the Internet.  Summarize with source
and destination IP sorted by octets.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -i1,2 -P119 | flow-stat -f10 -S3</command>
</para>
</informalexample>
</refsect1>

<refsect1>
<title>EXAMPLE - Multicast usage</title>
<informalexample>
<para>
Summarize Multicast S,G where sources are on campus.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Dmulticast -I1,2 | flow-stat -f10 -S3</command>
</para>
<para>
Summarize Multicast S,G where sources are off campus.
</para>
<para>
<command>flow-cat /flows/R | flow-filter -Dmulticast -i1,2 | flow-stat -f10 -S3</command>
</para>
</informalexample>
</refsect1>
<refsect1>
<title>EXAMPLE - Find scanners</title>
<informalexample>
<para>
Find SMTP scanners with flow-dscan.  This will also find SMTP clients which
try to contact many servers.  This behavior is characterized by a 
recent Microsoft worm.
</para>
<para>
<literallayout>
<command>touch dscan.suppress.src dscan.suppress.dst</command>

<command>flow-cat /flows/R | flow-filter -P25 | flow-dscan -b</command>

</literallayout>
</para>
</informalexample>
</refsect1>

<refsect1>
<title>AUTHOR</title>
<para>
<author>
<firstname>Mark</firstname>
<surname>Fullmer</surname>
</author>
<email>maf@splintered.net</email>
</para>
</refsect1>

<refsect1>
<title>SEE ALSO</title>
<para>
<application>flow-tools</application>(1)
</para>
</refsect1>

</refentry>