Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 1 | ### Cluster-wide settings ### |
| 2 | # List of host names/addresses constitute ONOS cluster |
| 3 | # NOTE: Order of names affects ZooKeeper myid |
| 4 | cluster.hosts.names = onosdev1, onosdev2, onosdev3, onosdev4 |
| 5 | |
| 6 | # Back-end module to store topology/flows |
Pavlin Radoslavov | 3b54c42 | 2014-04-17 15:30:44 -0700 | [diff] [blame] | 7 | cluster.hosts.backend = hazelcast |
| 8 | #cluster.hosts.backend = ramcloud |
Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 9 | |
| 10 | # Protocol used by RAMCloud cluster (fast+udp by default) |
| 11 | #cluster.hosts.ramcloud.protocol = fast+udp |
| 12 | |
| 13 | # Communication method used for Hazelcast communication |
| 14 | #cluster.hosts.hazelcast.network = multicast |
| 15 | cluster.hosts.hazelcast.network = tcp-ip |
| 16 | |
| 17 | # Multicast address used by Hazelcast datagrid (224.2.2.3 by default) |
| 18 | # Valid only if cluster.hosts.hazelcast.network is set to "multicast" |
| 19 | #cluster.hosts.hazelcast.multicast.address = 224.2.2.3 |
| 20 | |
| 21 | # Multicast port used by Hazelcast datagrid (54327 by default) |
| 22 | # Valid only if cluster.hosts.hazelcast.network is set to "multicast" |
| 23 | #cluster.hosts.hazelcast.multicast.port = 54327 |
| 24 | |
| 25 | ### Host-specific settings ### |
| 26 | # IP address of host used for ONOS communication (resolved hostname by default) |
| 27 | #cluster.onosdev1.ip = 192.168.56.11 |
| 28 | |
| 29 | # Role of host |
Naoki Shiota | b76bc65 | 2014-04-28 19:26:13 -0700 | [diff] [blame] | 30 | cluster.onosdev1.role = coord-and-server-node |
Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 31 | |
| 32 | # IP address or hostname of host used for ZooKeeper communication (cluster.onosdev1.ip by default) |
| 33 | #cluster.onosdev1.zk.host = 192.168.56.11 |
| 34 | |
| 35 | # IP address of host used for RAMCloud communication (cluster.onosdev1.ip by default) |
| 36 | #cluster.onosdev1.ramcloud.ip = 192.168.56.11 |
| 37 | |
| 38 | # Port number used by RAMCloud coordinator (12246 by default) |
| 39 | #cluster.onosdev1.ramcloud.coordinator.port = 12246 |
| 40 | |
| 41 | # Port number used by RAMCloud server (12242 by default) |
| 42 | #cluster.onosdev1.ramcloud.server.port = 12242 |
| 43 | |
| 44 | # IP address of host used for Hazelcast communication (cluster.onosdev1.ip by default) |
| 45 | # Valid only if cluster.hosts.hazelcast.network is set to "tcp-ip" |
| 46 | #cluster.onosdev1.hazelcast.ip = 192.168.56.11 |
| 47 | |
| 48 | # At least role must be specified for all hosts |
Naoki Shiota | b76bc65 | 2014-04-28 19:26:13 -0700 | [diff] [blame] | 49 | cluster.onosdev2.role = server-node |
| 50 | cluster.onosdev3.role = server-node |
| 51 | cluster.onosdev4.role = server-node |
Naoki Shiota | 9a1e6d1 | 2014-04-03 14:47:12 -0700 | [diff] [blame] | 52 | |
| 53 | |
| 54 | ### SSH settings used for delivering config files ### |
| 55 | # Common username used to login host (current user by default) |
| 56 | #remote.common.ssh.user = mininet |
| 57 | |
| 58 | # Host-specific username settings |
| 59 | #remote.onosdev1.ssh.user = mininet |
| 60 | #remote.onosdev2.ssh.user = mininet |