diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-03-02 16:39:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-02 16:39:53 +0200 |
| commit | ef710a5acbd7af9f60ba63716912b0c9a20f5329 (patch) | |
| tree | a08a4b937ee2009c6b35e4bec00c2cec6102bec7 /src | |
| parent | 0c7a2b861abd4c897a2cbe4a5564effca8f9cc01 (diff) | |
| parent | 2994d3c8c19f2ad978ad00548592f6c7c3519d15 (diff) | |
| download | vyos-1x-ef710a5acbd7af9f60ba63716912b0c9a20f5329.tar.gz vyos-1x-ef710a5acbd7af9f60ba63716912b0c9a20f5329.zip | |
Merge pull request #5016 from c-po/ospf-auth
ospf: T7679: fix plaintext authentication on specific interface
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/protocols_ospf.py | 61 |
1 files changed, 35 insertions, 26 deletions
diff --git a/src/conf_mode/protocols_ospf.py b/src/conf_mode/protocols_ospf.py index 848079ba1..46023e486 100755 --- a/src/conf_mode/protocols_ospf.py +++ b/src/conf_mode/protocols_ospf.py @@ -62,30 +62,30 @@ def verify(config_dict): # Validate if configured Access-list exists if 'area' in ospf: - networks = [] - for area, area_config in ospf['area'].items(): - # Implemented as warning to not break existing configurations - if area == '0' and dict_search('area_type.nssa', area_config) != None: - Warning('You cannot configure NSSA to backbone!') - # Implemented as warning to not break existing configurations - if area == '0' and dict_search('area_type.stub', area_config) != None: - Warning('You cannot configure STUB to backbone!') - # Implemented as warning to not break existing configurations - if len(area_config['area_type']) > 1: - Warning(f'Only one area-type is supported for area "{area}"!') - - if 'import_list' in area_config: - acl_import = area_config['import_list'] - if acl_import: verify_access_list(acl_import, ospf) - if 'export_list' in area_config: - acl_export = area_config['export_list'] - if acl_export: verify_access_list(acl_export, ospf) - - if 'network' in area_config: - for network in area_config['network']: - if network in networks: - raise ConfigError(f'Network "{network}" already defined in different area!') - networks.append(network) + networks = [] + for area, area_config in ospf['area'].items(): + # Implemented as warning to not break existing configurations + if area == '0' and dict_search('area_type.nssa', area_config) != None: + Warning('You cannot configure NSSA to backbone!') + # Implemented as warning to not break existing configurations + if area == '0' and dict_search('area_type.stub', area_config) != None: + Warning('You cannot configure STUB to backbone!') + # Implemented as warning to not break existing configurations + if len(area_config['area_type']) > 1: + Warning(f'Only one area-type is supported for area "{area}"!') + + if 'import_list' in area_config: + if acl_import := area_config['import_list']: + verify_access_list(acl_import, ospf) + if 'export_list' in area_config: + if acl_export := area_config['export_list']: + verify_access_list(acl_export, ospf) + + if 'network' in area_config: + for network in area_config['network']: + if network in networks: + raise ConfigError(f'Network "{network}" already defined in different area!') + networks.append(network) if 'interface' in ospf: for interface, interface_config in ospf['interface'].items(): @@ -102,8 +102,17 @@ def verify(config_dict): if 'area' in ospf and 'area' in interface_config: for area, area_config in ospf['area'].items(): if 'network' in area_config: - raise ConfigError('Can not use OSPF interface area and area ' \ - 'network configuration at the same time!') + raise ConfigError('Can not use OSPF "interface area" and ' \ + '"area network" configuration at the same time!') + + # FRR only allows a single authentication mode (MD5, NULL or plaintext) + # at a time. Prevent users from defining more than one authentication mode. + if 'authentication' in interface_config: + auth_keys = set(interface_config['authentication']) + exclusive_auth_keys = {'md5', 'null', 'plaintext_password'} + if len(auth_keys & exclusive_auth_keys) >= 2: + raise ConfigError('Can not use multiple authentication modes ' + f'simultaneously for interface "{interface}"!') # If interface specific options are set, we must ensure that the # interface is bound to our requesting VRF. Due to the VyOS |
