@@ -71,7 +71,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
7171< dl >
7272< dt id ="netmiko.accedian.accedian_ssh.AccedianSSH "> < code class ="flex name class ">
7373< span > class < span class ="ident "> AccedianSSH</ span > </ span >
74- < span > (</ span > < span > ip: str = '', host: str = '', username: str = '', password: Optional[str] = None, secret: str = '', port: Optional[int] = None, device_type: str = '', verbose: bool = False, global_delay_factor: float = 1.0, global_cmd_verify: Optional[bool] = None, use_keys: bool = False, key_file: Optional[str] = None, pkey: Optional[paramiko.pkey.PKey] = None, passphrase: Optional[str] = None, disabled_algorithms: Optional[Dict[str, Any]] = None, disable_sha2_fix: bool = False, allow_agent: bool = False, ssh_strict: bool = False, system_host_keys: bool = False, alt_host_keys: bool = False, alt_key_file: str = '', ssh_config_file: Optional[str] = None, conn_timeout: int = 10, auth_timeout: Optional[int] = None, banner_timeout: int = 15, blocking_timeout: int = 20, timeout: int = 100, session_timeout: int = 60, read_timeout_override: Optional[float] = None, keepalive: int = 0, default_enter: Optional[str] = None, response_return: Optional[str] = None, serial_settings: Optional[Dict[str, Any]] = None, fast_cli: bool = True, session_log: Optional[< a title ="netmiko.session_log.SessionLog " href ="../session_log.html#netmiko.session_log.SessionLog "> SessionLog</ a > ] = None, session_log_record_writes: bool = False, session_log_file_mode: str = 'write', allow_auto_change: bool = False, encoding: str = 'utf-8', sock: Optional[socket.socket] = None, auto_connect: bool = True, delay_factor_compat: bool = False, disable_lf_normalization: bool = False)</ span >
74+ < span > (</ span > < span > ip: str = '', host: str = '', username: str = '', password: Optional[str] = None, secret: str = '', port: Optional[int] = None, device_type: str = '', verbose: bool = False, global_delay_factor: float = 1.0, global_cmd_verify: Optional[bool] = None, use_keys: bool = False, key_file: Optional[str] = None, pkey: Optional[paramiko.pkey.PKey] = None, passphrase: Optional[str] = None, disabled_algorithms: Optional[Dict[str, Any]] = None, disable_sha2_fix: bool = False, allow_agent: bool = False, ssh_strict: bool = False, system_host_keys: bool = False, alt_host_keys: bool = False, alt_key_file: str = '', ssh_config_file: Optional[str] = None, conn_timeout: int = 10, auth_timeout: Optional[int] = None, banner_timeout: int = 15, blocking_timeout: int = 20, timeout: int = 100, session_timeout: int = 60, read_timeout_override: Optional[float] = None, keepalive: int = 0, default_enter: Optional[str] = None, response_return: Optional[str] = None, serial_settings: Optional[Dict[str, Any]] = None, fast_cli: bool = True, session_log: Optional[< a title ="netmiko.session_log.SessionLog " href ="../session_log.html#netmiko.session_log.SessionLog "> SessionLog</ a > ] = None, session_log_record_writes: bool = False, session_log_file_mode: str = 'write', allow_auto_change: bool = False, encoding: str = 'utf-8', sock: Optional[socket.socket] = None, sock_telnet: Optional[Dict[str, Any]] = None, auto_connect: bool = True, delay_factor_compat: bool = False, disable_lf_normalization: bool = False)</ span >
7575</ code > </ dt >
7676< dd >
7777< div class ="desc "> < p > Class for platforms that have no enable mode.</ p >
@@ -165,7 +165,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
165165 to select smallest of global and specific. Sets default global_delay_factor to .1
166166 (default: True)
167167
168- :param session_log: File path or BufferedIOBase subclass object to write the session log to.
168+ :param session_log: File path, SessionLog object, or BufferedIOBase subclass object
169+ to write the session log to.
169170
170171 :param session_log_record_writes: The session log generally only records channel reads due
171172 to eliminate command duplication due to command echo. You can enable this if you
@@ -178,11 +179,14 @@ <h2 class="section-title" id="header-classes">Classes</h2>
178179 (default: False)
179180
180181 :param encoding: Encoding to be used when writing bytes to the output channel.
181- (default: ascii )
182+ (default: "utf-8" )
182183
183184 :param sock: An open socket or socket-like object (such as a <code>.Channel</code>) to use for
184185 communication to the target host (default: None).
185186
187+ :param sock_telnet: A dictionary of telnet socket parameters (SOCKS proxy). See
188+ telnet_proxy.py code for details.
189+
186190 :param global_cmd_verify: Control whether command echo verification is enabled or disabled
187191 (default: None). Global attribute takes precedence over function <code>cmd\_verify</code>
188192 argument. Value of <code>None</code> indicates to use function <code>cmd\_verify</code> argument.
0 commit comments