Module netmiko.hp.hp_procurve
Classes
class HPProcurveBase (*args: Any, **kwargs: Any)
-
Base Class for cisco-like behavior.
Initialize attributes for establishing connection to target device. :param ip: IP address of target device. Not required if <code>host</code> is provided. :param host: Hostname of target device. Not required if <code>ip</code> is provided. :param username: Username to authenticate against target device if required. :param password: Password to authenticate against target device if required. :param secret: The enable password if target device requires one. :param port: The destination port used to connect to the target device. :param device_type: Class selection based on device type. :param verbose: Enable additional messages to standard output. :param global_delay_factor: Multiplication factor affecting Netmiko delays (default: 1). :param use_keys: Connect to target device using SSH keys. :param key_file: Filename path of the SSH key file to use. :param pkey: SSH key object to use. :param passphrase: Passphrase to use for encrypted key; password will be used for key decryption if not specified. :param disabled_algorithms: Dictionary of SSH algorithms to disable. Refer to the Paramiko documentation for a description of the expected format. :param disable_sha2_fix: Boolean that fixes Paramiko issue with missing server-sig-algs <https://github.com/paramiko/paramiko/issues/1961> (default: False) :param allow_agent: Enable use of SSH key-agent. :param ssh_strict: Automatically reject unknown SSH host keys (default: False, which means unknown SSH host keys will be accepted). :param system_host_keys: Load host keys from the users known_hosts file. :param alt_host_keys: If <code>True</code> host keys will be loaded from the file specified in alt_key_file. :param alt_key_file: SSH host key file to use (if alt_host_keys=True). :param ssh_config_file: File name of OpenSSH configuration file. :param conn_timeout: TCP connection timeout. :param session_timeout: Set a timeout for parallel requests. :param auth_timeout: Set a timeout (in seconds) to wait for an authentication response. :param banner_timeout: Set a timeout to wait for the SSH banner (pass to Paramiko). :param read_timeout_override: Set a timeout that will override the default read_timeout of both send_command and send_command_timing. This is useful for 3rd party libraries where directly accessing method arguments might be impractical. :param keepalive: Send SSH keepalive packets at a specific interval, in seconds. Currently defaults to 0, for backwards compatibility (it will not attempt to keep the connection alive). :param default_enter: Character(s) to send to correspond to enter key (default:
).
:param response_return: Character(s) to use in normalized return data to represent enter key (default:
)
:param serial_settings: Dictionary of settings for use with serial port (pySerial). :param fast_cli: Provide a way to optimize for performance. Converts select_delay_factor to select smallest of global and specific. Sets default global_delay_factor to .1 (default: True) :param session_log: File path, SessionLog object, or BufferedIOBase subclass object to write the session log to. :param session_log_record_writes: The session log generally only records channel reads due to eliminate command duplication due to command echo. You can enable this if you want to record both channel reads and channel writes in the log (default: False). :param session_log_file_mode: "write" or "append" for session_log file mode (default: "write") :param allow_auto_change: Allow automatic configuration changes for terminal settings. (default: False) :param encoding: Encoding to be used when writing bytes to the output channel. (default: "utf-8") :param sock: An open socket or socket-like object (such as a <code>.Channel</code>) to use for communication to the target host (default: None). :param sock_telnet: A dictionary of telnet socket parameters (SOCKS proxy). See telnet_proxy.py code for details. :param global_cmd_verify: Control whether command echo verification is enabled or disabled (default: None). Global attribute takes precedence over function <code>cmd\_verify</code> argument. Value of <code>None</code> indicates to use function <code>cmd\_verify</code> argument. :param auto_connect: Control whether Netmiko automatically establishes the connection as part of the object creation (default: True). :param delay_factor_compat: Set send_command and send_command_timing back to using Netmiko 3.x behavior for delay_factor/global_delay_factor/max_loops. This argument will be eliminated in Netmiko 5.x (default: False). :param disable_lf_normalization: Disable Netmiko's linefeed normalization behavior (default: False)
Expand source code
class HPProcurveBase(CiscoSSHConnection): def __init__(self, *args: Any, **kwargs: Any) -> None: # ProCurve's seem to fail more on connection than they should? # increase conn_timeout to try to improve this. conn_timeout = kwargs.get("conn_timeout") kwargs["conn_timeout"] = 20 if conn_timeout is None else conn_timeout disabled_algorithms = kwargs.get("disabled_algorithms") if disabled_algorithms is None: disabled_algorithms = {"pubkeys": ["rsa-sha2-256", "rsa-sha2-512"]} kwargs["disabled_algorithms"] = disabled_algorithms super().__init__(*args, **kwargs) def session_preparation(self) -> None: """ Prepare the session after the connection has been established. """ # HP output contains VT100 escape codes self.ansi_escape_codes = True # ProCurve has an odd behavior where the router prompt can show up # before the 'Press any key to continue' message. Read up until the # Copyright banner to get past this. try: self.read_until_pattern(pattern=r".*opyright", read_timeout=1.3) except ReadTimeout: pass # Procurve uses 'Press any key to continue' try: data = self.read_until_pattern( pattern=r"(any key to continue|[>#])", read_timeout=3.0 ) if "any key to continue" in data: self.write_channel(self.RETURN) self.read_until_pattern(pattern=r"[>#]", read_timeout=3.0) except ReadTimeout: pass self.set_base_prompt() # If prompt still looks odd, try one more time if len(self.base_prompt) >= 25: self.set_base_prompt() # ProCurve requires elevated privileges to disable output paging :-( self.enable() self.set_terminal_width(command="terminal width 511", pattern="terminal") command = "no page" self.disable_paging(command=command) def check_config_mode( self, check_string: str = ")#", pattern: str = r"[>#]", force_regex: bool = False, ) -> bool: """ The pattern is needed as it is not in the parent class. Not having this will make each check_config_mode() call take ~2 seconds. """ return super().check_config_mode(check_string=check_string, pattern=pattern) def enable( self, cmd: str = "enable", pattern: str = "password", enable_pattern: Optional[str] = None, check_state: bool = True, re_flags: int = re.IGNORECASE, default_username: str = "", ) -> str: """Enter enable mode""" if check_state and self.check_enable_mode(): return "" if not default_username: default_username = self.username output = "" username_pattern = r"(username|login|user name)" pwd_pattern = pattern prompt_pattern = r"[>#]" full_pattern = rf"(username|login|user name|{pwd_pattern}|{prompt_pattern})" # Send the enable command self.write_channel(cmd + self.RETURN) new_output = self.read_until_pattern( full_pattern, read_timeout=15, re_flags=re_flags ) # Send the username if re.search(username_pattern, new_output, flags=re_flags): output += new_output self.write_channel(default_username + self.RETURN) full_pattern = rf"({pwd_pattern}|{prompt_pattern})" new_output = self.read_until_pattern( full_pattern, read_timeout=15, re_flags=re_flags ) # Send the password if re.search(pwd_pattern, new_output, flags=re_flags): output += new_output self.write_channel(self.secret + self.RETURN) new_output = self.read_until_pattern( prompt_pattern, read_timeout=15, re_flags=re_flags ) output += new_output log.debug(f"{output}") self.clear_buffer() msg = ( "Failed to enter enable mode. Please ensure you pass " "the 'secret' argument to ConnectHandler." ) if not self.check_enable_mode(): raise ValueError(msg) return output def cleanup(self, command: str = "logout") -> None: """Gracefully exit the SSH session.""" # Exit configuration mode. try: if self.check_config_mode(): self.exit_config_mode() except Exception: pass # Terminate SSH/telnet session self.write_channel(command + self.RETURN) output = "" for _ in range(10): # The connection might be dead here. try: # "Do you want to log out" # "Do you want to save the current" pattern = r"Do you want.*" new_output = self.read_until_pattern(pattern, read_timeout=1.5) output += new_output if "Do you want to log out" in new_output: self.write_channel("y" + self.RETURN) break elif "Do you want to save the current" in new_output: # Don't automatically save the config (user's responsibility) self.write_channel("n" + self.RETURN) except socket.error: break except ReadTimeout: break except Exception: break time.sleep(0.05) # Set outside of loop self._session_log_fin = True def save_config( self, cmd: str = "write memory", confirm: bool = False, confirm_response: str = "", ) -> str: """Save Config.""" return super().save_config( cmd=cmd, confirm=confirm, confirm_response=confirm_response )
Ancestors
Subclasses
Methods
def check_config_mode(self, check_string: str = ')#', pattern: str = '[>#]', force_regex: bool = False) ‑> bool
-
The pattern is needed as it is not in the parent class.
Not having this will make each check_config_mode() call take ~2 seconds.
def enable(self, cmd: str = 'enable', pattern: str = 'password', enable_pattern: Optional[str] = None, check_state: bool = True, re_flags: int = re.IGNORECASE, default_username: str = '') ‑> str
-
Enter enable mode
def save_config(self, cmd: str = 'write memory', confirm: bool = False, confirm_response: str = '') ‑> str
-
Save Config.
def session_preparation(self) ‑> None
-
Prepare the session after the connection has been established.
Inherited members
CiscoSSHConnection
:check_enable_mode
cleanup
clear_buffer
commit
config_mode
disable_paging
disconnect
establish_connection
exit_config_mode
exit_enable_mode
find_prompt
is_alive
normalize_cmd
normalize_linefeeds
paramiko_cleanup
read_channel
read_channel_timing
read_until_pattern
read_until_prompt
read_until_prompt_or_pattern
run_ttp
select_delay_factor
send_command
send_command_expect
send_command_timing
send_config_from_file
send_config_set
send_multiline
set_base_prompt
set_terminal_width
special_login_handler
strip_ansi_escape_codes
strip_backspaces
strip_command
strip_prompt
telnet_login
write_channel
class HPProcurveSSH (*args: Any, **kwargs: Any)
-
Base Class for cisco-like behavior.
Initialize attributes for establishing connection to target device. :param ip: IP address of target device. Not required if <code>host</code> is provided. :param host: Hostname of target device. Not required if <code>ip</code> is provided. :param username: Username to authenticate against target device if required. :param password: Password to authenticate against target device if required. :param secret: The enable password if target device requires one. :param port: The destination port used to connect to the target device. :param device_type: Class selection based on device type. :param verbose: Enable additional messages to standard output. :param global_delay_factor: Multiplication factor affecting Netmiko delays (default: 1). :param use_keys: Connect to target device using SSH keys. :param key_file: Filename path of the SSH key file to use. :param pkey: SSH key object to use. :param passphrase: Passphrase to use for encrypted key; password will be used for key decryption if not specified. :param disabled_algorithms: Dictionary of SSH algorithms to disable. Refer to the Paramiko documentation for a description of the expected format. :param disable_sha2_fix: Boolean that fixes Paramiko issue with missing server-sig-algs <https://github.com/paramiko/paramiko/issues/1961> (default: False) :param allow_agent: Enable use of SSH key-agent. :param ssh_strict: Automatically reject unknown SSH host keys (default: False, which means unknown SSH host keys will be accepted). :param system_host_keys: Load host keys from the users known_hosts file. :param alt_host_keys: If <code>True</code> host keys will be loaded from the file specified in alt_key_file. :param alt_key_file: SSH host key file to use (if alt_host_keys=True). :param ssh_config_file: File name of OpenSSH configuration file. :param conn_timeout: TCP connection timeout. :param session_timeout: Set a timeout for parallel requests. :param auth_timeout: Set a timeout (in seconds) to wait for an authentication response. :param banner_timeout: Set a timeout to wait for the SSH banner (pass to Paramiko). :param read_timeout_override: Set a timeout that will override the default read_timeout of both send_command and send_command_timing. This is useful for 3rd party libraries where directly accessing method arguments might be impractical. :param keepalive: Send SSH keepalive packets at a specific interval, in seconds. Currently defaults to 0, for backwards compatibility (it will not attempt to keep the connection alive). :param default_enter: Character(s) to send to correspond to enter key (default:
).
:param response_return: Character(s) to use in normalized return data to represent enter key (default:
)
:param serial_settings: Dictionary of settings for use with serial port (pySerial). :param fast_cli: Provide a way to optimize for performance. Converts select_delay_factor to select smallest of global and specific. Sets default global_delay_factor to .1 (default: True) :param session_log: File path, SessionLog object, or BufferedIOBase subclass object to write the session log to. :param session_log_record_writes: The session log generally only records channel reads due to eliminate command duplication due to command echo. You can enable this if you want to record both channel reads and channel writes in the log (default: False). :param session_log_file_mode: "write" or "append" for session_log file mode (default: "write") :param allow_auto_change: Allow automatic configuration changes for terminal settings. (default: False) :param encoding: Encoding to be used when writing bytes to the output channel. (default: "utf-8") :param sock: An open socket or socket-like object (such as a <code>.Channel</code>) to use for communication to the target host (default: None). :param sock_telnet: A dictionary of telnet socket parameters (SOCKS proxy). See telnet_proxy.py code for details. :param global_cmd_verify: Control whether command echo verification is enabled or disabled (default: None). Global attribute takes precedence over function <code>cmd\_verify</code> argument. Value of <code>None</code> indicates to use function <code>cmd\_verify</code> argument. :param auto_connect: Control whether Netmiko automatically establishes the connection as part of the object creation (default: True). :param delay_factor_compat: Set send_command and send_command_timing back to using Netmiko 3.x behavior for delay_factor/global_delay_factor/max_loops. This argument will be eliminated in Netmiko 5.x (default: False). :param disable_lf_normalization: Disable Netmiko's linefeed normalization behavior (default: False)
Expand source code
class HPProcurveSSH(HPProcurveBase): def _build_ssh_client(self) -> SSHClient: """Allow passwordless authentication for HP devices being provisioned.""" # Create instance of SSHClient object. If no SSH keys and no password, then use noauth remote_conn_pre: SSHClient if not self.use_keys and not self.password: remote_conn_pre = SSHClient_noauth() else: remote_conn_pre = SSHClient() # Load host_keys for better SSH security if self.system_host_keys: remote_conn_pre.load_system_host_keys() if self.alt_host_keys and path.isfile(self.alt_key_file): remote_conn_pre.load_host_keys(self.alt_key_file) # Default is to automatically add untrusted hosts (make sure appropriate for your env) remote_conn_pre.set_missing_host_key_policy(self.key_policy) return remote_conn_pre
Ancestors
Inherited members
HPProcurveBase
:check_config_mode
check_enable_mode
cleanup
clear_buffer
commit
config_mode
disable_paging
disconnect
enable
establish_connection
exit_config_mode
exit_enable_mode
find_prompt
is_alive
normalize_cmd
normalize_linefeeds
paramiko_cleanup
read_channel
read_channel_timing
read_until_pattern
read_until_prompt
read_until_prompt_or_pattern
run_ttp
save_config
select_delay_factor
send_command
send_command_expect
send_command_timing
send_config_from_file
send_config_set
send_multiline
session_preparation
set_base_prompt
set_terminal_width
special_login_handler
strip_ansi_escape_codes
strip_backspaces
strip_command
strip_prompt
telnet_login
write_channel
class HPProcurveTelnet (*args: Any, **kwargs: Any)
-
Base Class for cisco-like behavior.
Initialize attributes for establishing connection to target device. :param ip: IP address of target device. Not required if <code>host</code> is provided. :param host: Hostname of target device. Not required if <code>ip</code> is provided. :param username: Username to authenticate against target device if required. :param password: Password to authenticate against target device if required. :param secret: The enable password if target device requires one. :param port: The destination port used to connect to the target device. :param device_type: Class selection based on device type. :param verbose: Enable additional messages to standard output. :param global_delay_factor: Multiplication factor affecting Netmiko delays (default: 1). :param use_keys: Connect to target device using SSH keys. :param key_file: Filename path of the SSH key file to use. :param pkey: SSH key object to use. :param passphrase: Passphrase to use for encrypted key; password will be used for key decryption if not specified. :param disabled_algorithms: Dictionary of SSH algorithms to disable. Refer to the Paramiko documentation for a description of the expected format. :param disable_sha2_fix: Boolean that fixes Paramiko issue with missing server-sig-algs <https://github.com/paramiko/paramiko/issues/1961> (default: False) :param allow_agent: Enable use of SSH key-agent. :param ssh_strict: Automatically reject unknown SSH host keys (default: False, which means unknown SSH host keys will be accepted). :param system_host_keys: Load host keys from the users known_hosts file. :param alt_host_keys: If <code>True</code> host keys will be loaded from the file specified in alt_key_file. :param alt_key_file: SSH host key file to use (if alt_host_keys=True). :param ssh_config_file: File name of OpenSSH configuration file. :param conn_timeout: TCP connection timeout. :param session_timeout: Set a timeout for parallel requests. :param auth_timeout: Set a timeout (in seconds) to wait for an authentication response. :param banner_timeout: Set a timeout to wait for the SSH banner (pass to Paramiko). :param read_timeout_override: Set a timeout that will override the default read_timeout of both send_command and send_command_timing. This is useful for 3rd party libraries where directly accessing method arguments might be impractical. :param keepalive: Send SSH keepalive packets at a specific interval, in seconds. Currently defaults to 0, for backwards compatibility (it will not attempt to keep the connection alive). :param default_enter: Character(s) to send to correspond to enter key (default:
).
:param response_return: Character(s) to use in normalized return data to represent enter key (default:
)
:param serial_settings: Dictionary of settings for use with serial port (pySerial). :param fast_cli: Provide a way to optimize for performance. Converts select_delay_factor to select smallest of global and specific. Sets default global_delay_factor to .1 (default: True) :param session_log: File path, SessionLog object, or BufferedIOBase subclass object to write the session log to. :param session_log_record_writes: The session log generally only records channel reads due to eliminate command duplication due to command echo. You can enable this if you want to record both channel reads and channel writes in the log (default: False). :param session_log_file_mode: "write" or "append" for session_log file mode (default: "write") :param allow_auto_change: Allow automatic configuration changes for terminal settings. (default: False) :param encoding: Encoding to be used when writing bytes to the output channel. (default: "utf-8") :param sock: An open socket or socket-like object (such as a <code>.Channel</code>) to use for communication to the target host (default: None). :param sock_telnet: A dictionary of telnet socket parameters (SOCKS proxy). See telnet_proxy.py code for details. :param global_cmd_verify: Control whether command echo verification is enabled or disabled (default: None). Global attribute takes precedence over function <code>cmd\_verify</code> argument. Value of <code>None</code> indicates to use function <code>cmd\_verify</code> argument. :param auto_connect: Control whether Netmiko automatically establishes the connection as part of the object creation (default: True). :param delay_factor_compat: Set send_command and send_command_timing back to using Netmiko 3.x behavior for delay_factor/global_delay_factor/max_loops. This argument will be eliminated in Netmiko 5.x (default: False). :param disable_lf_normalization: Disable Netmiko's linefeed normalization behavior (default: False)
Expand source code
class HPProcurveTelnet(HPProcurveBase): def telnet_login( self, pri_prompt_terminator: str = "#", alt_prompt_terminator: str = ">", username_pattern: str = r"(Login Name:|sername:)", pwd_pattern: str = r"assword", delay_factor: float = 1.0, max_loops: int = 60, ) -> str: """Telnet login: can be username/password or just password.""" return super().telnet_login( pri_prompt_terminator=pri_prompt_terminator, alt_prompt_terminator=alt_prompt_terminator, username_pattern=username_pattern, pwd_pattern=pwd_pattern, delay_factor=delay_factor, max_loops=max_loops, )
Ancestors
Methods
def telnet_login(self, pri_prompt_terminator: str = '#', alt_prompt_terminator: str = '>', username_pattern: str = '(Login Name:|sername:)', pwd_pattern: str = 'assword', delay_factor: float = 1.0, max_loops: int = 60) ‑> str
-
Telnet login: can be username/password or just password.
Inherited members
HPProcurveBase
:check_config_mode
check_enable_mode
cleanup
clear_buffer
commit
config_mode
disable_paging
disconnect
enable
establish_connection
exit_config_mode
exit_enable_mode
find_prompt
is_alive
normalize_cmd
normalize_linefeeds
paramiko_cleanup
read_channel
read_channel_timing
read_until_pattern
read_until_prompt
read_until_prompt_or_pattern
run_ttp
save_config
select_delay_factor
send_command
send_command_expect
send_command_timing
send_config_from_file
send_config_set
send_multiline
session_preparation
set_base_prompt
set_terminal_width
special_login_handler
strip_ansi_escape_codes
strip_backspaces
strip_command
strip_prompt
write_channel