Skip to content
Discussion options

You must be logged in to vote

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.

    Aruba uses "(<controller name>) (config) #" as config prompt
    """
    if not pattern:
        pattern = re.escape(self.base_prompt[:16])
    return super().check_config_mode(check_string=check_string, pattern=pattern)

`

The problem I had is solved in two ways:

  1. changing the directory back to mynode as the snipped below

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by DonKawamura66
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant