blob: acc74a0b67eecbe372bbba3b8c0fde3d294a063c [file] [log] [blame]
Naoki Shiota9df15d32014-03-27 14:26:20 -07001# Name of this host (`hostname` by default)
2host.name = onosdev1
3
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
17# List of host name/IPs that constitute ZooKeeper cluster
18# myid will be assigned incrementally according to order of list
19zookeeper.hosts = onosdev1
20#zookeeper.hosts = onosdev1,onosdev2,onosdev3,onosdev4
21
22# Protocol used by RAMCloud coordinator (fast+udp by default)
23#ramcloud.coordinator.protocol = fast+udp
24
25# IP address of RAMCloud coordinator (host.ip by default)
26#ramcloud.coordinator.ip = 127.0.0.1
27
28# Port number of RAMCloud coordinator (12246 by default)
29#ramcloud.coordinator.port = 12246
30
31# Protocol used by RAMCloud server (fast+udp by default)
32#ramcloud.server.protocol = fast+udp
33
34# IP address of RAMCloud server (host.ip by default)
35#ramcloud.server.ip = 127.0.0.1
36
37# Port number of RAMCloud server (12242 by default)
38#ramcloud.server.port = 12242