commit | 2a308ff82e63c6fc0ddd63ba6bf95eedc9c6a8a4 | [log] [tgz] |
---|---|---|
author | Carmelo Cascone <carmelo@opennetworking.org> | Tue Jun 01 18:31:57 2021 -0700 |
committer | Carmelo Cascone <carmelo@opennetworking.org> | Thu Jun 03 00:35:41 2021 +0000 |
tree | 9ae9f2d16e0e7a832baca67a975f02aea0326e3b | |
parent | 2388cc14804bc235bd21c484386e67f65f389d82 [diff] |
SDFAB-193 Fix routing of GTP End Marker packet-outs on fabric-v1model This change introduces three fixes: 1) We have observed an issue with p4lang/PI and BMv2 where in presence of multiple metadata fields, the PI implementation for BMv2 provides an erroneous serialization of the packet-out header, hence affecting the parsing/forwarding behavior. As a workaround, since we cannot control the order of fields in the p4runtime.PacketOut message, we modify the interpreter to only add one field, egress_port or do_forwarding. Both fields are treated as mutually exclusive by the P4 pipeline, so the operation is safe. This is against the P4Runtime spec (all fields should be provided), but supported by BMv2 (unset fields are initialized to zero). 2) CPU port was not initialized when calling Pipeliner.init() 3) GTP End Marker were being parsed as GTP-U packets with inner IPv4, causing a parser error (packet too short). Change-Id: I406870b4a9aa044b5d0b35a56b0bfde4e601a4f6 (cherry picked from commit ffa7fed9eb3b30221cbc5e23b58c9ac322f8b7f9)
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 include 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
YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler and YourKit YouMonitor.