Skip to content

Release of cisco-network-node-utils v1.8.0

Choose a tag to compare

@mikewiebe mikewiebe released this 13 Dec 16:37
· 203 commits to develop since this release
0976d7f

Cisco Resources

Added

  • Extend syslog_server with attributes:
    • port
  • Extend syslog_settings with attributes:
    • console
    • monitor
    • source_interface
  • Extend radius_global with attributes:
    • source_interface
  • Extend tacacs_global with attributes:
    • source_interface

Changed

  • syslog_server initialize now uses options hash
  • Prior to this release syslog_server accepted positional arguments for name,
    level, and vrf. New behavior is to pass attributes as a hash.

Example:

options = { 'name' => '1.1.1.1', 'level' => '4', 'port' => '2154',
            'vrf' => 'red' }
Cisco::SyslogServer.new(options, true)
  • tacacs_global key removal fixed
    • Prior to this release key removal was done by passing in a value of 8. A
      nil value is now used. Added intelligence to determine key format
      automatically for removal.