Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 1 | # Name of this host (`hostname` by default) |
| 2 | host.name = __HOST_NAME__ |
| 3 | |
| 4 | # IP address of this host used for ONOS communication |
| 5 | host.ip = __HOST_IP__ |
| 6 | |
| 7 | # Role of this host |
| 8 | host.role = __ONOS_ROLE__ |
| 9 | |
| 10 | # Back-end module to store topology/flows |
| 11 | host.backend = __BACKEND__ |
| 12 | |
| 13 | # List of host name/IPs that constitute ZooKeeper cluster |
| 14 | # myid will be assigned incrementally according to order of list |
| 15 | zookeeper.hosts = __ZK_HOSTS__ |
| 16 | |
| 17 | # Protocol used by RAMCloud coordinator (fast+udp by default) |
| 18 | ramcloud.coordinator.protocol = __RAMCLOUD_PROTOCOL__ |
| 19 | |
| 20 | # IP address of RAMCloud coordinator (host.ip by default) |
Naoki Shiota | 611f3dd | 2014-05-30 11:38:37 -0700 | [diff] [blame] | 21 | ramcloud.coordinator.ip = __RAMCLOUD_COORD_IP__ |
Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 22 | |
| 23 | # Port number of RAMCloud coordinator (12246 by default) |
| 24 | ramcloud.coordinator.port = __RAMCLOUD_COORD_PORT__ |
| 25 | |
| 26 | # Protocol used by RAMCloud server (fast+udp by default) |
| 27 | ramcloud.server.protocol = __RAMCLOUD_PROTOCOL__ |
| 28 | |
| 29 | # IP address of RAMCloud server (host.ip by default) |
Naoki Shiota | 611f3dd | 2014-05-30 11:38:37 -0700 | [diff] [blame] | 30 | ramcloud.server.ip = __RAMCLOUD_SERVER_IP__ |
Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 31 | |
| 32 | # Port number of RAMCloud server (12242 by default) |
| 33 | ramcloud.server.port = __RAMCLOUD_SERVER_PORT__ |
| 34 | |
Naoki Shiota | 9109a1e | 2014-05-13 11:11:01 -0700 | [diff] [blame] | 35 | # 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 |
| 38 | ramcloud.server.replicas = __RAMCLOUD_SERVER_REPLICAS__ |
| 39 | |
Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 40 | # 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. |
| 43 | hazelcast.tcp-ip.members = __HAZELCAST_MEMBERS__ |
| 44 | |
| 45 | # Multicast address used by Hazelcast. (224.2.2.3 by default) |
| 46 | hazelcast.multicast.group = __HAZELCAST_MULTICAST_GROUP__ |
| 47 | |
| 48 | # Multicast port used by Hazelcast. (54327 by default) |
| 49 | #hazelcast.multicast.port = __HAZELCAST_MULTICAST_PORT__ |