diff options
| -rwxr-xr-x | src/conf_mode/flow_accounting_conf.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/conf_mode/flow_accounting_conf.py b/src/conf_mode/flow_accounting_conf.py index dc9f860c7..c36d52e05 100755 --- a/src/conf_mode/flow_accounting_conf.py +++ b/src/conf_mode/flow_accounting_conf.py @@ -23,6 +23,7 @@ from ipaddress import ip_address  from vyos.base import Warning  from vyos.config import Config  from vyos.configdict import dict_merge +from vyos.configverify import verify_vrf  from vyos.ifconfig import Section  from vyos.template import render  from vyos.util import call @@ -191,6 +192,7 @@ def verify(flow_config):                  sflow_collector_ipver = ip_address(server).version          # check if vrf is defined for Sflow +        verify_vrf(flow_config)          sflow_vrf = None          if 'vrf' in flow_config:              sflow_vrf = flow_config['vrf'] | 
