Added parsing of LLDP remote port description (#54873)

* Added parsing of LLDP remote port description

* Removed whitespace on blank line.
pull/55727/head
marouim 5 years ago committed by Sumit Jaiswal
parent 7b7d6a1fef
commit 33374094d1

@ -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…
Cancel
Save