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

changed local ip-address detecteion

removed 127.*, fe80::* amd ::1
parent 809d393e
No related branches found
No related tags found
No related merge requests found
......@@ -590,9 +590,17 @@ def get_local_ip_addresses() -> List[str]:
_addresses = []
adapters = get_adapters()
for adapter in adapters:
if adapter.nice_name not in ['lo']:
for ip in adapter.ips:
_addresses.append(ip.ip)
for ip in adapter.ips:
drop_ip = False
if ip.is_IPv4:
ip_addr= ip.ip
elif ip.is_IPv6:
ip_addr = ip.ip[0]
for entry in ['127.', 'fe80::', '::1']:
if str(ip_addr).lower().startswith(entry):
drop_ip = True
if not drop_ip:
_addresses.append(ip_addr)
return _addresses
......
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