Skip to content

Commit bc3650a

Browse files
committed
Update Docs
1 parent 566602c commit bc3650a

File tree

172 files changed

+5699
-1056
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+5699
-1056
lines changed

docs/netmiko/a10/a10_ssh.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
6262
<dl>
6363
<dt id="netmiko.a10.a10_ssh.A10SSH"><code class="flex name class">
6464
<span>class <span class="ident">A10SSH</span></span>
65-
<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>
65+
<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>
6666
</code></dt>
6767
<dd>
6868
<div class="desc"><p>A10 support.</p>
@@ -149,7 +149,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
149149
to select smallest of global and specific. Sets default global_delay_factor to .1
150150
(default: True)
151151

152-
:param session_log: File path or BufferedIOBase subclass object to write the session log to.
152+
:param session_log: File path, SessionLog object, or BufferedIOBase subclass object
153+
to write the session log to.
153154

154155
:param session_log_record_writes: The session log generally only records channel reads due
155156
to eliminate command duplication due to command echo. You can enable this if you
@@ -162,11 +163,14 @@ <h2 class="section-title" id="header-classes">Classes</h2>
162163
(default: False)
163164

164165
:param encoding: Encoding to be used when writing bytes to the output channel.
165-
(default: ascii)
166+
(default: "utf-8")
166167

167168
:param sock: An open socket or socket-like object (such as a &lt;code&gt;.Channel&lt;/code&gt;) to use for
168169
communication to the target host (default: None).
169170

171+
:param sock_telnet: A dictionary of telnet socket parameters (SOCKS proxy). See
172+
telnet_proxy.py code for details.
173+
170174
:param global_cmd_verify: Control whether command echo verification is enabled or disabled
171175
(default: None). Global attribute takes precedence over function &lt;code&gt;cmd\_verify&lt;/code&gt;
172176
argument. Value of &lt;code&gt;None&lt;/code&gt; indicates to use function &lt;code&gt;cmd\_verify&lt;/code&gt; argument.

docs/netmiko/a10/index.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
4949
<dl>
5050
<dt id="netmiko.a10.A10SSH"><code class="flex name class">
5151
<span>class <span class="ident">A10SSH</span></span>
52-
<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>
52+
<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>
5353
</code></dt>
5454
<dd>
5555
<div class="desc"><p>A10 support.</p>
@@ -136,7 +136,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
136136
to select smallest of global and specific. Sets default global_delay_factor to .1
137137
(default: True)
138138

139-
:param session_log: File path or BufferedIOBase subclass object to write the session log to.
139+
:param session_log: File path, SessionLog object, or BufferedIOBase subclass object
140+
to write the session log to.
140141

141142
:param session_log_record_writes: The session log generally only records channel reads due
142143
to eliminate command duplication due to command echo. You can enable this if you
@@ -149,11 +150,14 @@ <h2 class="section-title" id="header-classes">Classes</h2>
149150
(default: False)
150151

151152
:param encoding: Encoding to be used when writing bytes to the output channel.
152-
(default: ascii)
153+
(default: "utf-8")
153154

154155
:param sock: An open socket or socket-like object (such as a &lt;code&gt;.Channel&lt;/code&gt;) to use for
155156
communication to the target host (default: None).
156157

158+
:param sock_telnet: A dictionary of telnet socket parameters (SOCKS proxy). See
159+
telnet_proxy.py code for details.
160+
157161
:param global_cmd_verify: Control whether command echo verification is enabled or disabled
158162
(default: None). Global attribute takes precedence over function &lt;code&gt;cmd\_verify&lt;/code&gt;
159163
argument. Value of &lt;code&gt;None&lt;/code&gt; indicates to use function &lt;code&gt;cmd\_verify&lt;/code&gt; argument.

docs/netmiko/accedian/accedian_ssh.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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 &lt;code&gt;.Channel&lt;/code&gt;) 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 &lt;code&gt;cmd\_verify&lt;/code&gt;
188192
argument. Value of &lt;code&gt;None&lt;/code&gt; indicates to use function &lt;code&gt;cmd\_verify&lt;/code&gt; argument.

docs/netmiko/accedian/index.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
4949
<dl>
5050
<dt id="netmiko.accedian.AccedianSSH"><code class="flex name class">
5151
<span>class <span class="ident">AccedianSSH</span></span>
52-
<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>
52+
<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>
5353
</code></dt>
5454
<dd>
5555
<div class="desc"><p>Class for platforms that have no enable mode.</p>
@@ -143,7 +143,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
143143
to select smallest of global and specific. Sets default global_delay_factor to .1
144144
(default: True)
145145

146-
:param session_log: File path or BufferedIOBase subclass object to write the session log to.
146+
:param session_log: File path, SessionLog object, or BufferedIOBase subclass object
147+
to write the session log to.
147148

148149
:param session_log_record_writes: The session log generally only records channel reads due
149150
to eliminate command duplication due to command echo. You can enable this if you
@@ -156,11 +157,14 @@ <h2 class="section-title" id="header-classes">Classes</h2>
156157
(default: False)
157158

158159
:param encoding: Encoding to be used when writing bytes to the output channel.
159-
(default: ascii)
160+
(default: "utf-8")
160161

161162
:param sock: An open socket or socket-like object (such as a &lt;code&gt;.Channel&lt;/code&gt;) to use for
162163
communication to the target host (default: None).
163164

165+
:param sock_telnet: A dictionary of telnet socket parameters (SOCKS proxy). See
166+
telnet_proxy.py code for details.
167+
164168
:param global_cmd_verify: Control whether command echo verification is enabled or disabled
165169
(default: None). Global attribute takes precedence over function &lt;code&gt;cmd\_verify&lt;/code&gt;
166170
argument. Value of &lt;code&gt;None&lt;/code&gt; indicates to use function &lt;code&gt;cmd\_verify&lt;/code&gt; argument.

0 commit comments

Comments
 (0)