Skip to content
Snippets Groups Projects
Commit 82aaa8c2 authored by Erik Reid's avatar Erik Reid
Browse files

filter ix public peer same-router addresses by protocol

parent 39cf7005
No related branches found
No related tags found
No related merge requests found
......@@ -104,14 +104,15 @@ def ix_peering_info(peer_info):
other = r.get(k.decode('utf-8')).decode('utf-8')
other = json.loads(other)
peer_address = ipaddress.ip_address(other['name'])
if protocol != type(peer_address).__name__:
continue
if other['router'] == peer_info['router']:
result['router'].append(other['name'])
assert other['description'] is not None # sanity: as above...
if not other['description'].startswith(keyword):
continue
peer_address = ipaddress.ip_address(other['name'])
if protocol == type(peer_address).__name__:
if other['description'].startswith(keyword):
result['group'].append(other['name'])
return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment