commit | 8252fee91a86f6c1e568bdc2cfee5bb8724e1d51 | [log] [tgz] |
---|---|---|
author | Pavlin Radoslavov <pavlin@onlab.us> | Tue Jan 07 17:24:29 2014 -0800 |
committer | Pavlin Radoslavov <pavlin@onlab.us> | Tue Jan 07 17:24:29 2014 -0800 |
tree | 00ee18e6bbe5215b44eb10577cb2f39068be4d5b | |
parent | ba096e38749d0cb532ae5c25a178fd3124067466 [diff] |
* Added new method FlowDatabaseOperation.getFlowSourceDpid() that can be used to get the Source Switch DPID * Added a boolean flag to FlowEventHandler and FlowManager to enable/disable the new Flow setup mechanism: enableOnrc2014MeasurementsFlows * Create locally the FlowEventHandler.dbHandler instead of reusing the dbHandler from the FlowManager. Reusing the dbHandler from the FlowManager might not be thread-safe (??) * Renamed flag FlowEventHandler.accessDBFlag to enableOnrc2014MeasurementsTopology (for consistency with the Flow setup-related flag) * Changed the logic when reading the complete topology from the database: if there is a topology-related event, we unconditionally assume the topology has been modified. Long-term this might be sub-optimal, but gives us the bare-bones behavior we want to measure. * Reverse the change to Topology.readFromDatabase() to exclude the compareTopology() call (see above bullet). * Fix a bug when cheching whether there is any event to process.
ONOS (Open Networking Operating System) is an experimental distributed SDN OS. Currently, it is under active development. ONOS was announced and demonstrated at ONS'13.
Apache 2.0
http://wiki.onlab.us/display/Eng/ONOS+Development+VM
Cleanly build ONOS
$ mvn clean $ mvn compile
NOTE: installing maven for the first time may switch java version from 1.7 to 1.6. This might prevent Cassandra to run.
Zookeeper
Download and install apache-zookeeper-3.4.5: http://zookeeper.apache.org/releases.html
Edit file (ONOS-INSTALL-DIR)/start-zk.sh
and set variable "ZK_DIR" to point to the Zookeeper directory.
Cassandra
Download and install apache-cassandra-1.2.4: http://cassandra.apache.org/download/
Edit file (ONOS-INSTALL-DIR)/start-cassandra.sh
and set variable "CASSANDRA_DIR" to point to the Cassandra directory.
[See below for information how to run ONOS with Embedded Cassandra]
Start Zookeeper
$ cd (ONOS-INSTALL-DIR)/ $ ./start-zk.sh start ## Confirm Zookeeper is running: $ ./start.zk.sh status
Start Cassandra
$ cd (ONOS-INSTALL-DIR)/ $ ./start-cassandra.sh start ## Confirm Cassandra is running: $ ./start-cassandra.sh status
Start ONOS
$ cd (ONOS-INSTALL-DIR)/ $ ./start-onos.sh start ## Confirm ONOS is running: $ ./start-onos.sh status
Start ONOS REST API server
$ cd (ONOS-INSTALL-DIR)/ $ ./start-rest.sh start ## Confirm the REST API server is running: $ ./start-rest.sh status
Start Zookeeper
$ cd (ONOS-INSTALL-DIR)/ $ ./start-zk.sh start ## Confirm Zookeeper is running: $ ./start.zk.sh status
Start ONOS and Cassandra embedded
$ cd (ONOS-INSTALL_DIR)/ $ ./start-onos-embedded.sh start ## Confirm ONOS is running: $ ./start-onos-embedded.sh status
Start ONOS REST API server
$ cd (ONOS-INSTALL-DIR)/ $ ./start-rest.sh start ## Confirm the REST API server is running: $ ./start-rest.sh status
Maven need the Internet connection to download required dependencies and plugins, when they're used for the first time.
If you need to develop ONOS in an Internet unreachable environment you may want to run the following helper script before you go offline, so that required dependencies and plugins for frequently used maven target will be downloaded to your local environment.
$ ./prep-for-offline.sh
Maven is used to build and run ONOS. By default, maven tries to reach the repositories. The '-o' option can be given to the 'mvn' command to suppress this behavior. The MVN
environmental variable can be used to set additional options to the 'mvn' command used in ONOS.
Example: Running in offline mode
$ env MVN="mvn -o" ./start-onos.sh start