9a0843c13150e3b1f38ab621ef48272c84e6a028
[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 # Open Flow related system parameters
36 # TCP port on which the controller is listening (default 6633)
37 # of.listenPort=6633
38 # IP address of the controller (default: wild card)
39 # of.address = 127.0.0.1
40 # The time (in milliseconds) the controller will wait for a response after sending a Barrier Request or a Statistic Request message (default 2000 msec)
41 # of.messageResponseTimer=2000
42 # The switch liveness timeout value (default 60500 msec)
43 # of.switchLivenessTimeout=60500
44 # The size of the queue holding pending statistics requests (default 64). For large networks of n switches, it is recommended to set the queue size to n
45 # of.statsQueueSize = 64
46 # The flow statistics polling interval in second (default 10 sec)
47 # of.flowStatsPollInterval=10
48 # The port statistics polling interval in second (default 5 sec)
49 # of.portStatsPollInterval=5
50 # The description statistics polling interval in second (default 60 sec)
51 # of.descStatsPollInterval=60
52 # The table statistics polling interval in second (default 10 sec)
53 # of.tableStatsPollInterval=10
54 # The maximum number of asynchronous messages can be sent before sending a Barrier Request (default 100)
55 # of.barrierMessagePriorCount=100
56 # The interval which determines how often the discovery packets should be sent (default 300 sec)
57 # of.discoveryInterval=300
58 # The timeout multiple of discovery interval
59 # of.discoveryTimeoutMultiple=2
60 # For newly added ports, allow one more retry if the elapsed time exceeds this threshold (default 30 sec)
61 # of.discoveryThreshold=30
62 # The maximum number of ports handled in one discovery batch (default 512)
63 # of.discoveryBatchMaxPorts=512
64
65 # OVSDB configuration
66 # ovsdb plugin supports both active and passive connections. It listens on port 6640 by default for Active connections.
67 ovsdb.listenPort=6640
68
69 # ovsdb creates Openflow nodes/bridges. This configuration configures the bridge's Openflow version.
70 # default Openflow version = 1.0, we also support 1.3.
71 # ovsdb.of.version=1.3
72
73 # ovsdb can be configured with ml2 to perform l3 forwarding. The config below enables that functionality, which is
74 # disabled by default.
75 # ovsdb.l3.fwd.enabled=yes
76
77 # ovsdb can be configured with ml2 to perform arp responder, enabled by default.
78 ovsdb.l3.arp.responder.disabled=no
79
80 # ovsdb can be configured with ml2 to perform l3 forwarding. When used in that scenario, the mac address of the default
81 # gateway --on the external subnet-- is expected to be resolved from its inet address. The config below overrides that
82 # specific arp/neighDiscovery lookup.
83 # ovsdb.l3gateway.mac=00:00:5E:00:02:01
84
85 # TLS configuration
86 # To enable TLS, set secureChannelEnabled=true and specify the location of controller Java KeyStore and TrustStore files.
87 # The Java KeyStore contains controller's private key and certificate. The Java TrustStore contains the trusted certificate
88 # entries, including switches' Certification Authority (CA) certificates. For example,
89 # secureChannelEnabled=true
90 # controllerKeyStore=./configuration/ctlKeyStore
91 # controllerKeyStorePassword=xxxxxxxx (this password should match the password used for KeyStore generation and at least 6 characters)
92 # controllerTrustStore=./configuration/ctlTrustStore
93 # controllerTrustStorePassword=xxxxxxxx (this password should match the password used for TrustStore generation and at least 6 characters)
94
95 secureChannelEnabled=false
96 controllerKeyStore=
97 controllerKeyStorePassword=
98 controllerTrustStore=
99 controllerTrustStorePassword=
100
101 # User Manager configurations
102 enableStrongPasswordCheck = false
103
104 #Jolokia configurations
105 #org.jolokia.listenForHttpService=false
106
107 # Logging configuration for Tomcat-JUL logging
108 java.util.logging.config.file=configuration/tomcat-logging.properties
109
110 #Hosttracker hostsdb key scheme setting
111 hosttracker.keyscheme=IP
112
113 # LISP Flow Mapping configuration
114 # Map-Register messages overwrite existing RLOC sets in EID-to-RLOC mappings (default: true)
115 lisp.mappingOverwrite = true
116 # Enable the Solicit-Map-Request (SMR) mechanism (default: true)
117 lisp.smr = true
118 # Choose policy for Explicit Locator Path (ELP) handling
119 # There are three options:
120 #   default: don't add or remove locator records, return mapping as-is
121 #   both: keep the ELP, but add the next hop as a standalone non-LCAF locator with a lower priority
122 #   replace: remove the ELP, add the next hop as a standalone non-LCAF locator
123 lisp.elpPolicy = default
124