Extend clustered-app-config to read default data from XML file
[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 # Show a progress bar on startup and start the console when all bundles are up and running.
17 # (If you are in a hurry you can still type enter to start the shell faster.)
18 karaf.delay.console=true
19
20 # Set security provider to BouncyCastle
21 org.apache.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider
22
23
24 netconf.config.persister.active=1
25
26 netconf.config.persister.1.storageAdapterClass=org.opendaylight.controller.config.persist.storage.file.xml.XmlFileStorageAdapter
27 netconf.config.persister.1.properties.fileStorage=etc/opendaylight/current/controller.currentconfig.xml
28 netconf.config.persister.1.properties.numberOfBackups=1
29
30 # logback configuration
31 logback.configurationFile=configuration/logback.xml
32
33 # Container configuration
34 container.profile = Container
35
36 # Connection manager configuration
37 connection.scheme = ANY_CONTROLLER_ONE_MASTER
38
39 # OVSDB configuration
40 # ovsdb plugin supports both active and passive connections. It listens on port 6640 by default for Active connections.
41 ovsdb.listenPort=6640
42
43 # ovsdb creates Openflow nodes/bridges. This configuration configures the bridge's Openflow version.
44 # default Openflow version = 1.0, we also support 1.3.
45 # ovsdb.of.version=1.3
46
47 # ovsdb can be configured with ml2 to perform l3 forwarding. The config below enables that functionality, which is
48 # disabled by default.
49 # ovsdb.l3.fwd.enabled=yes
50
51 # ovsdb can be configured with ml2 to perform arp responder, enabled by default.
52 ovsdb.l3.arp.responder.disabled=no
53
54 # ovsdb can be configured with ml2 to perform l3 forwarding. When used in that scenario, the mac address of the default
55 # gateway --on the external subnet-- is expected to be resolved from its inet address. The config below overrides that
56 # specific arp/neighDiscovery lookup.
57 # ovsdb.l3gateway.mac=00:00:5E:00:02:01
58
59 # TLS configuration
60 # To enable TLS, set secureChannelEnabled=true and specify the location of controller Java KeyStore and TrustStore files.
61 # The Java KeyStore contains controller's private key and certificate. The Java TrustStore contains the trusted certificate
62 # entries, including switches' Certification Authority (CA) certificates. For example,
63 # secureChannelEnabled=true
64 # controllerKeyStore=./configuration/ctlKeyStore
65 # controllerKeyStorePassword=xxxxxxxx (this password should match the password used for KeyStore generation and at least 6 characters)
66 # controllerTrustStore=./configuration/ctlTrustStore
67 # controllerTrustStorePassword=xxxxxxxx (this password should match the password used for TrustStore generation and at least 6 characters)
68
69 secureChannelEnabled=false
70 controllerKeyStore=
71 controllerKeyStorePassword=
72 controllerTrustStore=
73 controllerTrustStorePassword=
74
75 # User Manager configurations
76 enableStrongPasswordCheck = false
77
78 #Jolokia configurations
79 #org.jolokia.listenForHttpService=false
80
81 # Logging configuration for Tomcat-JUL logging
82 java.util.logging.config.file=configuration/tomcat-logging.properties
83
84 #Hosttracker hostsdb key scheme setting
85 hosttracker.keyscheme=IP
86
87 # LISP Flow Mapping configuration
88 # Map-Register messages overwrite existing RLOC sets in EID-to-RLOC mappings (default: true)
89 lisp.mappingOverwrite = true
90 # Enable the Solicit-Map-Request (SMR) mechanism (default: true)
91 lisp.smr = true
92 # Choose policy for Explicit Locator Path (ELP) handling
93 # There are three options:
94 #   default: don't add or remove locator records, return mapping as-is
95 #   both: keep the ELP, but add the next hop as a standalone non-LCAF locator with a lower priority
96 #   replace: remove the ELP, add the next hop as a standalone non-LCAF locator
97 lisp.elpPolicy = default
98