We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Credentials in this repo are outdated
https://github.com/CiscoDevNet/dne-dna-code
This file specifically,
https://github.com/CiscoDevNet/dne-dna-code/blob/master/env_lab.py
Incorrect
# Values for the Always On IOS XE Sandbox IOS_XE_1 = { "host": "sandbox-iosxe-recomm-1.cisco.com", "username": "developer", "password": "C1sco12345", "netconf_port": 830, "restconf_port": 443, "ssh_port": 22 }
Correct
# Values for the Always On IOS XE Sandbox IOS_XE_1 = { "host": "sandbox-iosxe-recomm-1.cisco.com", "username": "developer", "password": "lastorangerestoreball8876", "netconf_port": 830, "restconf_port": 443, "ssh_port": 22 }
See here for details: DevNet Sandbox - Workspace - Lab Catalog - IOS XE on CSR Recommended Code AlwaysOn (cisco.com)
This affects this LL (and probably more):
Python says hello with ncclient - Cisco DevNet Learning Center
In addition, this sandbox, which is listed twice in env_lab.py for a reason unknown to me, has the incorrect SSH port.
NXOS_1 = { "host": "sbx-nxos-mgmt.cisco.com", "username": "admin", "password": "Admin_1234!", "netconf_port": 10000, "restconf_port": 443, "nxapi_port": 80, "ssh_port": 8181 }
NXOS_1 = { "host": "sbx-nxos-mgmt.cisco.com", "username": "admin", "password": "Admin_1234!", "netconf_port": 10000, "restconf_port": 443, "nxapi_port": 80, "ssh_port": 22 }
See this page for details: DevNet Sandbox - Workspace - Lab Catalog - Open NX-OS Programmability (cisco.com)
Finally,
We have one more (as far as I can tell) that needs updating. However, this one I'm not sure about, because it's using the 'express' environment.
elif ENVIRONMENT_IN_USE == "express": DNA_CENTER = { "host": "sandboxdnac2.cisco.com", "port": 443, "username": "dnacdev", "password": "D3v93T@wK!" }
elif ENVIRONMENT_IN_USE == "express": DNA_CENTER = { "host": "sandboxdnac2.cisco.com", "port": 443, "username": "devnetuser", "password": "Cisco123!" }
Details: DevNet Sandbox - Workspace - Lab Catalog - Cisco DNA Center AO2 2.3.3.5
The text was updated successfully, but these errors were encountered:
Update env_lab.py
ffb79fa
Fix for #131
No branches or pull requests
Credentials in this repo are outdated
https://github.com/CiscoDevNet/dne-dna-code
This file specifically,
https://github.com/CiscoDevNet/dne-dna-code/blob/master/env_lab.py
Incorrect
Correct
See here for details: DevNet Sandbox - Workspace - Lab Catalog - IOS XE on CSR Recommended Code AlwaysOn (cisco.com)
This affects this LL (and probably more):
Python says hello with ncclient - Cisco DevNet Learning Center
In addition, this sandbox, which is listed twice in env_lab.py for a reason unknown to me, has the incorrect SSH port.
Incorrect
Correct
See this page for details: DevNet Sandbox - Workspace - Lab Catalog - Open NX-OS Programmability (cisco.com)
Finally,
We have one more (as far as I can tell) that needs updating. However, this one I'm not sure about, because it's using the 'express' environment.
Incorrect
elif ENVIRONMENT_IN_USE == "express":
DNA_CENTER = {
"host": "sandboxdnac2.cisco.com",
"port": 443,
"username": "dnacdev",
"password": "D3v93T@wK!"
}
Correct
elif ENVIRONMENT_IN_USE == "express":
DNA_CENTER = {
"host": "sandboxdnac2.cisco.com",
"port": 443,
"username": "devnetuser",
"password": "Cisco123!"
}
Details: DevNet Sandbox - Workspace - Lab Catalog - Cisco DNA Center AO2 2.3.3.5
The text was updated successfully, but these errors were encountered: