You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The last 'napalm-dellos10' version doesn't report some interfaces type in the interface list table because the 'show interface status' doesn't report it.
This is the case for:
mgmt
port-channel
OS10# show interface
ethernet Ethernet interface number
loopback Loopback interface number
mgmt Management interface number
null Null interface number
phy-eth Ethernet IEEE 802.3
port-channel Port-channel number
status Show interface status
vlan VLAN ID number
OS10# show interface | grep "line protocol"
Ethernet 1/1/1 is up, line protocol is up
Ethernet 1/1/2 is up, line protocol is up
...
Ethernet 1/1/50 is down, line protocol is down
Ethernet 1/1/51 is down, line protocol is down
Ethernet 1/1/52 is down, line protocol is down
Ethernet 1/1/53 is up, line protocol is up
Ethernet 1/1/54 is up, line protocol is up
Management 1/1/1 is up, line protocol is up
Vlan 1 is up, line protocol is down
Port-channel 1 is up, line protocol is up
Port-channel 2 is up, line protocol is up
Port-channel 3 is up, line protocol is up
Port-channel 4 is up, line protocol is up
Port-channel 5 is up, line protocol is up
Port-channel 46 is up, line protocol is down
Port-channel 47 is up, line protocol is down
Port-channel 48 is up, line protocol is down
NULL is up, line protocol is up
This is because of the following command in the code: output = self._send_command('show interface status | display-xml')
So if I change the command to test if againt the management interface, it is reported by the
get_interfaces NAPALM method: output = self._send_command('show interface mgmt | display-xml')
Hello,
The last 'napalm-dellos10' version doesn't report some interfaces type in the interface list table because the 'show interface status' doesn't report it.
This is the case for:
This is because of the following command in the code:
output = self._send_command('show interface status | display-xml')
So if I change the command to test if againt the management interface, it is reported by the
get_interfaces NAPALM method:
output = self._send_command('show interface mgmt | display-xml')
Result:
Could you add a second loop in the following methods?
Regards,
Ludovic
The text was updated successfully, but these errors were encountered: