diff options
| -rwxr-xr-x | src/conf_mode/system_sflow.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/conf_mode/system_sflow.py b/src/conf_mode/system_sflow.py index 41119b494..a22dac36f 100755 --- a/src/conf_mode/system_sflow.py +++ b/src/conf_mode/system_sflow.py @@ -54,7 +54,7 @@ def verify(sflow):      # Check if configured sflow agent-address exist in the system      if 'agent_address' in sflow:          tmp = sflow['agent_address'] -        if not is_addr_assigned(tmp): +        if not is_addr_assigned(tmp, include_vrf=True):              raise ConfigError(                  f'Configured "sflow agent-address {tmp}" does not exist in the system!'              ) | 
