Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit 45a8186a authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent b98cd8f8
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ def parse_ospfv3_interface(string_table: List[StringTable]) -> Optional[Dict[str
ospf_if_index, ospf_if_inst_id = oid_end.split('.')
local_interface = get_short_if_name(interfaces_by_index.get(ospf_if_index, ospf_if_index))
local_interface = get_short_if_name(interfaces_by_index.get(ospf_if_index, f'Index {ospf_if_index}'))
ospf_interfaces[local_interface] = OspfV3Interface(
IfAreaId=int(area_id),
......
......@@ -130,7 +130,7 @@ def parse_ospfv3_neighbor(string_table: List[StringTable]) -> Dict[str, OspfV3Ne
address = render_ipv6_address(address)
nbr_if_index, nbr_if_inst_id, nbr_rtr_id = oid_end.split('.')
nbr_local_interface = get_short_if_name(interfaces_by_index.get(nbr_if_index, nbr_if_index))
nbr_local_interface = get_short_if_name(interfaces_by_index.get(nbr_if_index, f'Index {nbr_if_index}'))
neighbors[f'{address} on {nbr_local_interface}'] = OspfV3Neighbor(
nbrRtrId=render_ipv4_neighbor_id(nbr_rtr_id),
......
......@@ -131,7 +131,7 @@ def parse_ospfv3_virtuallink(string_table: List[StringTable]) -> Dict[str, OspfV
address = render_ipv6_address(address)
area, nbr_id = oid_end.split('.')
nbr_local_interface = get_short_if_name(interfaces_by_index.get(if_index, if_index))
nbr_local_interface = get_short_if_name(interfaces_by_index.get(if_index, f'Index {if_index}'))
virtual_links[address] = OspfV3VirtualLink(
VirtNbrId=render_ipv4_neighbor_id(nbr_id),
......
No preview for this file type
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