Skip to content

Commit

Permalink
OOBM interface needs to be handled differently
Browse files Browse the repository at this point in the history
  • Loading branch information
carsten-AEI authored and ixs committed Aug 26, 2020
1 parent bd1209b commit e767d10
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion napalm_procurve/procurve.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,10 @@ def _lldp_detail_parser(self, interface):
lldp = {}
ifs = self._get_interface_map()

command = "show lldp info remote-device ethernet {}".format(interface)
if interface == 'OOBM':
command = "show lldp info remote-device oobm"
else:
command = "show lldp info remote-device ethernet {}".format(interface)
output = self._send_command(command)

key_mib_table = {
Expand Down

0 comments on commit e767d10

Please sign in to comment.