summaryrefslogtreecommitdiff
path: root/src/conf_mode/protocols_bgp.py
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2026-03-20 18:41:24 +0200
committerViacheslav Hletenko <v.gletenko@vyos.io>2026-03-24 17:02:56 +0000
commitbb2aee1e58c1cd30087b935798060e6bf3c698c8 (patch)
tree99f692623ad596519ff26da443f62415cc3bcf59 /src/conf_mode/protocols_bgp.py
parenta9a75eb7dce077bceee1ae13dc943b05d8759925 (diff)
downloadvyos-1x-bb2aee1e58c1cd30087b935798060e6bf3c698c8.tar.gz
vyos-1x-bb2aee1e58c1cd30087b935798060e6bf3c698c8.zip
T8410: Fix typos and mistakes for operational and configuration commands
Fix typos and mistakes in the commands and comments No functional changes
Diffstat (limited to 'src/conf_mode/protocols_bgp.py')
-rwxr-xr-xsrc/conf_mode/protocols_bgp.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/conf_mode/protocols_bgp.py b/src/conf_mode/protocols_bgp.py
index a7b9ea39b..24e244bb9 100755
--- a/src/conf_mode/protocols_bgp.py
+++ b/src/conf_mode/protocols_bgp.py
@@ -52,7 +52,7 @@ def verify_vrf_as_import(search_vrf_name: str, afi_name: str, vrfs_config: dict)
:type afi_name: str
:param vrfs_config: configuration dependents vrfs
:type vrfs_config: dict
- :return: if vrf in import list retrun true else false
+ :return: if vrf in import list return true else false
:rtype: bool
"""
for vrf_name, vrf_config in vrfs_config.items():
@@ -155,7 +155,7 @@ def verify_remote_as(peer_config, bgp_config):
return None
def verify_afi(peer_config, bgp_config):
- # If address_family configured under neighboor
+ # If address_family configured under neighbor
if 'address_family' in peer_config:
return True
@@ -183,7 +183,7 @@ def verify(config_dict):
if 'vrf_context' in config_dict:
vrf = config_dict['vrf_context']
- # eqivalent of the C foo ? 'a' : 'b' statement
+ # equivalent of the C foo ? 'a' : 'b' statement
bgp = vrf and dict_search(f'vrf.name.{vrf}.protocols.bgp',
config_dict) or config_dict['bgp']
bgp['policy'] = config_dict['policy']
@@ -277,7 +277,7 @@ def verify(config_dict):
raise ConfigError(f'Only one local-as number can be specified for peer "{peer}"!')
# Neighbor local-as override can not be the same as the local-as
- # we use for this BGP instane!
+ # we use for this BGP instance!
asn = list(peer_config['local_as'].keys())[0]
if asn == bgp['system_as']:
raise ConfigError('Cannot have local-as same as system-as number')
@@ -287,11 +287,11 @@ def verify(config_dict):
raise ConfigError(f'Neighbor "{peer}" has local-as specified which is '\
'the same as remote-as, this is not allowed!')
- # ttl-security and ebgp-multihop can't be used in the same configration
+ # ttl-security and ebgp-multihop can't be used in the same configuration
if 'ebgp_multihop' in peer_config and 'ttl_security' in peer_config:
raise ConfigError('You can not set both ebgp-multihop and ttl-security hops')
- # interface and ebgp-multihop can't be used in the same configration
+ # interface and ebgp-multihop can't be used in the same configuration
if 'ebgp_multihop' in peer_config and 'interface' in peer_config:
raise ConfigError(f'Ebgp-multihop can not be used with directly connected '\
f'neighbor "{peer}"')
@@ -395,13 +395,13 @@ def verify(config_dict):
if 'conditionally_advertise' in afi_config:
if 'advertise_map' not in afi_config['conditionally_advertise']:
- raise ConfigError('Must speficy advertise-map when conditionally-advertise is in use!')
+ raise ConfigError('Must specify advertise-map when conditionally-advertise is in use!')
# Verify advertise-map (which is a route-map) exists
verify_route_map(afi_config['conditionally_advertise']['advertise_map'], bgp)
if ('exist_map' not in afi_config['conditionally_advertise'] and
'non_exist_map' not in afi_config['conditionally_advertise']):
- raise ConfigError('Must either speficy exist-map or non-exist-map when ' \
+ raise ConfigError('Must either specify exist-map or non-exist-map when ' \
'conditionally-advertise is in use!')
if {'exist_map', 'non_exist_map'} <= set(afi_config['conditionally_advertise']):
@@ -417,7 +417,7 @@ def verify(config_dict):
# T4332: bgp deterministic-med cannot be disabled while addpath-tx-bestpath-per-AS is in use
if 'addpath_tx_per_as' in afi_config:
if dict_search('parameters.deterministic_med', bgp) == None:
- raise ConfigError('addpath-tx-per-as requires BGP deterministic-med paramtere to be set!')
+ raise ConfigError('addpath-tx-per-as requires BGP deterministic-med parameter to be set!')
# Validate if configured Prefix list exists
if 'prefix_list' in afi_config: