diff options
author | Mandeep Dhami <dhami@noironetworks.com> | 2014-08-25 21:07:48 -0700 |
---|---|---|
committer | Ivar Lazzaro <ivarlazzaro@gmail.com> | 2014-09-01 11:36:57 -0700 |
commit | dfcf6cc8080e25a6c909038171d5924dcc2deb11 (patch) | |
tree | 362cbb709c0749b8647798b0b0d2a6be9763d361 /etc | |
parent | 5042399d0787c31179dfbec0f7a9d43d1c9450d0 (diff) | |
download | neutron-dfcf6cc8080e25a6c909038171d5924dcc2deb11.tar.gz |
Apic drivers enhancements (second approach): Topology
- Handle topology dynamically
Implements blueprint: apic-driver-enhancements
Change-Id: I80ae799bf7c18939e58cb5c1ea8eb441633285df
Diffstat (limited to 'etc')
-rw-r--r-- | etc/neutron/plugins/ml2/ml2_conf_cisco.ini | 2 | ||||
-rw-r--r-- | etc/neutron/rootwrap.d/cisco-apic.filters | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/etc/neutron/plugins/ml2/ml2_conf_cisco.ini b/etc/neutron/plugins/ml2/ml2_conf_cisco.ini index fced7bb6d2..c2582e0835 100644 --- a/etc/neutron/plugins/ml2/ml2_conf_cisco.ini +++ b/etc/neutron/plugins/ml2/ml2_conf_cisco.ini @@ -75,6 +75,8 @@ # apic_app_profile_name = openstack_app # Agent timers for State reporting and topology discovery # apic_sync_interval = 30 +# apic_agent_report_interval = 30 +# apic_agent_poll_interval = 2 # Specify your network topology. # This section indicates how your compute nodes are connected to the fabric's diff --git a/etc/neutron/rootwrap.d/cisco-apic.filters b/etc/neutron/rootwrap.d/cisco-apic.filters new file mode 100644 index 0000000000..69e4afcc89 --- /dev/null +++ b/etc/neutron/rootwrap.d/cisco-apic.filters @@ -0,0 +1,16 @@ +# neutron-rootwrap command filters for nodes on which neutron is +# expected to control network +# +# This file should be owned by (and only-writeable by) the root user + +# format seems to be +# cmd-name: filter-name, raw-command, user, args + +[Filters] + +# cisco-apic filters +lldpctl: CommandFilter, lldpctl, root + +# ip_lib filters +ip: IpFilter, ip, root +ip_exec: IpNetnsExecFilter, ip, root |