Skip to content
Snippets Groups Projects
Commit cf64eb60 authored by Erik Reid's avatar Erik Reid
Browse files

add snmp ifc index to interface output data

parent 532fe047
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,8 @@ def get_router_interfaces(hostname, community, config):
yield {
"v4Address": v4Address["value"],
"v4Mask": v4Mask["value"],
"v4InterfaceName": v4IfcNames[v4InterfaceOID["value"]]
"v4InterfaceName": v4IfcNames[v4InterfaceOID["value"]],
"index": v4InterfaceOID["value"]
}
v6IfcNames = {}
......@@ -111,5 +112,6 @@ def get_router_interfaces(hostname, community, config):
yield {
"v6Address": _v6address_oid2str(m.group(2)),
"v6Mask": v6AddressAndMask["value"],
"v6InterfaceName": v6IfcNames[m.group(1)]
"v6InterfaceName": v6IfcNames[m.group(1)],
"index": m.group(1)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment