summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-09-06 10:49:02 +0200
committerChristian Poessinger <christian@poessinger.com>2019-09-06 10:53:44 +0200
commitf9eff4fcdf30223638169e6ed5fa7ca49fcfa223 (patch)
treeade97b6410427f4c0abeb68c01ef737c0a99b0d3 /src/conf_mode
parent96e0f5697b181be4f2f3c5c763821ef574881a93 (diff)
downloadvyos-1x-f9eff4fcdf30223638169e6ed5fa7ca49fcfa223.tar.gz
vyos-1x-f9eff4fcdf30223638169e6ed5fa7ca49fcfa223.zip
bonding: T1614: reword verify() error messages
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/interface-bonding.py46
1 files changed, 28 insertions, 18 deletions
diff --git a/src/conf_mode/interface-bonding.py b/src/conf_mode/interface-bonding.py
index 7b86a0528..acf088de8 100755
--- a/src/conf_mode/interface-bonding.py
+++ b/src/conf_mode/interface-bonding.py
@@ -257,10 +257,12 @@ def verify(bond):
if bond['primary']:
if bond['mode'] not in ['active-backup', 'balance-tlb', 'balance-alb']:
- raise ConfigError('Mode dependency failed, primary not supported in this mode.'.format())
+ raise ConfigError('Mode dependency failed, primary not supported ' \
+ 'in this mode.'.format())
if bond['primary'] not in bond['member']:
- raise ConfigError('Interface "{}" is not part of the bond'.format(bond['primary']))
+ raise ConfigError('Interface "{}" is not part of the bond' \
+ .format(bond['primary']))
for vif_s in bond['vif_s']:
for vif in bond['vif']:
@@ -273,42 +275,50 @@ def verify(bond):
# a bond member is only allowed to be assigned to any one bond
for tmp in conf.list_nodes('interfaces bonding'):
if conf.exists('interfaces bonding ' + tmp + ' member interface ' + intf):
- raise ConfigError('can not add interface {} that is part of another bond ({}) to {}'.format(
- intf, tmp, bond['intf']))
+ raise ConfigError('can not enslave interface {} which already ' \
+ 'belongs to bond {}'.format(intf, tmp))
# we can not add disabled slave interfaces to our bond
if conf.exists('interfaces ethernet ' + intf + ' disable'):
- raise ConfigError('can not add disabled interface {} to {}'.format(intf, bond['intf']))
+ raise ConfigError('can not enslave disabled interface {}' \
+ .format(intf))
# can not add interfaces with an assigned address to a bond
if conf.exists('interfaces ethernet ' + intf + ' address'):
- raise ConfigError('can not add interface {} with an assigned address to {}'.format(intf, bond['intf']))
+ raise ConfigError('can not enslave interface {} which has an address ' \
+ 'assigned'.format(intf))
# bond members are not allowed to be bridge members, too
- for bridge in conf.list_nodes('interfaces bridge'):
- if conf.exists('interfaces bridge ' + bridge + ' member interface ' + intf):
- raise ConfigError('can not add interface {} that is part of bridge {} to {}'.format(intf, bridge, bond['intf']))
+ for tmp in conf.list_nodes('interfaces bridge'):
+ if conf.exists('interfaces bridge ' + tmp + ' member interface ' + intf):
+ raise ConfigError('can not enslave interface {} which belongs to ' \
+ 'bridge {}'.format(intf, tmp))
# bond members are not allowed to be vrrp members, too
- for vrrp in conf.list_nodes('high-availability vrrp group'):
- if conf.exists('high-availability vrrp group ' + vrrp + ' interface ' + intf):
- raise ConfigError('can not add interface {} which belongs to a VRRP group to {}'.format(intf, bond['intf']))
+ for tmp in conf.list_nodes('high-availability vrrp group'):
+ if conf.exists('high-availability vrrp group ' + tmp + ' interface ' + intf):
+ raise ConfigError('can not enslave interface {} which belongs to ' \
+ 'VRRP group {}'.format(intf, tmp))
# bond members are not allowed to be underlaying psuedo-ethernet devices
- for peth in conf.list_nodes('interfaces pseudo-ethernet'):
- if conf.exists('interfaces pseudo-ethernet ' + peth + ' link ' + intf):
- raise ConfigError('can not add interface {} used by pseudo-ethernet {} to {}'.format(intf, peth, bond['intf']))
+ for tmp in conf.list_nodes('interfaces pseudo-ethernet'):
+ if conf.exists('interfaces pseudo-ethernet ' + tmp + ' link ' + intf):
+ raise ConfigError('can not enslave interface {} which belongs to ' \
+ 'pseudo-ethernet {}'.format(intf, tmp))
if bond['primary']:
if bond['primary'] not in bond['member']:
- raise ConfigError('primary interface must be a member interface of {}'.format(bond['intf']))
+ raise ConfigError('primary interface must be a member interface of {}' \
+ .format(bond['intf']))
if bond['mode'] not in ['active-backup', 'balance-tlb', 'balance-alb']:
- raise ConfigError('primary interface only works for mode active-backup, transmit-load-balance or adaptive-load-balance')
+ raise ConfigError('primary interface only works for mode active-backup, ' \
+ 'transmit-load-balance or adaptive-load-balance')
if bond['arp_mon_intvl'] > 0:
if bond['mode'] in ['802.3ad', 'balance-tlb', 'balance-alb']:
- raise ConfigError('ARP link monitoring does not work for mode 802.3ad, transmit-load-balance or adaptive-load-balance')
+ raise ConfigError('ARP link monitoring does not work for mode 802.3ad, ' \
+ 'transmit-load-balance or adaptive-load-balance')
return None