Change default timeout to 30 sec.
[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 # The switch liveness timeout value (default 60500 msec)
52 # of.switchLivenessTimeout=60500
53 # The flow statistics polling interval in second (default 10 sec)
54 # of.flowStatsPollInterval=10
55 # The port statistics polling interval in second (default 5 sec)
56 # of.portStatsPollInterval=5
57 # The description statistics polling interval in second (default 60 sec)
58 # of.descStatsPollInterval=60
59 # The table statistics polling interval in second (default 10 sec)
60 # of.tableStatsPollInterval=10
61 # The maximum number of asynchronous messages can be sent before sending a Barrier Request (default 100)
62 # of.barrierMessagePriorCount=100
63 # The interval which determines how often the discovery packets should be sent (default 300 sec)
64 # of.discoveryInterval=300
65 # The timeout multiple of discovery interval
66 # of.discoveryTimeoutMultiple=2
67 # For newly added ports, allow one more retry if the elapsed time exceeds this threshold (default 30 sec)
68 # of.discoveryThreshold=30
69 # The maximum number of ports handled in one discovery batch (default 1024)
70 # of.discoveryBatchMaxPorts=1024
71
72 # TLS configuration
73 # To enable TLS, set secureChannelEnabled=true and specify the location of controller Java KeyStore and TrustStore files.
74 # The Java KeyStore contains controller's private key and certificate. The Java TrustStore contains the trusted certificate
75 # entries, including switches' Certification Authority (CA) certificates. For example,
76 # secureChannelEnabled=true
77 # controllerKeyStore=./configuration/ctlKeyStore
78 # controllerKeyStorePassword=xxxxx (this password should match the password used for KeyStore generation)
79 # controllerTrustStore=./configuration/ctlTrustStore
80 # controllerTrustStorePassword=xxxxx (this password should match the password used for TrustStore generation)
81
82 secureChannelEnabled=false
83 controllerKeyStore=
84 controllerKeyStorePassword=
85 controllerTrustStore=
86 controllerTrustStorePassword=