Aruba OS issues with "/" #2413
-
Hi All, I hope this is the good place for this, otherwise my apologies all of a sudden I am getting issues when I'm using the "/" in my send_config_set() for netmiko Below the code I'm using: aruba_mm = { with ConnectHandler(**aruba_mm) as net_connect: The command is successful when you don't use the "/", as you can see I tried using unicode, to no avail. I keep getting "Timed-out reading channel, data not available." Anyone some idea what this might be? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I have found the issue here. It had nothing to do with "/". ` def check_config_mode(self, check_string="(config) #", pattern=""):
` The problem I had is solved in two ways:
Below a small snipped of the session logging: (Branches_MM.local) [mynode] #no paging (Branches_MM.local) [branches] (config) #write memory |
Beta Was this translation helpful? Give feedback.
I have found the issue here. It had nothing to do with "/".
It had to do something with changing the folder on the mobility master.
The vendor module netmiko/aruba/aruba_ssh.py checks if the node is still in config mode by the following code:
` def check_config_mode(self, check_string="(config) #", pattern=""):
"""
Checks if the device is in configuration mode or not.
`
The problem I had is solved in two ways: