BUG-5932: Remove unused OpenFlow configuration parameters
[controller.git] / karaf / opendaylight-karaf-resources / src / main / resources / etc / custom.properties
1 # Extra packages to import from the boot class loader
2 org.osgi.framework.system.packages.extra=org.apache.karaf.branding,sun.reflect,sun.reflect.misc,sun.misc,sun.nio.ch
3
4 # https://bugs.eclipse.org/bugs/show_bug.cgi?id=325578
5 # Extend the framework to avoid the resources to be presented with
6 # a URL of type bundleresource: but to be presented as file:
7 osgi.hook.configurators.include=org.eclipse.virgo.kernel.equinox.extensions.hooks.ExtensionsHookConfigurator
8
9 # Embedded Tomcat configuration File
10 org.eclipse.gemini.web.tomcat.config.path=configuration/tomcat-server.xml
11 org.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true
12
13 # Use Equinox as default OSGi Framework Implementation
14 karaf.framework=equinox
15
16 # Set security provider to BouncyCastle
17 org.apache.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider
18
19
20 netconf.config.persister.active=1
21
22 netconf.config.persister.1.storageAdapterClass=org.opendaylight.controller.config.persist.storage.file.xml.XmlFileStorageAdapter
23 netconf.config.persister.1.properties.fileStorage=etc/opendaylight/current/controller.currentconfig.xml
24 netconf.config.persister.1.properties.numberOfBackups=1
25
26 # logback configuration
27 logback.configurationFile=configuration/logback.xml
28
29 # Container configuration
30 container.profile = Container
31
32 # Connection manager configuration
33 connection.scheme = ANY_CONTROLLER_ONE_MASTER
34
35 # OVSDB configuration
36 # ovsdb plugin supports both active and passive connections. It listens on port 6640 by default for Active connections.
37 ovsdb.listenPort=6640
38
39 # ovsdb creates Openflow nodes/bridges. This configuration configures the bridge's Openflow version.
40 # default Openflow version = 1.0, we also support 1.3.
41 # ovsdb.of.version=1.3
42
43 # ovsdb can be configured with ml2 to perform l3 forwarding. The config below enables that functionality, which is
44 # disabled by default.
45 # ovsdb.l3.fwd.enabled=yes
46
47 # ovsdb can be configured with ml2 to perform arp responder, enabled by default.
48 ovsdb.l3.arp.responder.disabled=no
49
50 # ovsdb can be configured with ml2 to perform l3 forwarding. When used in that scenario, the mac address of the default
51 # gateway --on the external subnet-- is expected to be resolved from its inet address. The config below overrides that
52 # specific arp/neighDiscovery lookup.
53 # ovsdb.l3gateway.mac=00:00:5E:00:02:01
54
55 # TLS configuration
56 # To enable TLS, set secureChannelEnabled=true and specify the location of controller Java KeyStore and TrustStore files.
57 # The Java KeyStore contains controller's private key and certificate. The Java TrustStore contains the trusted certificate
58 # entries, including switches' Certification Authority (CA) certificates. For example,
59 # secureChannelEnabled=true
60 # controllerKeyStore=./configuration/ctlKeyStore
61 # controllerKeyStorePassword=xxxxxxxx (this password should match the password used for KeyStore generation and at least 6 characters)
62 # controllerTrustStore=./configuration/ctlTrustStore
63 # controllerTrustStorePassword=xxxxxxxx (this password should match the password used for TrustStore generation and at least 6 characters)
64
65 secureChannelEnabled=false
66 controllerKeyStore=
67 controllerKeyStorePassword=
68 controllerTrustStore=
69 controllerTrustStorePassword=
70
71 # User Manager configurations
72 enableStrongPasswordCheck = false
73
74 #Jolokia configurations
75 #org.jolokia.listenForHttpService=false
76
77 # Logging configuration for Tomcat-JUL logging
78 java.util.logging.config.file=configuration/tomcat-logging.properties
79
80 #Hosttracker hostsdb key scheme setting
81 hosttracker.keyscheme=IP
82
83 # LISP Flow Mapping configuration
84 # Map-Register messages overwrite existing RLOC sets in EID-to-RLOC mappings (default: true)
85 lisp.mappingOverwrite = true
86 # Enable the Solicit-Map-Request (SMR) mechanism (default: true)
87 lisp.smr = true
88 # Choose policy for Explicit Locator Path (ELP) handling
89 # There are three options:
90 #   default: don't add or remove locator records, return mapping as-is
91 #   both: keep the ELP, but add the next hop as a standalone non-LCAF locator with a lower priority
92 #   replace: remove the ELP, add the next hop as a standalone non-LCAF locator
93 lisp.elpPolicy = default
94