-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ktbyers:develop' into add_cisco_apic
- Loading branch information
Showing
11 changed files
with
86 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from netmiko.aruba.aruba_ssh import ArubaSSH | ||
from netmiko.aruba.aruba_os import ArubaOsSSH | ||
from netmiko.aruba.aruba_cx import ArubaCxSSH | ||
|
||
__all__ = ["ArubaSSH"] | ||
__all__ = ["ArubaOsSSH", "ArubaCxSSH"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
""" | ||
Aruba AOS CX support. | ||
For use with Aruba AOS CX devices. | ||
""" | ||
from typing import Any | ||
from netmiko.cisco_base_connection import CiscoSSHConnection | ||
|
||
|
||
class ArubaCxSSH(CiscoSSHConnection): | ||
"""Aruba AOS CX support""" | ||
|
||
def __init__(self, **kwargs: Any) -> None: | ||
if kwargs.get("default_enter") is None: | ||
kwargs["default_enter"] = "\r" | ||
return super().__init__(**kwargs) | ||
|
||
def session_preparation(self) -> None: | ||
self.ansi_escape_codes = True | ||
self._test_channel_read(pattern=r"[>#]") | ||
self.set_base_prompt() | ||
self.disable_paging(command="no page") | ||
|
||
def check_config_mode( | ||
self, | ||
check_string: str = "(config)#", | ||
pattern: str = r"[>#]", | ||
force_regex: bool = False, | ||
) -> bool: | ||
return super().check_config_mode(check_string=check_string, pattern=pattern) | ||
|
||
def config_mode( | ||
self, | ||
config_command: str = "configure term", | ||
pattern: str = "", | ||
re_flags: int = 0, | ||
) -> str: | ||
"""Aruba auto completes on space so 'configure' needs fully spelled-out.""" | ||
return super().config_mode( | ||
config_command=config_command, pattern=pattern, re_flags=re_flags | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters