Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
I'd like to connect to this reserved sandbox IOS XR Programmability Sandbox using NETCONF protocol. Firstly, I tested the connection using python ncclient with below lab_env settings. The connection is set up successfully.IOS_XR_r1_rsv = { "host":...
I am testing the connection to IOS XR Always-On Sandbox using ncclient. The code should be quite straight forwardfrom ncclient import managerwith manager.connect( host='sandbox-iosxr-1.cisco.com', # IP address of device port=830...
I am learning Ansible with the IOS XE device. Everything works smooth in the beginning but since last Thursday, I am not able to connect to these two sandboxes using Ansible:sandbox-iosxe-recomm-1.cisco.comios-xe-mgmt.cisco.comThe error messages are:...
I'm playing with the Ansible Hands On lab with NXOS Sandbox On step 3, I understand the purpose is to create a playbook to copy a customized hosts file to replace the default hosts files stored in /etc/hosts However, when I run the playbook as per th...
I am running through this lab "Exploring IOS XE YANG Data Models with NETCONF"when I try this command to ssh to the CSR1000V Host (sandbox-iosxe-recomm-1.cisco.com), ssh -oHostKeyAlgorithms=+ssh-dss developer@sandbox-iosxe-recomm-1.cisco.com -p 830 -...
Ok, I fix this issue by adding a few more parameters in manager.connect()Here is the modified code:with manager.connect( host=router["host"], port=router["netconf_port"], username=router["username"], password=router["passw...
Yes, I can ssh to both of them even without ssh password, and I also realised the host names were changed.I understand this is a shared environment, someone might do something magic, but can't the sandbox admin do a regular sanity check on these alwa...