diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-24 22:49:36 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-25 23:27:15 +0100 |
commit | 0030f9fc844036a0d1a0381a9096b1b9d368e35f (patch) | |
tree | a2e4860df8cedaec882e9f4c09ffcac2f624c476 /data/templates/netflow/uacctd.conf.tmpl | |
parent | 015e26acc8ed65b6a7d778107a83ee8604950f90 (diff) | |
download | vyos-1x-0030f9fc844036a0d1a0381a9096b1b9d368e35f.tar.gz vyos-1x-0030f9fc844036a0d1a0381a9096b1b9d368e35f.zip |
flow-accounting: T4099: rename "netflow source-ip" to source-address
sFlow uses the source-address CLI node and netflow uses source-ip this is just
confusing and should be synced to the common source-address CLI node.
Diffstat (limited to 'data/templates/netflow/uacctd.conf.tmpl')
-rw-r--r-- | data/templates/netflow/uacctd.conf.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/netflow/uacctd.conf.tmpl b/data/templates/netflow/uacctd.conf.tmpl index 2a43b3ce2..27a157531 100644 --- a/data/templates/netflow/uacctd.conf.tmpl +++ b/data/templates/netflow/uacctd.conf.tmpl @@ -48,8 +48,8 @@ nfprobe_maxflows[nf_{{ server }}]: {{ netflow.max_flows }} {% if netflow.sampling_rate is defined and netflow.sampling_rate is not none %} sampling_rate[nf_{{ server }}]: {{ netflow.sampling_rate }} {% endif %} -{% if netflow.source_ip is defined and netflow.source_ip is not none %} -nfprobe_source_ip[nf_{{ server }}]: {{ netflow.source_ip }} +{% if netflow.source_address is defined and netflow.source_address is not none %} +nfprobe_source_ip[nf_{{ server }}]: {{ netflow.source_address }} {% endif %} {% if netflow.timeout is defined and netflow.timeout is not none %} nfprobe_timeouts[nf_{{ server }}]: expint={{ netflow.timeout.expiry_interval }}:general={{ netflow.timeout.flow_generic }}:icmp={{ netflow.timeout.icmp }}:maxlife={{ netflow.timeout.max_active_life }}:tcp.fin={{ netflow.timeout.tcp_fin }}:tcp={{ netflow.timeout.tcp_generic }}:tcp.rst={{ netflow.timeout.tcp_rst }}:udp={{ netflow.timeout.udp }} |