blob: 0dadf66aa4a2c2f14daa12f6caf2d5c9964e3124 [file] [log] [blame]
Naoki Shiota9a1e6d12014-04-03 14:47:12 -07001# Name of this host (`hostname` by default)
2host.name = __HOST_NAME__
3
4# IP address of this host used for ONOS communication
5host.ip = __HOST_IP__
6
7# Role of this host
8host.role = __ONOS_ROLE__
9
10# Back-end module to store topology/flows
11host.backend = __BACKEND__
12
13# List of host name/IPs that constitute ZooKeeper cluster
14# myid will be assigned incrementally according to order of list
15zookeeper.hosts = __ZK_HOSTS__
16
17# Protocol used by RAMCloud coordinator (fast+udp by default)
18ramcloud.coordinator.protocol = __RAMCLOUD_PROTOCOL__
19
20# IP address of RAMCloud coordinator (host.ip by default)
21ramcloud.coordinator.ip = __RAMCLOUD_IP__
22
23# Port number of RAMCloud coordinator (12246 by default)
24ramcloud.coordinator.port = __RAMCLOUD_COORD_PORT__
25
26# Protocol used by RAMCloud server (fast+udp by default)
27ramcloud.server.protocol = __RAMCLOUD_PROTOCOL__
28
29# IP address of RAMCloud server (host.ip by default)
30ramcloud.server.ip = __RAMCLOUD_IP__
31
32# Port number of RAMCloud server (12242 by default)
33ramcloud.server.port = __RAMCLOUD_SERVER_PORT__
34
Naoki Shiota9109a1e2014-05-13 11:11:01 -070035# RAMCloud server option replicas (0 by default)
36# This value must be the same cluster wide.
37# On N node cluster, maximum value will be N-1 replicas
38ramcloud.server.replicas = __RAMCLOUD_SERVER_REPLICAS__
39
Naoki Shiota9a1e6d12014-04-03 14:47:12 -070040# List of hostname/ip[:port] which forms Hazelcast datagrid
41# If this value is empty, Hazelcast will be set to multicast mode.
42# Inversely, if this value is set, multicast settings will be ignored.
43hazelcast.tcp-ip.members = __HAZELCAST_MEMBERS__
44
45# Multicast address used by Hazelcast. (224.2.2.3 by default)
46hazelcast.multicast.group = __HAZELCAST_MULTICAST_GROUP__
47
48# Multicast port used by Hazelcast. (54327 by default)
49#hazelcast.multicast.port = __HAZELCAST_MULTICAST_PORT__