Created basic network graph objects, and implementation for the southbound API against the Ramcloud datastore

Change-Id: I2172dacb171f27ba2099ee5a52835030d2004689

Created basic objects and southbound API to build the network graph

Change-Id: I061efdf10e5e8549f7192844d10781dc28ee62d4

Added basic northbound get switch method on network graph

Change-Id: I4f2e4d4a4df00979abc927ef0772997dcdebc4e2
12 files changed
tree: c1bc64ac6c5d81b031ceb03968d63f7f0186d3ff
  1. .gitignore
  2. .gitreview
  3. Authors
  4. Documentation/
  5. LICENSE.txt
  6. NOTICE.txt
  7. PARTNERS.txt
  8. README.md
  9. blueprints-README.md
  10. cluster-mgmt/
  11. conf/
  12. curator/
  13. demo-scripts/
  14. lib/
  15. logcabin.patch
  16. onos-embedded.sh
  17. perf-scripts/
  18. pom.xml
  19. prep-for-offline.sh
  20. rebuild-local-repo.sh
  21. repo/
  22. scripts/
  23. setup-eclipse.sh
  24. setup-ramcloud.sh
  25. src/
  26. start-cassandra.sh
  27. start-onos-embedded.sh
  28. start-onos-jacoco.sh
  29. start-onos.sh
  30. start-ramcloud-coordinator.sh
  31. start-ramcloud-server.sh
  32. start-rest.sh
  33. start-zk.sh
  34. test-network/
  35. testbed-ctrl-add-ext.sh
  36. testbed-ctrl-none.sh
  37. titan/
  38. vm-utils/
  39. web/
README.md

ONOS (Open Networking Operating System)

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.

License

Apache 2.0

Steps to download and setup a development Virtual Machine

http://wiki.onlab.us/display/Eng/ONOS+Development+VM

Building ONOS

  1. 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.

External Dependencies

  1. 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.

  2. 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.

Running ONOS with Cassandra as a separate process

[See below for information how to run ONOS with Embedded Cassandra]

  1. Start Zookeeper

     $ cd (ONOS-INSTALL-DIR)/
     $ ./start-zk.sh start
    
     ## Confirm Zookeeper is running:
     $ ./start.zk.sh status
    
  2. Start Cassandra

     $ cd (ONOS-INSTALL-DIR)/
     $ ./start-cassandra.sh start
    
     ## Confirm Cassandra is running:
     $ ./start-cassandra.sh status
    
  3. Start ONOS

     $ cd (ONOS-INSTALL-DIR)/
     $ ./start-onos.sh start
    
     ## Confirm ONOS is running:
     $ ./start-onos.sh status
    
  4. Start ONOS REST API server

     $ cd (ONOS-INSTALL-DIR)/
     $ ./start-rest.sh start
    
     ## Confirm the REST API server is running:
     $ ./start-rest.sh status
    

Running ONOS with Cassandra embedded (Optional)

  1. Start Zookeeper

     $ cd (ONOS-INSTALL-DIR)/
     $ ./start-zk.sh start
    
     ## Confirm Zookeeper is running:
     $ ./start.zk.sh status
    
  2. Start ONOS and Cassandra embedded

     $ cd (ONOS-INSTALL_DIR)/
     $ ./start-onos-embedded.sh start
    
     ## Confirm ONOS is running:
     $ ./start-onos-embedded.sh status
    
  3. Start ONOS REST API server

     $ cd (ONOS-INSTALL-DIR)/
     $ ./start-rest.sh start
    
     ## Confirm the REST API server is running:
     $ ./start-rest.sh status
    

Developping ONOS in offline environment (Optional)

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

Running in offline mode (Optional)

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