Naoki Shiota | 9df15d3 | 2014-03-27 14:26:20 -0700 | [diff] [blame] | 1 | # Name of this host (`hostname` by default) |
Naoki Shiota | 4e92851 | 2014-04-03 15:49:35 -0700 | [diff] [blame] | 2 | #host.name = onosdev1 |
Naoki Shiota | 9df15d3 | 2014-03-27 14:26:20 -0700 | [diff] [blame] | 3 | |
| 4 | # IP address of this host used for ONOS communication |
| 5 | host.ip = 127.0.0.1 |
| 6 | |
| 7 | # Role of this host |
Naoki Shiota | be433a1 | 2014-04-07 12:03:49 -0700 | [diff] [blame] | 8 | # single-node: run ONOS with stand-alone RAMCloud |
Naoki Shiota | 9df15d3 | 2014-03-27 14:26:20 -0700 | [diff] [blame] | 9 | # coord-node : run ONOS with RAMCloud coordinator |
| 10 | # server-node: run ONOS with RAMCloud server |
Naoki Shiota | be433a1 | 2014-04-07 12:03:49 -0700 | [diff] [blame] | 11 | # coord-and-server-node: run ONOS with RAMCloud coordinator and server |
Naoki Shiota | 9df15d3 | 2014-03-27 14:26:20 -0700 | [diff] [blame] | 12 | host.role = single-node |
| 13 | |
| 14 | # Back-end module to store topology/flows |
| 15 | host.backend = hazelcast |
| 16 | #host.backend = ramcloud |
| 17 | |
Naoki Shiota | 4e92851 | 2014-04-03 15:49:35 -0700 | [diff] [blame] | 18 | # List of host name/IPs that constitute ZooKeeper cluster (only current host by default) |
Naoki Shiota | 9df15d3 | 2014-03-27 14:26:20 -0700 | [diff] [blame] | 19 | # myid will be assigned incrementally according to order of list |
Naoki Shiota | 9df15d3 | 2014-03-27 14:26:20 -0700 | [diff] [blame] | 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 |
Naoki Shiota | 4e92851 | 2014-04-03 15:49:35 -0700 | [diff] [blame] | 39 | |
Yuta HIGUCHI | 45bc3cf | 2014-04-19 18:12:15 -0700 | [diff] [blame] | 40 | # RAMCloud server option masterServiceThreads (5 by default) |
| 41 | #ramcloud.masterServiceThreads = 5 |
| 42 | |
| 43 | # RAMCloud server option logCleanerThreads (1 by default) |
| 44 | #ramcloud.logCleanerThreads = 1 |
| 45 | |
| 46 | # RAMCloud server option detectFailures [0=disabled] (0 by default for ONOS development) |
| 47 | #ramcloud.detectFailures = 0 |
| 48 | |
Naoki Shiota | b7eb55d | 2014-04-21 18:21:36 -0700 | [diff] [blame] | 49 | # Port number of Hazelcast (5701 by default) |
| 50 | #hazelcast.host.port = 5701 |
| 51 | |
Naoki Shiota | 4e92851 | 2014-04-03 15:49:35 -0700 | [diff] [blame] | 52 | # List of hostname/ip[:port] which forms Hazelcast grid |
Naoki Shiota | be433a1 | 2014-04-07 12:03:49 -0700 | [diff] [blame] | 53 | # If this value is empty, Hazelcast will be set to multicast mode. |
Naoki Shiota | 4e92851 | 2014-04-03 15:49:35 -0700 | [diff] [blame] | 54 | # Inversely, if this value is set, multicast settings will be ignored. |
Yuta HIGUCHI | 13d1dbf | 2014-04-17 20:51:38 -0700 | [diff] [blame] | 55 | hazelcast.tcp-ip.members = 127.0.0.1:5701 |
Naoki Shiota | 4e92851 | 2014-04-03 15:49:35 -0700 | [diff] [blame] | 56 | #hazelcast.tcp-ip.members = 192.168.56.11, 192.168.56.12, 192.168.56.13, 192.168.56.14 |
| 57 | |
| 58 | # Multicast address used by Hazelcast. (224.2.2.3 by default) |
| 59 | #hazelcast.multicast.group = 224.2.2.3 |
| 60 | |
| 61 | # Multicast port used by Hazelcast. (54327 by default) |
| 62 | #hazelcast.multicast.port = 54327 |
| 63 | |