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.
Hi everyone,I am having an issue with two different incoming services on a cisco ASA. We have 2 different applications that are connected to the ASA, the first one is an Tunnel 10.1.0.0 / 16, and the other is a direct connection to our network with s...
I have multiple devices connected in a ring to 2 different L3 switches on each end, the devices have one gateway pointing to one switch L3 the another L3 switch has a vrrp enable, but we have a problem when is a broken link in the ring, half of the d...
Good afternoon, I am having a problem in a network. It is a ring topology and rstp is enable, but I had a broken link and rstp didnt't work well, I am losing connection to some devices because rstp is blocking the port, i am not sure what is the caus...
I am running a script with Netmiko to erase a username on around 2000 switches, It is working but when the user was already erasing it, netmiko shows an error because is expecting a confirmation to delete, how can I condition expect to have two possi...
Thanks, I managed to solve like thisoutput1= net_connect.send_command('sh run | in username xxxxx')net_connect.config_mode()net_connect.find_prompt()#Send commands on config modewith open('users.txt','w+') as d:user_list = d.write(output1)with open('...