blob: 499283b04afda1348d7c3d23529bca55dedbaece [file] [log] [blame]
Naoki Shiota9df15d32014-03-27 14:26:20 -07001# Name of this host (`hostname` by default)
Naoki Shiota4e928512014-04-03 15:49:35 -07002#host.name = onosdev1
Naoki Shiota9df15d32014-03-27 14:26:20 -07003
4# IP address of this host used for ONOS communication
5host.ip = 127.0.0.1
6
7# Role of this host
8# single-node: run ONOS with RAMCloud coordinator and server
9# coord-node : run ONOS with RAMCloud coordinator
10# server-node: run ONOS with RAMCloud server
11host.role = single-node
12
13# Back-end module to store topology/flows
14host.backend = hazelcast
15#host.backend = ramcloud
16
Naoki Shiota4e928512014-04-03 15:49:35 -070017# List of host name/IPs that constitute ZooKeeper cluster (only current host by default)
Naoki Shiota9df15d32014-03-27 14:26:20 -070018# myid will be assigned incrementally according to order of list
Naoki Shiota9df15d32014-03-27 14:26:20 -070019#zookeeper.hosts = onosdev1,onosdev2,onosdev3,onosdev4
20
21# Protocol used by RAMCloud coordinator (fast+udp by default)
22#ramcloud.coordinator.protocol = fast+udp
23
24# IP address of RAMCloud coordinator (host.ip by default)
25#ramcloud.coordinator.ip = 127.0.0.1
26
27# Port number of RAMCloud coordinator (12246 by default)
28#ramcloud.coordinator.port = 12246
29
30# Protocol used by RAMCloud server (fast+udp by default)
31#ramcloud.server.protocol = fast+udp
32
33# IP address of RAMCloud server (host.ip by default)
34#ramcloud.server.ip = 127.0.0.1
35
36# Port number of RAMCloud server (12242 by default)
37#ramcloud.server.port = 12242
Naoki Shiota4e928512014-04-03 15:49:35 -070038
39# List of hostname/ip[:port] which forms Hazelcast grid
40# If this value is empty, Hazelcast will be set to muticast mode.
41# Inversely, if this value is set, multicast settings will be ignored.
42#hazelcast.tcp-ip.members = 192.168.56.11, 192.168.56.12, 192.168.56.13, 192.168.56.14
43
44# Multicast address used by Hazelcast. (224.2.2.3 by default)
45#hazelcast.multicast.group = 224.2.2.3
46
47# Multicast port used by Hazelcast. (54327 by default)
48#hazelcast.multicast.port = 54327
49