mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-13 04:11:00 +00:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user