From dd29614d1e055cce714c0e65e216aef83286a1ae Mon Sep 17 00:00:00 2001 From: sever-sever Date: Fri, 26 Feb 2021 14:15:43 +0000 Subject: bgp: T3323: Add verify for ttl-security and ebgp-multihop --- src/conf_mode/protocols_bgp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/conf_mode/protocols_bgp.py b/src/conf_mode/protocols_bgp.py index baf5c4159..127ad0932 100755 --- a/src/conf_mode/protocols_bgp.py +++ b/src/conf_mode/protocols_bgp.py @@ -99,6 +99,9 @@ def verify(bgp): raise ConfigError(f'Specified peer-group "{peer_group}" for '\ f'neighbor "{neighbor}" does not exist!') + # ttl-security and ebgp-multihop can't be used in the same configration + 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') # Some checks can/must only be done on a neighbor and not a peer-group if neighbor == 'neighbor': -- cgit v1.2.3