forgot these don't have .str attrs

This commit is contained in:
brent s. 2020-05-15 03:23:53 -04:00
parent 32c78201e8
commit b5b47e92fd
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
1 changed files with 5 additions and 5 deletions

View File

@ -173,7 +173,7 @@ class TunnelBroker(object):
try:
ipr.addr('del',
index = assignment.iface_idx,
address = str(b),
address = str(b.ip),
mask = b.prefixlen,
family = socket.AF_INET6)
logger.debug('Removed {0} with prefix {1} from {2}.'.format(str(b), b.prefixlen, assignment.iface))
@ -182,13 +182,13 @@ class TunnelBroker(object):
try:
ipr.addr('add',
index = assignment.iface_idx,
address = str(b),
address = str(b.ip),
mask = b.prefixlen,
family = socket.AF_INET6)
logger.debug('Added {0} with prefix {1} to {2}.'.format(str(b), b.prefixlen, assignment.iface))
logger.debug('Added {0} with prefix {1} to {2}.'.format(str(b.ip), b.prefixlen, assignment.iface))
except Exception as e:
logger.error(('Could not add address block {0} on {1}: '
'{2}').format(str(b), assignment.iface, e))
logger.error(('Could not add address block {0} with prefix {1} on {2}: '
'{3}').format(str(b.ip), b.prefixlen, assignment.iface, e))
ipr.close()
raise e
ipr.close()