breaking up services documentation into documentation files related to service groups
This commit is contained in:
parent
461a27989c
commit
52cdc0d75c
11 changed files with 449 additions and 306 deletions
30
docs/services/sdn.md
Normal file
30
docs/services/sdn.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Software Defined Networking
|
||||
|
||||
* Table of Contents
|
||||
{:toc}
|
||||
|
||||
## Overview
|
||||
|
||||
Ryu is a component-based software defined networking framework. Ryu provides software components with well defined API that make it easy for developers to create new network management and control applications. Ryu supports various protocols for managing network devices, such as OpenFlow, Netconf, OF-config, etc. About OpenFlow, Ryu supports fully 1.0, 1.2, 1.3, 1.4, 1.5 and Nicira Extensions. All of the code is freely available under the Apache 2.0 license.
|
||||
|
||||
## Installation
|
||||
|
||||
### Prerequisites
|
||||
|
||||
```shell
|
||||
sudo apt-get install gcc python-dev libffi-dev libssl-dev libxml2-dev libxslt1-dev zlib1g-dev
|
||||
```
|
||||
|
||||
### Ryu Package Install
|
||||
|
||||
```shell
|
||||
pip install ryu
|
||||
```
|
||||
|
||||
### Ryu Source Install
|
||||
|
||||
```shell
|
||||
git clone git://github.com/osrg/ryu.git
|
||||
cd ryu
|
||||
pip install .
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue