-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproxyTCP.xml
More file actions
58 lines (51 loc) · 1.81 KB
/
proxyTCP.xml
File metadata and controls
58 lines (51 loc) · 1.81 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<ipfix xmlns="urn:ietf:params:xml:ns:yang:ietf-ipfix-psamp">
<!--## Collecting TCP process -->
<collectingProcess>
<!--## Arbitrary collecting process name -->
<name>TCP collector</name>
<!--## Type of the collector. Supported types are defined in internalcfg.xml -->
<tcpCollector>
<!--## Arbitrary TCP collector name -->
<name>Listening port 4739</name>
<!--## Local listening port -->
<localPort>4739</localPort>
<!--## Local address to listen on. If empty, bind to all interfaces -->
<localIPAddress></localIPAddress>
</tcpCollector>
<!--## Name of the exporting process. Must match exporting process name -->
<exportingProcess>Forward TCP</exportingProcess>
</collectingProcess>
<!--## Exporting process configuration -->
<exportingProcess>
<!--## Name of the exporting process, must match <exportingProcess> element
in <collectingProcess> -->
<name>Forward TCP</name>
<!--## Specification of storage plugin -->
<destination>
<!--## Arbitrary name -->
<name>Forward flows to collectors</name>
<!--## Configuration to storage plugin -->
<fileWriter>
<!--## Plugin (internal plugin identification) -->
<fileFormat>forwarding</fileFormat>
<!--## Distribution type -->
<distribution>RoundRobin</distribution>
<!--## Default port number. It can be overriden by port tag in destination. -->
<defaultPort>4741</defaultPort>
<!--## Destination address -->
<destination>
<ip>192.168.0.1</ip>
</destination>
<destination>
<ip>192.168.0.2</ip>
</destination>
</fileWriter>
</destination>
<!--## Only one plugin for all ODIDs -->
<singleManager>yes</singleManager>
</exportingProcess>
<!-- List of active Intermediate Plugins -->
<intermediatePlugins>
</intermediatePlugins>
</ipfix>