Skip to content

Update device_info.py #92

New issue

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

Merged
merged 1 commit into from
Mar 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion netmiko-interface-example/device_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,18 @@
"password": "D_Vay!_10&",
"device_type": "cisco_ios"
}

# DevNet Always-On NETCONF/YANG & RESTCONF Sandbox Device
# https://devnetsandbox.cisco.com/RM/Diagram/Index/7b4d4209-a17c-4bc3-9b38-f15184e53a94?diagramType=Topology
# try this one if you can't access the previous one
ios_xe_latest = {
"address": "sandbox-iosxe-latest-1.cisco.com",
"netconf_port": 830,
"restconf_port": 443,
"ssh_port": 22,
"username": "admin",
"password": "C1sco12345",
"device_type": "cisco_ios"
}
# DevNet Always-On Sandbox NX-OS
#
nxos1 = {
Expand Down