~openstack-charm-sync/charms/trusty/neutron-api-odl/stable

« back to all changes in this revision

Viewing changes to templates/ml2_conf.ini

  • Committer: Liam Young
  • Date: 2015-07-21 10:30:53 UTC
  • mfrom: (2.2.10 stable.remote)
  • Revision ID: liam.young@canonical.com-20150721103053-gcum55bc4v4xtbek
[james-page, r=gnuoy] Kilo support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###############################################################################
 
2
# [ WARNING ]
 
3
# Configuration file maintained by Juju. Local changes may be overwritten.
 
4
###############################################################################
 
5
[ml2]
 
6
type_drivers = {{ overlay_network_type }},local,flat,vlan
 
7
tenant_network_types = {{ overlay_network_type }}
 
8
mechanism_drivers = opendaylight
 
9
 
 
10
[ml2_type_flat]
 
11
# Provider nets only
 
12
 
 
13
[ml2_type_vlan]
 
14
# Provider nets only
 
15
 
 
16
[ml2_type_gre]
 
17
tunnel_id_ranges = 1:1000
 
18
 
 
19
[ml2_type_vxlan]
 
20
vni_ranges = 1001:2000
 
21
 
 
22
[ml2_odl]
 
23
username = {{ odl_username }}
 
24
password = {{ odl_password }}
 
25
url = http://{{ odl_ip }}:{{ odl_port }}/controller/nb/v2/neutron
 
26
 
 
27
[securitygroup]
 
28
{% if security_groups -%}
 
29
enable_security_group = True
 
30
{% else -%}
 
31
enable_security_group = False
 
32
{% endif -%}