-
Notifications
You must be signed in to change notification settings - Fork 0
/
openflowsdn.html
67 lines (58 loc) · 2.17 KB
/
openflowsdn.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en-US">
<head>
<style>
ul#nav {
padding: 0;
}
ul#nav li {
display: inline;
}
ul#nav li a {
background-color: black;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 4px 4px 0 0;
}
ul#nav li a:hover {
background-color: #4CAF50;
}
</style>
<link rel="icon" type="image/png" href="images/favicon.png"/>
<title>Openflow SDN Github Repository</title>
</head>
<body>
<ul id="nav">
<li><img src="images/favicon.png" alt="OpenFlow SDN"></li>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
<br />
<br />
<h1>Openflow SDN Github Repository</h1>
<h2>Projects:</h2>
<ol>
<li><a href="http://openflowsdn.github.io/atrium/">Atrium</a></li>
<li><a href="https://github.com/OpenNetworkingFoundation/CENTENNIAL">Cetennial</a> - Microwave PoC Applications</li>
<li><a href="https://openflowsdn.github.io/faucet">Steamboat</a>.
Code under <a href="https://github.com/shivarammysore/faucet/tree/packaging">Faucet</a></li>
<li><a href="https://github.com/OpenNetworkingFoundation/DURANGO">Durango</a> -
OF-Config implementation for OpenVSwitch</li>
</ol>
<h2>3<sup>rd</sup> Party Code:</h2>
<ol>
<li>Openflow Driver Competition winner - LibFluid -
<a href="https://github.com/OpenNetworkingFoundation/libfluid">libfluid</a>,
<a href="https://github.com/OpenNetworkingFoundation/libfluid_base">libfluid_base</a>,
<a href="https://github.com/OpenNetworkingFoundation/libfluid_msg">libfluid_msg</a>
</li>
<li><a href="https://github.com/OpenNetworkingFoundation/ofsoftswitch13">Openflow v1.3 soft switch</a> -
The code is based on the Ericsson TrafficLab 1.1 softswitch
<a href="https://github.com/TrafficLab/of11softswitch">implementation</a>, with changes in the forwarding
plane to support OpenFlow 1.3</li>
</ol>
</body>
</html>