commit | 3977ea4d9e146fa50595ec657137fac7f3a422a0 | [log] [tgz] |
---|---|---|
author | Carmelo Cascone <carmelo@opennetworking.org> | Thu Feb 28 13:43:42 2019 -0800 |
committer | Carmelo Cascone <carmelo@opennetworking.org> | Wed Mar 06 19:28:42 2019 +0000 |
tree | f4ded8e8f825631bdb290ea6e34a5997f2dacd8a | |
parent | e8a89b89c3f3bfecd20d22a8f8fcec2e8eff1b88 [diff] |
Refactor channel and mastership handling in P4Runtime This (big) change aims at solving the issue observed with mastership flapping and device connection/disconnection with P4Runtime. Channel handling is now based on the underlying gRPC channel state. Before, channel events (open/close/error) were generated as a consequence of P4Runtime StreamChannel events, making device availability dependent on mastership. Now Stream Channel events only affect mastership (MASTER/STANDBY or NONE when the SteamChannel RPC is not active). Mastership handling has been refactored to generate P4Runtime election IDs that are compatible with the mastership preference decided by the MastershipService. GeneralDeviceProvider has been re-implemented to support in-order device event processing and to reduce implementation complexity. Stats polling has been moved to a separate component, and netcfg handling updated to only depend on BasicDeviceConfig, augmented with a pipeconf field, and re-using the managementAddress field to set the gRPC server endpoints (e.g. grpc://myswitch.local:50051). Before it was depending on 3 different config classes, making hard to detect changes. Finally, this change affects some core interfaces: - Adds a method to DeviceProvider and DeviceHandshaker to check for device availability, making the meaning of availability device-specific. This is needed in cases where the device manager needs to change the availability state of a device (as in change #20842) - Support device providers not capable of reconciling mastership role responses with requests (like P4Runtime). - Clarify the meaning of "connection" in the DeviceConnect behavior. - Allows driver-based providers to check devices for reachability and availability without probing the device via the network. Change-Id: I7ff30d29f5d02ad938e3171536e54ae2916629a2
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 reuqired:
To install Oracle JDK8, use following commands (Ubuntu):
$ sudo apt-get install software-properties-common -y && \ sudo add-apt-repository ppa:webupd8team/java -y && \ sudo apt-get update && \ echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections && \ sudo apt-get install oracle-java8-installer oracle-java8-set-default -y
ONOS is built with Bazel, an open-source build tool developed by Google. ONOS supports Bazel 0.17 You can download it from official website or package manager (e.g. apt, brew...)
$ 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:
$ ok [clean] [debug]
The above command will create a local installation from the onos.tar.gz file (re-building it 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 of ONOS and the debug
option means that the default debug port 5005 will be available for attaching a remote debugger.
To access ONOS UI, use browser to open http://localhost:8181/onos/ui or use 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