Merge "Add TLS support in the Opendaylight Controller: - TLS configuration is specifi...
[controller.git] / opendaylight / distribution / opendaylight / src / main / resources / configuration / config.ini
1 osgi.bundles=\
2         reference\:file\:../lib/org.apache.felix.fileinstall-3.1.6.jar@1:start,\
3         reference\:file\:../lib/org.eclipse.jdt.core.compiler.batch-3.8.0.I20120518-2145.jar@1:start,\
4         reference\:file\:../lib/org.eclipse.equinox.ds-1.4.0.v20120522-1841.jar@2:start,\
5         reference\:file\:../lib/org.eclipse.equinox.util-1.0.400.v20120522-2049.jar@2:start,\
6         reference\:file\:../lib/org.eclipse.osgi.services-3.3.100.v20120522-1822@2:start,\
7         reference\:file\:../lib/org.eclipse.equinox.console-1.0.0.v20120522-1841.jar@start,\
8         reference\:file\:../lib/slf4j-api-1.7.2.jar@1:start,\
9         reference\:file\:../lib/logback-classic-1.0.9.jar@1:start,\
10         reference\:file\:../lib/logback-core-1.0.9.jar@1:start,\
11     reference\:file\:../lib/logging.bridge-0.4.0-SNAPSHOT@1:start,\
12     reference\:file\:../lib/jersey-core-1.17.jar@2:start,\
13     reference\:file\:../lib/jersey-json-1.17.jar@2:start,\
14     reference\:file\:../lib/jersey-server-1.17.jar@2:start
15
16 # Set Default start level for framework
17 osgi.bundles.defaultStartLevel=4
18 # Extra packages to import from the boot class loader
19 org.osgi.framework.system.packages.extra=sun.reflect,sun.reflect.misc,sun.misc
20 # This is not Eclipse App
21 eclipse.ignoreApp=true
22 # Don't shutdown equinox if the eclipse App has ended, 
23 # which is our case because we are not running any eclipse application
24 osgi.noShutdown=true
25 # Clean any cached data on restart of the framework
26 osgi.clean=true
27 # Extend the framework to avoid the resources to be presented with
28 # a URL of type bundleresource: but to be presented as file:
29 osgi.hook.configurators.include=org.eclipse.virgo.kernel.equinox.extensions.hooks.ExtensionsHookConfigurator
30 # Directory from where the fileinstall will monitor for new bundles
31 felix.fileinstall.dir=./plugins
32 # Immediately learn new bundles at startup
33 felix.fileinstall.noInitialDelay=true
34 # Auto start the bundles at level 4
35 felix.fileinstall.start.level=4
36 # Avoid to auto-install following bundles, that means those need 
37 # to be started manually or in other way like osgi.bundles
38 felix.fileinstall.filter=^(?!org.apache.felix.fileinstall).*
39
40 # logback configuration
41 logback.configurationFile=configuration/logback.xml
42
43 # Embedded Tomcat configuration File
44 org.eclipse.gemini.web.tomcat.config.path=configuration/tomcat-server.xml
45
46 # Open Flow related system parameters
47 # TCP port on which the controller is listening (default 6633)
48 # of.listenPort=6633
49 # The time (in milliseconds) the controller will wait for a response after sending a Barrier Request or a Statistic Request message (default 2000 msec)
50 # of.messageResponseTimer=2000
51
52 # TLS configuration
53 # To enable TLS, set secureChannelEnabled=true and specify the location of controller Java KeyStore and TrustStore files.
54 # The Java KeyStore contains controller's private key and certificate. The Java TrustStore contains the trusted certificate 
55 # entries, including switches' Certification Authority (CA) certificates. For example,
56 # secureChannelEnabled=true
57 # controllerKeyStore=./configuration/ctlKeyStore
58 # controllerKeyStorePassword=xxxxx (this password should match the password used for KeyStore generation)
59 # controllerTrustStore=./configuration/ctlTrustStore
60 # controllerTrustStorePassword=xxxxx (this password should match the password used for TrustStore generation)
61
62 secureChannelEnabled=false
63 controllerKeyStore=
64 controllerKeyStorePassword=
65 controllerTrustStore=
66 controllerTrustStorePassword=