OVSDB L3 support: Allow for override of default gateway mac address
[controller.git] / opendaylight / distribution / 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 # Override the config.properties to remove
5 # ${services-${karaf.framework}}
6 # This is to work around:
7 # https://issues.apache.org/jira/browse/KARAF-3092
8 # Which should be fixed in karaf 3.0.2
9 # Which is not as of today (2014-08-24) released.
10 # Since it is biting folks, we need to fix it here
11 # Please remove this when we shift to karaf 3.0.2
12 org.osgi.framework.system.capabilities= \
13  ${eecap-${java.specification.version}}, \
14  service-reference;effective:=active;objectClass=org.osgi.service.packageadmin.PackageAdmin, \
15  service-reference;effective:=active;objectClass=org.osgi.service.startlevel.StartLevel, \
16  service-reference;effective:=active;objectClass=org.osgi.service.url.URLHandlers
17
18 # https://bugs.eclipse.org/bugs/show_bug.cgi?id=325578
19 # Extend the framework to avoid the resources to be presented with
20 # a URL of type bundleresource: but to be presented as file:
21 osgi.hook.configurators.include=org.eclipse.virgo.kernel.equinox.extensions.hooks.ExtensionsHookConfigurator
22
23 # Embedded Tomcat configuration File
24 org.eclipse.gemini.web.tomcat.config.path=configuration/tomcat-server.xml
25 org.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true
26
27 # Use Equinox as default OSGi Framework Implementation
28 karaf.framework=equinox
29
30 # Netconf startup configuration
31 netconf.tcp.address=127.0.0.1
32 netconf.tcp.port=8383
33
34 netconf.tcp.client.address=127.0.0.1
35 netconf.tcp.client.port=8383
36
37 netconf.ssh.address=0.0.0.0
38 netconf.ssh.port=1830
39 netconf.ssh.pk.path = ./configuration/RSA.pk
40
41
42 netconf.config.persister.active=1
43
44 netconf.config.persister.1.storageAdapterClass=org.opendaylight.controller.config.persist.storage.file.xml.XmlFileStorageAdapter
45 netconf.config.persister.1.properties.fileStorage=etc/opendaylight/current/controller.currentconfig.xml
46 netconf.config.persister.1.properties.numberOfBackups=1
47
48 # logback configuration
49 logback.configurationFile=configuration/logback.xml
50
51 # Container configuration
52 container.profile = Container
53
54 # Connection manager configuration
55 connection.scheme = ANY_CONTROLLER_ONE_MASTER
56
57 # Open Flow related system parameters
58 # TCP port on which the controller is listening (default 6633)
59 # of.listenPort=6633
60 # IP address of the controller (default: wild card)
61 # of.address = 127.0.0.1
62 # The time (in milliseconds) the controller will wait for a response after sending a Barrier Request or a Statistic Request message (default 2000 msec)
63 # of.messageResponseTimer=2000
64 # The switch liveness timeout value (default 60500 msec)
65 # of.switchLivenessTimeout=60500
66 # 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
67 # of.statsQueueSize = 64
68 # The flow statistics polling interval in second (default 10 sec)
69 # of.flowStatsPollInterval=10
70 # The port statistics polling interval in second (default 5 sec)
71 # of.portStatsPollInterval=5
72 # The description statistics polling interval in second (default 60 sec)
73 # of.descStatsPollInterval=60
74 # The table statistics polling interval in second (default 10 sec)
75 # of.tableStatsPollInterval=10
76 # The maximum number of asynchronous messages can be sent before sending a Barrier Request (default 100)
77 # of.barrierMessagePriorCount=100
78 # The interval which determines how often the discovery packets should be sent (default 300 sec)
79 # of.discoveryInterval=300
80 # The timeout multiple of discovery interval
81 # of.discoveryTimeoutMultiple=2
82 # For newly added ports, allow one more retry if the elapsed time exceeds this threshold (default 30 sec)
83 # of.discoveryThreshold=30
84 # The maximum number of ports handled in one discovery batch (default 512)
85 # of.discoveryBatchMaxPorts=512
86
87 # OVSDB configuration
88 # ovsdb plugin supports both active and passive connections. It listens on port 6640 by default for Active connections.
89 ovsdb.listenPort=6640
90
91 # ovsdb creates Openflow nodes/bridges. This configuration configures the bridge's Openflow version.
92 # default Openflow version = 1.0, we also support 1.3.
93 # ovsdb.of.version=1.3
94
95 # ovsdb can be configured with ml2 to perform l3 forwarding. When used in that scenario, the mac address of the default
96 # gateway --on the external subnet-- is expected to be resolved from its inet address. The config below overrides that
97 # specific arp/neighDiscovery lookup.
98 # ovsdb.l3gateway.mac=00:00:5E:00:02:01
99
100 # TLS configuration
101 # To enable TLS, set secureChannelEnabled=true and specify the location of controller Java KeyStore and TrustStore files.
102 # The Java KeyStore contains controller's private key and certificate. The Java TrustStore contains the trusted certificate
103 # entries, including switches' Certification Authority (CA) certificates. For example,
104 # secureChannelEnabled=true
105 # controllerKeyStore=./configuration/ctlKeyStore
106 # controllerKeyStorePassword=xxxxxxxx (this password should match the password used for KeyStore generation and at least 6 characters)
107 # controllerTrustStore=./configuration/ctlTrustStore
108 # controllerTrustStorePassword=xxxxxxxx (this password should match the password used for TrustStore generation and at least 6 characters)
109
110 secureChannelEnabled=false
111 controllerKeyStore=
112 controllerKeyStorePassword=
113 controllerTrustStore=
114 controllerTrustStorePassword=
115
116 # User Manager configurations
117 enableStrongPasswordCheck = false
118
119 #Jolokia configurations
120 org.jolokia.listenForHttpService=false
121
122 # Logging configuration for Tomcat-JUL logging
123 java.util.logging.config.file=configuration/tomcat-logging.properties
124
125 #Hosttracker hostsdb key scheme setting
126 hosttracker.keyscheme=IP
127