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 b473ee03 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent fd788427
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
# 2022-05-09: added item to BgpPeer class, this is used in the discovery function
# 2022-05-11: changed bgp_get_peer_entry to get proper parameters instead of Nontransparent list
# added remote_as to BgpPeerItem
#
# 2022-05-12: changed IPv6 address format to lower case as required by rfc5952 section-4.3 (this affects IPv6 peers)
# snmpwalk sample
# .1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.32.9.200.0.2.0.1.0.0.0.0.31.100.0.7 = Gauge32: 4
......@@ -132,6 +132,8 @@ def parse_huawei_bgp_peer(string_table: List[StringTable]) -> Dict[str, BgpPeer]
for entry in hwbgpPeer2Entry:
oid_end, remote_as, remote_address, state, fsm_established_counter, fsm_established_time, unavail_reason = entry
remote_address = remote_address.lower()
bgp_peer = bgp_get_peer_entry(
remote_addr=remote_address,
remote_as=remote_as,
......
No preview for this file type
......@@ -16,7 +16,7 @@
'name': 'huawei_bgp_peer',
'num_files': 2,
'title': 'Huawei BGP Peer',
'version': '20220511.v.0.4',
'version': '20220512.v.0.4',
'version.min_required': '2.0.0',
'version.packaged': '2021.09.20',
'version.usable_until': None}
\ No newline at end of file
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