Binds OpenFlow and OVSDB IPs
[integration/packaging/puppet-opendaylight.git] / templates / org.opendaylight.ovsdb.library.cfg.erb
1 #********************************************************************************************
2 #                               Boot Time Configuration                                     *
3 #                   Config knob changes will require controller restart                     *
4 #********************************************************************************************
5
6 #Ovsdb plugin's (OVS, HwVtep) support both active and passive connections. OVSDB library by
7 #default listens on port 6640 for switch initiated connection. Please use following config
8 #knob for changing this default port.
9 ovsdb-listener-port = 6640
10 ovsdb-listener-ip = <%= scope.lookupvar('opendaylight::odl_bind_ip') %>
11
12 #This flag will be enforced across all the connection's (passive and active) if set to true
13 <%- if scope.lookupvar('opendaylight::enable_tls') -%>
14 use-ssl = true
15 <%- end -%>
16 #Set Json Rpc decoder max frame length value. If the OVSDB node contains large configurations
17 #that can cause connection related issue while reading the configuration from the OVSDB node
18 #database. Increasing the max frame lenge helps resolve the issue. Please see following bug
19 #report for more details ( https://bugs.opendaylight.org/show_bug.cgi?id=2732 &
20 #https://bugs.opendaylight.org/show_bug.cgi?id=2487). Default value set to 100000.
21 json-rpc-decoder-max-frame-length = 100000
22
23
24 #********************************************************************************************
25 #                               Run Time Configuration                                      *
26 #                   Config knob changes doesn't require controller resart                   *
27 #********************************************************************************************
28 #Timeout value (in millisecond) after which OVSDB rpc task will be cancelled.Default value is
29 #set to 1000ms, please uncomment and override the value if requires.Changing the value don't
30 #require controller restart.
31 ovsdb-rpc-task-timeout = 1000