~landscape/charms/trusty/neutron-api-odl-vpp/trunk

« back to all changes in this revision

Viewing changes to templates/kilo/ml2_conf.ini

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# kilo
2
 
###############################################################################
3
 
# [ WARNING ]
4
 
# Configuration file maintained by Juju. Local changes may be overwritten.  
5
 
###############################################################################
6
 
[ml2]
7
 
type_drivers = {{ overlay_network_type }}
8
 
tenant_network_types = gre,vxlan,vlan,flat
9
 
mechanism_drivers = opendaylight 
10
 
 
11
 
[ml2_type_gre]
12
 
tunnel_id_ranges = 1:1000
13
 
 
14
 
[ml2_type_vxlan]
15
 
vni_ranges = 1001:2000
16
 
 
17
 
[ml2_odl]
18
 
username = {{ odl_username }}
19
 
password = {{ odl_password }}
20
 
url = http://{{ odl_ip }}:{{ odl_port }}/controller/nb/v2/neutron
21
 
 
22
 
[odl]
23
 
nodes = 
24
 
network_vlan_ranges = {{ vlan_ranges }}
25
 
tunnel_id_ranges = 1:1000
26
 
tun_peer_patch_port = patch-int
27
 
int_peer_patch_port = patch-tun
28
 
tenant_network_type = vlan
29
 
tunnel_bridge = br-tun
30
 
integration_bridge = br-int
31
 
controllers = {{ odl_ip }}:{{ odl_port }}:admin:admin
32
 
 
33
 
[agent]
34
 
tunnel_types = {{ overlay_network_type }}
35
 
{% if veth_mtu -%}
36
 
veth_mtu = {{ veth_mtu }}
37
 
{% endif %}
38
 
 
39
 
[securitygroup]
40
 
firewall_driver = neutron.agent.linux.firewall.NoopFirewallDriver
41
 
enable_security_group = False