summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-10-31 14:42:04 +0100
committerChristian Poessinger <christian@poessinger.com>2021-10-31 14:43:10 +0100
commit17215846b512851e7df8cdfcfc06c18b1d27f763 (patch)
treee304734a6f31eb6aff059acb51757b98335f3466 /src
parent629c169a43ffcff4a820cdafaeca430141815829 (diff)
downloadvyos-1x-17215846b512851e7df8cdfcfc06c18b1d27f763.tar.gz
vyos-1x-17215846b512851e7df8cdfcfc06c18b1d27f763.zip
netflow: T3953: use warning if "netflow source-ip" does not exist instead of error
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/flow_accounting_conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/flow_accounting_conf.py b/src/conf_mode/flow_accounting_conf.py
index 9cae29481..0a4559ade 100755
--- a/src/conf_mode/flow_accounting_conf.py
+++ b/src/conf_mode/flow_accounting_conf.py
@@ -306,7 +306,7 @@ def verify(config):
source_ip_presented = True
break
if not source_ip_presented:
- raise ConfigError("Your \"netflow source-ip\" does not exist in the system")
+ print("Warning: your \"netflow source-ip\" does not exist in the system")
# check if engine-id compatible with selected protocol version
if config['netflow']['engine-id']: