Skip to content

Certificate warning

LoH-lu edited this page Apr 24, 2024 · 6 revisions

If you get such kind of error, they can be safely ignore. InsecureRequestWarning: Unverified HTTPS request is being made to host 'xxxxx'. Adding certificate verification is strongly advised.

Maybe you don't have a certificate configured on your Netbox server. You can bypass it by adding following to netbox_retrieve.py and netbox_push.py:

import urllib3

urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

Clone this wiki locally