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 am trying to use a basic telnet script in python 3.9.11 to connect to a device in devnet sandbox. The code is below:import getpassimport sysimport telnetlibHOST = "10.10.20.48"user = input("Enter your telnet username: ")password = getpass.getpass(...
I am trying to execute this python script on the above mentioned devnet sandbox. When running the command: NC-Get-Config.py --host devnetsandboxiosxec8k.cisco.com -u shawn.horne -p d2_IRT8W_4oNXfp --port 830I am receiving the following output in my t...
I am trying to connect to the devnet vpn using anyconnect. The VPN server is devnetsandbox-usw1-reservation.cisco.com:20252 and I am using the credentials that were emailed to me in March. Is there something I can do to reset these credentials or a...
I tried converting to a byte using the below updated code but still getting the same error which I have also placed below the code snippet.import getpassimport sysimport telnetlibHOST = "10.10.20.48"user = input("Enter your telnet username: ")passwor...