Hello All,
I am trying to work on python automation for intersight device claim, mentioned in this cisco document :
https://community.cisco.com/t5/data-center-documents/automated-intersight-device-claim/ta-p/3652214
my intersight_api_param.jason file looks something like this :
{
"api_base_uri": "https://intersight.com/api/v1",
"api_key_id": "Key",
"api_private_key_file": "PATH"
}
My devices.json looks something like this :
{
"device_type": "ucsm",
"hostname":"10.20.1.161",
"password": "Cisco123",
"username": "admin",
"read_only": true
}
I am getting this error :
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='10.20.1.161', port=443): Max retries exceeded with url: /nuova (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ffb654961c0>: Failed to establish a new connection: [Errno 60] Operation timed out'))
I do not have any proxy in my environment, did anyone get the same error ?
Thanks in advance !!