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

update project

parent 57a40f62
No related branches found
No related tags found
No related merge requests found
......@@ -268,6 +268,8 @@ def check_cisco_eigrp_interface(item, params, parsed):
cEigrpOOSrvcd = EigrpIf.get('cEigrpOOSrvcd')
cEigrpAuthMode = EigrpIf.get('cEigrpAuthMode')
cEigrpAuthKeyChain = EigrpIf.get('cEigrpAuthKeyChain')
cEigrpAS = EigrpIf.get('cEigrpAS')
cEigrpIfName = EigrpIf.get('cEigrpIfName')
state = 0
infotext = 'Peer count: %s, Hello interval: %s, Auth Mode: %s' % (cEigrpPeerCount, cEigrpHelloInterval, cEigrpAuthMode)
......@@ -284,7 +286,7 @@ def check_cisco_eigrp_interface(item, params, parsed):
'\n exit-af-interface'\
'\n eigrp YOUR-ROUTER-ID'\
'\n network ....'\
'\n end' % (eigrp_as, interface_name)
'\n end' % (cEigrpAS, cEigrpIfName)
yield 1, 'weak authentication set'
elif cEigrpAuthMode == 'none':
yield 2, 'no authentication set'
......
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