Skip to content

Releases: ktbyers/netmiko

Netmiko 1.4.0 Release

02 May 00:10
Compare
Choose a tag to compare

The following change is not backwards compatible

  • Fix SSH config file support to be standard host specifier
# Previously you would use host:port specifiers in the SSH config file. 
# Now the format should look as follows.

host jumphost
  IdentityFile ~/.ssh/test_rsa
  user admin
  hostname myserver.us-west-1.compute.amazonaws.com

host 10.10.10.70
  user cisco
  hostname 10.10.10.70
  Port 22
  ProxyCommand ssh jumphost nc %h %p

Enhancements/Fixes

  • Add support for send_config_set with a string
  • Add ASA login support
  • Fix bugs with regular expression handling and re.escape
  • Improve timing issues with InLine Transfer on large files.
  • Integrate to readthedocs
  • Add some additional platforms to autodetect
  • Make the telnet code easier to reuse

New Drivers / Improved Platform Support

  • Add Check Point gaia support
  • Add Dell PowerConnect Telnet support
  • Improve Extreme EXOS driver

Netmiko 1.3.0 Release

24 Mar 20:14
Compare
Choose a tag to compare

New Platforms

  • Add support for Cisco Telepresence Endpoints
  • Add support for Mellanox
  • Add Dell PowerConnect support
  • Add terminal_server device type
  • Add Pluribus support

Other improvements

  • Add redispatch capability
  • Add SSH autodetect feature
  • Bugfixes and improvements
  • Add SSH lock capability for added concurrency support

Netmiko 1.2.8 Release

22 Feb 00:04
Compare
Choose a tag to compare
  • Improvements to SCP to support additional SSH arguments
  • Improve code that verifies login happened correctly
  • Add Ciena SAOS (experimental)
  • Add Cisco Telepresence driver (experimental)

Netmiko 1.2.7

28 Jan 21:46
Compare
Choose a tag to compare
  • Updating InLineTransfer support to be consistent with NAPALM requirements.

Netmiko 1.2.5

14 Jan 17:33
Compare
Choose a tag to compare

Netmiko Release 1.2.5

  • Add logging support
  • Context Manager
  • Create InLineTransfer mechanism using on-box TCL
  • Update tooling to pylama and tox
  • Reliability improvements
  • Add preliminary SNMP auto detect device type
  • Adding Eltex, Ubiquiti Edge Vendors

Netmiko 1.1.0

25 Oct 18:24
Compare
Choose a tag to compare
  • Add allow_agent support
  • VYOS improvements
  • Telnet improvements
  • Fix Arista check_config_mode issue
  • Fix ASA changeto bug
  • Fix send_config_set output display bug
  • PAN-OS timing improvements

Netmiko 1.0.0

13 Sep 18:48
Compare
Choose a tag to compare

This release is not backwards compatible

Please regression test your code

  • send_command() method is now identical to send_command_expect()
  • send_command_timing() method has been added for situations that require delay based solution
  • Abstracted read/write operations to enable support for telnet

Other changes

  • Add support for Telnet (Cisco IOS telnet driver)
  • Rationalize delay_factor and global_delay_factor
  • Add support for SCP get operation
  • Add support for Cisco S300 series
  • Fix issue with show output being modified due to terminal width
  • Add Cisco WLC config methods
  • Expand upon unit tests (SCP and Linux unit tests added)

Netmiko 0.5.6

26 Jul 02:12
Compare
Choose a tag to compare
  • Add Brocade ICX/FastIron support
  • Add Brocade MLX/NetIron support
  • Improve HPE Comware7 Support
  • Improving reliability on some timing issues

Netmiko 0.5.1

19 May 22:04
Compare
Choose a tag to compare
  • Minor fixes to support netmiko-tools.

Netmiko 0.5.0

18 May 16:24
Compare
Choose a tag to compare
  • Add Palo Alto support
  • Add Quanta support
  • Linux driver improvements
  • Cisco WLC improvement
  • Add utilities Module to support netmiko-tools
  • Improve reliability