commit | ebc8b1927fbd7cc23489716ec2bb7c1f31ced055 | [log] [tgz] |
---|---|---|
author | Pavlin Radoslavov <pavlin@onlab.us> | Tue Oct 29 15:35:35 2013 -0700 |
committer | Pavlin Radoslavov <pavlin@onlab.us> | Tue Oct 29 15:35:35 2013 -0700 |
tree | 728bc2fc49f434da1649186b1ccc6c3b02127e6e | |
parent | 3ecd41ebe8601d440410318e44fda36de195edde [diff] |
* Minor refactoring in the original FlowManager logic when setting the Flow Entry Switch State (for new Flow Entries): - The appropriate state is not hardcoded anymore inside class FlowDatabaseOperation. Instead, it is explicitly set by the caller method. * Add new method FlowManager::pushModifiedFlowEntries() that is used by the PathComputation to push the modified flow entries to the switches controlled by this instance. Eventually, this method will be one that needs to be modified/refactored/adjusted to use the forthcoming FlowSynchronizer module. For now, the method is disabled, so it doesn't conflict with the existing FlowManager mechanism.
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.
http://wiki.onlab.us/display/Eng/ONOS+Development+VM
Install custom jars and dependencies (needs to be run only once)
$ ./setup-local-maven.sh
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
$ ./start.zk.sh status
Start Cassandra
$ cd (ONOS-INSTALL-DIR)/ $ ./start-cassandra.sh start
$ ./start-cassandra.sh status
Start ONOS
$ cd (ONOS-INSTALL-DIR)/ $ ./start-onos.sh start
$ ./start-onos.sh status
Start ONOS REST API server
$ cd (ONOS-INSTALL-DIR)/ $ ./start-rest.sh start
$ ./start-rest.sh status
Start Zookeeper
$ cd (ONOS-INSTALL-DIR)/ $ ./start-zk.sh start
$ ./start.zk.sh status
Start ONOS and Cassandra embedded
$ cd (ONOS-INSTALL_DIR)/ $ ./start-onos-embedded.sh start
$ ./start-onos-embedded.sh status
Start ONOS REST API server
$ cd (ONOS-INSTALL-DIR)/ $ ./start-rest.sh start
$ ./start-rest.sh status
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