blob: b6e069d1c78505cfe827e928bbfbc5fa65b81e26 [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
35# List of hostname/ip[:port] which forms Hazelcast datagrid
36# If this value is empty, Hazelcast will be set to multicast mode.
37# Inversely, if this value is set, multicast settings will be ignored.
38hazelcast.tcp-ip.members = __HAZELCAST_MEMBERS__
39
40# Multicast address used by Hazelcast. (224.2.2.3 by default)
41hazelcast.multicast.group = __HAZELCAST_MULTICAST_GROUP__
42
43# Multicast port used by Hazelcast. (54327 by default)
44#hazelcast.multicast.port = __HAZELCAST_MULTICAST_PORT__