commit | 937c77682a3c2a6866ede6893fc774243ca193f1 | [log] [tgz] |
---|---|---|
author | Seyeon Jeong <seyeon@opennetworking.org> | Fri Feb 28 01:17:34 2020 -0800 |
committer | Seyeon Jeong <seyeon@opennetworking.org> | Wed Jun 17 23:18:47 2020 -0700 |
tree | 0a96601c233399300d878cb789e5c4a6ab6b1786 | |
parent | be3fa0df6b06abc8a978dc8bdc84446098639937 [diff] |
[AETHER-76] Complete T3 offline mode - For the performance improvement, T3 offline mode uses snapshots of the network states called Network Information Base (NIB) instead of runtime interactions with ONOS core during troubleshooting a Trellis system. - Enables NIB to be manually filled with the followings via T3-load commands. - Static dump files of onos-diagnostics (t3-load-file). - Returns of API calls to live ONOS stores (t3-load-snapshot). - Enables NIB to be auto-filled with live ONOS stores. - When T3-execution commands (e.g. pingall) found NIB is invalid. - Partially tested with some mininet topos for Trellis (https://github.com/opennetworkinglab/routing/tree/master/trellis). - Usage instruction docs (https://docs.trellisfabric.org/troubleshooting.html). Change-Id: I2bb546bdde454a034338cd896388fa0b37d868be (cherry picked from commit c3803e7fad5fb28ecf3e83253f183a34936be4a0)
ONOS is the only SDN controller platform that supports the transition from legacy “brown field” networks to SDN “green field” networks. This enables exciting new capabilities, and disruptive deployment and operational cost points for network operators.
The following packages are required:
ONOS is built with Bazel, an open-source build tool developed by Google. We suggest downloading and installing Bazel using the official instructions.
The minimum required Bazel version is 1.0.0
$ git clone https://gerrit.onosproject.org/onos
$ cd onos $ cat << EOF >> ~/.bash_profile export ONOS_ROOT="`pwd`" source $ONOS_ROOT/tools/dev/bash_profile EOF $ . ~/.bash_profile
$ cd $ONOS_ROOT
$ bazel build onos
To run ONOS locally on the development machine, simply run the following command:
$ bazel run onos-local [-- [clean] [debug]]
Or simpler one, if you have added the ONOS developer environment to your bash profile:
$ ok [clean] [debug]
The above command will create a local installation from the ONOS tarbal (re-building if necessary) and will start the ONOS server in the background. In the foreground, it will display a continuous view of the ONOS (Apache Karaf) log file. Options following the double-dash (–) are passed through to the ONOS Apache Karaf and can be omitted. Here, the clean
option forces a clean installation, removing any state from previous executions. The debug
option means that the default debug port 5005 will be available for attaching a remote debugger.
To access ONOS UI, use a browser to open:
Or simpler, use the onos-gui localhost
command.
The default username and password is onos
/rocks
.
To attach to the ONOS CLI console, run:
$ onos localhost
To run ONOS unit tests, including code Checkstyle validation, run the following command:
$ bazel query 'tests(//...)' | xargs bazel test
Or better yet, to run code Checkstyle and all unit tests use the following convenience alias:
$ ot
ONOS code is hosted and maintained using Gerrit.
Code on GitHub is only a mirror. The ONOS project does NOT accept code through pull requests on GitHub.
To contribute to ONOS, please refer to Sample Gerrit Workflow. It should includes most of the things you'll need to get your contribution started!
For more information, please check out our wiki page or mailing lists:
ONOS (Open Network Operating System) is published under Apache License 2.0