From 3c0db1b5b574778f82ebb5a4a5084f558ac8ec53 Mon Sep 17 00:00:00 2001 From: sever-sever Date: Fri, 26 Feb 2021 14:55:43 +0000 Subject: bgp: T3324: Add checks for peer password --- src/conf_mode/protocols_bgp.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/conf_mode/protocols_bgp.py b/src/conf_mode/protocols_bgp.py index 127ad0932..1f93ceb54 100755 --- a/src/conf_mode/protocols_bgp.py +++ b/src/conf_mode/protocols_bgp.py @@ -103,6 +103,10 @@ def verify(bgp): if 'ebgp_multihop' in peer_config and 'ttl_security' in peer_config: raise ConfigError('You can\'t set both ebgp-multihop and ttl-security hops') + # Check spaces in the password + if 'password' in peer_config and ' ' in peer_config['password']: + raise ConfigError('You can\'t use spaces in the password') + # Some checks can/must only be done on a neighbor and not a peer-group if neighbor == 'neighbor': # remote-as must be either set explicitly for the neighbor -- cgit v1.2.3