blob: d78399856af8826ca0b653fd48ac2b64c659265a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) #
# and others #
# #
# All rights reserved. This program and the accompanying materials #
# are made available under the terms of the Apache License, Version 2.0 #
# which accompanies this distribution, and is available at #
# http://www.apache.org/licenses/LICENSE-2.0 #
###############################################################################
import re
from discover.fetcher import Fetcher
from utils.inventory_mgr import InventoryMgr
NAME_RE = '^[a-zA-Z]*GigabitEthernet'
class CliFetchHostPnicsVpp(Fetcher):
def __init__(self):
super().__init__()
self.inv = InventoryMgr()
self.name_re = re.compile(NAME_RE)
def get(self, id):
host_id = id[:id.rindex("-")]
host_id = id[:host_id.rindex("-")]
vedges = self.inv.find_items({
"environment": self.get_env(),
"type": "vedge",
"host": host_id
})
ret = []
for vedge in vedges:
pnic_ports = vedge['ports']
for pnic_name in pnic_ports:
if not self.name_re.search(pnic_name):
continue
pnic = pnic_ports[pnic_name]
pnic['host'] = host_id
pnic['id'] = host_id + "-pnic-" + pnic_name
pnic['type'] = 'host_pnic'
pnic['object_name'] = pnic_name
pnic['Link detected'] = 'yes' if pnic['state'] == 'up' else 'no'
ret.append(pnic)
return ret
|