Added parsing of LLDP remote port description (#54873)
* Added parsing of LLDP remote port description * Removed whitespace on blank line.
This commit is contained in:
parent
7b7d6a1fef
commit
33374094d1
1 changed files with 6 additions and 0 deletions
|
@ -280,6 +280,7 @@ class Interfaces(FactsBase):
|
|||
facts[intf] = list()
|
||||
fact = dict()
|
||||
fact['host'] = self.parse_lldp_host(entry)
|
||||
fact['remote_description'] = self.parse_lldp_remote_desc(entry)
|
||||
fact['port'] = self.parse_lldp_port(entry)
|
||||
facts[intf].append(fact)
|
||||
return facts
|
||||
|
@ -351,6 +352,11 @@ class Interfaces(FactsBase):
|
|||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_lldp_remote_desc(self, data):
|
||||
match = re.search(r'Port Description: (.+)$', data, re.M)
|
||||
if match:
|
||||
return match.group(1)
|
||||
|
||||
def parse_lldp_host(self, data):
|
||||
match = re.search(r'System Name: (.+)$', data, re.M)
|
||||
if match:
|
||||
|
|
Loading…
Reference in a new issue