File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed
Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 1+ TCP (input plugin)
2+ ==================
3+
4+ The plugin receives IPFIX messages over TCP transport protocol from one or more exporters
5+ and pass them into the collector. Multiple instances of the plugin can run concurrently.
6+ However, they must listen on different ports or local IP addresses.
7+
8+ Unlike UDP, TCP is reliable transport protocol that allows exporters to detect connection or
9+ disconnection of the collector. Therefore, the issues with templates retransmission and
10+ initial period of inability to interpret flow records does not apply here.
11+
12+ Example configuration
13+ ---------------------
14+
15+ .. code-block :: xml
16+
17+ <input >
18+ <name >TCP input</name >
19+ <plugin >tcp</plugin >
20+ <params >
21+ <localPort >4739</localPort >
22+ <localIPAddress ></localIPAddress >
23+ </params >
24+ </input >
25+
26+ Parameters
27+ ----------
28+
29+ Mandatory parameters:
30+
31+ :``localPort ``:
32+ Local port on which the plugin listens. [default: 4739]
33+ :``localIPAddress ``:
34+ Local IPv4/IPv6 address on which the TCP input plugin listens. If the element
35+ is left empty, the plugin binds to all available network interfaces. The element can occur
36+ multiple times (one IP address per occurrence) to manually select multiple interfaces.
37+ [default: empty]
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Mandatory parameters:
5454:``localPort ``:
5555 Local port on which the plugin listens. [default: 4739]
5656:``localIPAddress ``:
57- Local IPv4/IPv6 address an which the UDP input plugin listens. If the element
57+ Local IPv4/IPv6 address on which the UDP input plugin listens. If the element
5858 is left empty, the plugin binds to all available network interfaces. The element can occur
5959 multiple times (one IP address per occurrence) to manually select multiple interfaces.
6060 [default: empty]
You can’t perform that action at this time.
0 commit comments