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