Convert Figma logo to code with AI

opennetworkinglab logoonos

Open Network Operating System

1,176
756
1,176
70

Quick Overview

ONOS (Open Network Operating System) is an open-source software-defined networking (SDN) operating system designed to control and manage large-scale networks. It provides a platform for building network control and management applications, enabling the creation of intelligent, programmable, and scalable networks.

Pros

  • Scalability: ONOS is designed to handle large-scale networks, supporting high-performance and high-availability requirements.
  • Modularity: The project's modular architecture allows for easy customization and integration of various network components.
  • Extensibility: ONOS provides a rich set of APIs and a plugin system, enabling developers to build and integrate custom applications.
  • Community Support: ONOS has a strong and active open-source community, contributing to its development and providing support.

Cons

  • Complexity: ONOS can have a steep learning curve, especially for those new to SDN and network programming.
  • Performance Overhead: The overhead associated with the SDN architecture and the ONOS platform may impact the overall network performance in certain scenarios.
  • Vendor Lock-in: ONOS is primarily designed for use with specific network hardware and software, which may limit its compatibility with other vendors' products.
  • Documentation Quality: While the project has extensive documentation, some areas may lack clarity or be outdated, making it challenging for new users to get started.

Code Examples

N/A (ONOS is not a code library)

Getting Started

To get started with ONOS, follow these steps:

  1. Install ONOS: Download the latest ONOS release from the project's GitHub repository and follow the installation instructions for your operating system.

  2. Set up the Development Environment: Ensure that you have the necessary tools and dependencies installed, such as Java, Maven, and Git.

  3. Run ONOS: Start the ONOS controller by running the following command in the ONOS installation directory:

    ./bin/onos
    
  4. Explore the ONOS CLI: Once ONOS is running, you can interact with the system using the ONOS command-line interface (CLI). The CLI provides access to various ONOS features and functionalities.

  5. Deploy Applications: ONOS supports the deployment of network applications, which can be developed using the ONOS SDK. You can find example applications in the ONOS repository and deploy them to the ONOS controller.

  6. Configure Network Devices: ONOS can manage and configure network devices, such as switches and routers. You can use the ONOS CLI or the web-based user interface to discover and configure network devices.

  7. Monitor and Manage the Network: ONOS provides comprehensive network monitoring and management capabilities, allowing you to view network topology, traffic flows, and performance metrics.

  8. Contribute to the Project: If you're interested in contributing to the ONOS project, you can find information on the project's GitHub repository about how to submit bug reports, feature requests, and code contributions.

For more detailed instructions and documentation, please refer to the ONOS project's official website and GitHub repository.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

ONOS : Open Network Operating System

What is ONOS?

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.

Top-Level Features

  • High availability through clustering and distributed state management.
  • Scalability through clustering and sharding of network device control.
  • Performance that is good for a first release, and which has an architecture that will continue to support improvements.
  • Northbound abstractions for a global network view, network graph, and application intents.
  • Pluggable southbound for support of OpenFlow, P4Runtime, and new or legacy protocols.
  • Graphical user interface to view multi-layer topologies and inspect elements of the topology.
  • REST API for access to Northbound abstractions as well as CLI commands.
  • CLI for debugging.
  • Support for both proactive and reactive flow setup.
  • SDN-IP application to support interworking with traditional IP networks controlled by distributed routing protocols such as BGP.
  • IP-Optical use case demonstration.

Getting started

Dependencies

The following packages are required:

  • git
  • zip
  • curl
  • unzip
  • python3 (needed by Bazel)

Build ONOS from source

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

  1. Clone the code from the ONOS Gerrit repository
$ git clone https://gerrit.onosproject.org/onos
  1. Optionally, you can add the ONOS developer environment to your bash profile. This will provide access to a number of handy commands to run, test and debug ONOS. No need to do this step again if you had done this before:
$ cd onos
$ cat << EOF >> ~/.bash_profile
export ONOS_ROOT="`pwd`"
source $ONOS_ROOT/tools/dev/bash_profile
EOF
$ . ~/.bash_profile
  1. Build ONOS with Bazel
$ cd $ONOS_ROOT
$ bazel build onos

Start ONOS on local machine

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.

Interacting with ONOS

To access ONOS UI, use a browser to open:

http://localhost:8181/onos/ui

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

Unit Tests

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

Contributing

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!

More information

For more information, please check out our wiki page or mailing lists:

License

ONOS (Open Network Operating System) is published under Apache License 2.0

Acknowledgements

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.

YourKit