]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Configuration agent for Cisco devices
authorHareesh Puthalath <hareesh.puthalath@gmail.com>
Thu, 26 Jun 2014 15:39:56 +0000 (17:39 +0200)
committerHareesh Puthalath <hareesh.puthalath@gmail.com>
Fri, 25 Jul 2014 17:34:27 +0000 (19:34 +0200)
commit334aeccd3f0fe34cbd980df7b1bc490616eb1eb1
treea15a8de2636526611c905361163ebb1c48a81493
parent01f1508d597e5fcc7a395b5e7c608d387a83dced
Configuration agent for Cisco devices

A generic config agent for configuring L3+ services in Cisco devices.

This patch targets specifically configuration of L3 fuctionality,
namely routing, NAT and floatingIPs in Cisco CSR1kv virtual appliance.

Implements blueprint: cisco-config-agent
https://blueprints.launchpad.net/neutron/+spec/cisco-config-agent

Change-Id: Ic887a93480eca0b56049c67e32c98658e3a4427f
20 files changed:
neutron/plugins/cisco/cfg_agent/__init__.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/cfg_agent.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/cfg_exceptions.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_drivers/__init__.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_drivers/csr1kv/__init__.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_drivers/csr1kv/cisco_csr1kv_snippets.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_drivers/csr1kv/csr1kv_routing_driver.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_drivers/devicedriver_api.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_drivers/driver_mgr.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_drivers/dummy_driver.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/device_status.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/service_helpers/__init__.py [new file with mode: 0644]
neutron/plugins/cisco/cfg_agent/service_helpers/routing_svc_helper.py [new file with mode: 0644]
neutron/plugins/cisco/common/cisco_constants.py
neutron/tests/unit/cisco/cfg_agent/__init__.py [new file with mode: 0644]
neutron/tests/unit/cisco/cfg_agent/test_cfg_agent.py [new file with mode: 0644]
neutron/tests/unit/cisco/cfg_agent/test_csr1kv_routing_driver.py [new file with mode: 0644]
neutron/tests/unit/cisco/cfg_agent/test_device_status.py [new file with mode: 0644]
neutron/tests/unit/cisco/cfg_agent/test_routing_svc_helper.py [new file with mode: 0644]
setup.cfg