commit | b62e8c5490dc0e36ccec6e5b6c2c23fba84d8bb8 | [log] [tgz] |
---|---|---|
author | Ankur Aggarwal <ankur.aggarwal@hsc.com> | Fri Nov 08 15:37:53 2019 +0530 |
committer | Andrea Campanella <andrea@opennetworking.org> | Tue Dec 03 08:40:17 2019 +0000 |
tree | b6546c6867682eaefaad2d55d2ab4c640237c269 | |
parent | 940332696982e212decfe08acb418d01457c0280 [diff] |
[ONOS-8052] BGP-LS : NodeMutiTopology sub-TLV causes BGPParseException BgpNodeMultitopologyId TLV is called by BgpLinkLSIdentifier. In parseLinkDescriptors method of BgpLinkLSIdentifier, length is read and then, in switch-case statement, the control goes to BgpAttrNodeMultiTopologyId.java , where read() method again tries to read the length. This is the root cause of the BGPParseException in certain BGP packets. This has been fixed by passing the length from BgpLinkLSIdentifier to BgpAttrNodeMultiTopologyId. And ofcourse, the same change had to be implemented in other TLVs which included BgpAttrNodeMultiTopologyId.wq Change-Id: I662d5f7007e8c92a863fb63ca9ebc7ba2038811a
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