diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-08-21 16:32:16 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-08-21 16:32:16 +0000 |
commit | f453b33a6056de8fc5145ca9e680361fbce68348 (patch) | |
tree | 389dace55a31793acb7598c68b9c8acb2e2bdc36 /src | |
parent | 2277371fe18577502ce318c23789f86d1ec97be7 (diff) | |
download | vyos-1x-f453b33a6056de8fc5145ca9e680361fbce68348.tar.gz vyos-1x-f453b33a6056de8fc5145ca9e680361fbce68348.zip |
T6672: Fix system option ssh-client source-interface
Fix for system option ssh-client source-interface
For the `verify_source_interface` the key `ifname` if required
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/system_option.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/conf_mode/system_option.py b/src/conf_mode/system_option.py index d1647e3a1..52d0b7cda 100755 --- a/src/conf_mode/system_option.py +++ b/src/conf_mode/system_option.py @@ -85,6 +85,8 @@ def verify(options): raise ConfigError('No interface with address "{address}" configured!') if 'source_interface' in config: + # verify_source_interface reuires key 'ifname' + config['ifname'] = config['source_interface'] verify_source_interface(config) if 'source_address' in config: address = config['source_address'] |