Skip to content

cisco/cisco-network-node-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3c560ab · May 2, 2016
Mar 16, 2016
May 2, 2016
Jan 7, 2016
May 2, 2016
Mar 24, 2016
May 2, 2016
Dec 9, 2015
Dec 9, 2015
Dec 9, 2015
Jan 16, 2016
May 2, 2016
Mar 11, 2016
Dec 9, 2015
Aug 9, 2015
May 2, 2016
Mar 10, 2016
Aug 9, 2015
Jan 13, 2016

Repository files navigation

CiscoNodeUtils - Cisco Node Utilities

Gem Version Build Status

--

Documentation Workflow Map

This workflow map aids users, developers and maintainers of the CiscoNodeUtils project in selecting the appropriate document(s) for their task.

Please see Learning Resources for additional references.

--

Table of Contents

  1. Overview
  2. Installation
  3. Configuration
  4. Documentation
  5. Examples
  6. Changelog
  7. Learning Resources
  8. License Information

The CiscoNodeUtils gem provides utilities for management of Cisco network nodes. It is designed to work with Puppet and Chef as well as other open source management tools.

This CiscoNodeUtils gem release supports the following:

Platform OS OS Version
Cisco Nexus N9k NX-OS 7.0(3)I2(1) and later
Cisco Nexus N3k NX-OS 7.0(3)I2(1) and later
Cisco Nexus N5k NX-OS 7.3(0)N1(1) and later
Cisco Nexus N6k NX-OS 7.3(0)N1(1) and later
Cisco Nexus N7k NX-OS 7.3(0)D1(1) and later

Please note: For Cisco Nexus 3k and 9k platforms, a virtual Nexus N9000/N3000 may be helpful for development and testing. Users with a valid cisco.com user ID can obtain a copy of a virtual Nexus N9000/N3000 by sending their cisco.com user ID in an email to get-n9kv@cisco.com. If you do not have a cisco.com user ID please register for one at https://tools.cisco.com/IDREG/guestRegistration

To install the CiscoNodeUtils, use the following command:

$ gem install cisco_node_utils

(Add sudo if you're installing under a POSIX system as root)

Alternatively, if you've checked the source out directly, you can call rake install from the root project directory.

Configuration

This gem may require configuration in order to be used. Two configuration file locations are supported:

  • /etc/cisco_node_utils.yaml (system and/or root user configuration)
  • ~/cisco_node_utils.yaml (per-user configuration)

If both files exist and are readable, configuration in the user-specific file will take precedence over the system configuration.

This file specifies the host, port, username, and/or password to be used to connect to one or more nodes.

  • When developing for or testing this gem, this file can specify one or more NX-OS nodes to run tests against. In this case:
    • A node labeled as default will be the default node to test against.
    • Nodes with other names can be selected at test execution time.
    • NX-OS nodes must be defined with a host (hostname or IP address), username, and password.

An example configuration file (illustrating each of the above scenarios) is provided with this gem at docs/cisco_node_utils.yaml.example.

Client

The Client class provides a low-level interface for communicating with the Cisco network node. It provides the base APIs create, get, and set.

  • Cisco::Client::NXAPI - client for communicating with NX-OS 7.0(3)I2(1) and later, using NX-API.

For a greater level of abstraction, the Node class is generally used, but the Client classes can be invoked directly if desired.

Node

The Node class is a singleton which wraps around the Client class to provide for management of a given Cisco network node. It provides the base APIs config_set, config_get, and config_get_default.

CommandReference

The CommandReference class abstracts away the differences between various supported Node types, be that API differences (CLI vs. YANG) or hardware differences (Nexus N9k vs. Nexus N3k). A series of YAML files describe various feature groupings. Each file describes a set of attributes of the given feature and the specifics of how to inspect and manage these attributes for any supported Node types. When a Node is connected, the platform identification of the Node is used to construct a CommandReference instance containing a set of CmdRef objects specific to this Node. The Node APIs config_set, config_get, and config_get_default all rely on the CmdRef.

See also README_YAML.

Feature Providers

Each feature supported by CiscoNodeUtils has its own class. For example, Cisco::RouterOspf is the class used to manage OSPF router configuration on a Node. Each feature class has getters and setters which are wrappers around the Node APIs config_set, config_get, and config_get_default.

Puppet and Chef

This library is designed as a shared backend between Puppet and Chef for the management of Cisco nodes. Puppet providers and Chef providers alike can use the feature provider classes from this module to do the majority of work in actually managing device configuration and state. This reduces the amount of code duplication between the Cisco Puppet modules and the Cisco Chef cookbooks.

Generally speaking, Puppet and Chef should only interact with the feature provider classes, and not directly call into CommandReference or Node.

These utilities can be used directly on a Cisco device (as used by Puppet and Chef) or can run on a workstation and point to a Cisco device (as used by the included minitest suite).

Usage on a Cisco device

Low-level Client API

require 'cisco_node_utils'

# get a connection to the local device
client = Cisco::Client.create()

client.get(command: 'show version')
client.set(values: 'vtp domain mycompany.com')

High-level Node API

require 'cisco_node_utils'

# get a connection to the local device
node = Cisco::Node.instance()

version = node.config_get("show_version", "system_image")

node.config_set("vtp", "domain", "mycompany.com")

Remote usage

Low-level Client API

require 'cisco_node_utils'

client = Cisco::Client.create('n3k.mycompany.com', 'username', 'password')

client.get(command: 'show version')
client.set(values: 'vtp domain mycompany.com')

High-level Node API

require 'cisco_node_utils'

node = Cisco::Node.new("n3k.mycompany.com", "username", "password")

version = node.config_get("show_version", "system_image")

node.config_set("vtp", "domain", "mycompany.com")

See CHANGELOG for a list of changes.

Copyright (c) 2013-2016 Cisco and/or its affiliates.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.