forked from osrg/gobgp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (103 loc) · 4.76 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/x-icon" href="logos/favicon.ico">
<title>GoBGP</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="assets/js/chart.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation"><a href="https://github.com/osrg/gobgp/releases/latest"><i class="fa fa-download fa-3x"></i></a></li>
<li role="presentation"><a href="https://github.com/osrg/gobgp"><i class="fa fa-github fa-3x"></i></a></li>
<li role="presentation"><a href="https://slackin-gobgp.mybluemix.net/"><i class="fa fa-slack fa-3x"></i></a></li>
<li role="presentation"><a href="https://twitter.com/ryusdn"><i class="fa fa-twitter fa-3x"></i></a></li>
</ul>
</nav>
</div>
</div>
</div>
<div id="hello">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 centered">
<img src="logos/GoBGP_v.png" alt="GoBGP Logo" width="150px">
<h1>GoBGP</h1>
<h2>Designed from scratch for modern environment so implemented in the Go programming language.</h2>
</div><!-- /col-lg-8 -->
</div><!-- /row -->
</div> <!-- /container -->
</div><!-- /hello -->
<div id="green">
<div class="container">
<div class="row">
<div class="col-lg-4">
<h2>Multicore CPUs</h2>
<p>GoBGP is designed to exploit todays multicore processors. <a href="https://golang.org">Golang</a> makes it extremely easy and simple to write concurrent code. </p>
<!-- <p><a class="btn btn-primary" href="#" role="button">View details »</a></p> -->
</div>
<div class="col-lg-4">
<h2>Automation Friendly</h2>
<p>GoBGP is designed to be easily integrated with other software with its <a href="http://www.grpc.io/">RPC APIs</a> instead of manually changing its config via CLI. GoBGP also supports its CLI though.</p>
<!-- <p><a class="btn btn-primary" href="#" role="button">View details »</a></p> -->
</div>
<div class="col-lg-4">
<h2>Standard Config Model</h2>
<p>GoBGP is implemented based on <a href="https://datatracker.ietf.org/doc/draft-ietf-idr-bgp-model/">an IETF draft</a>, vendor-neutral model for network configuration and policy. Imagine that you can configure BGP across multiple vendors' gear with the single model.</p>
<!-- <p><a class="btn btn-primary" href="#" role="button">View details »</a></p> -->
</div>
</div>
</div>
</div>
<div class="container" id="users">
<div class="row centered mt grid">
<h3>Who uses GoBGP in production?</h3>
<div class="col-lg-3">
<a href="http://www.mfeed.co.jp/english/index.html"><img src="logos/JPNAP.gif" alt="JPNAP" width="100px"></a>
</div>
<div class="col-lg-3">
<a href="http://www.cloudwan.io/"><img src="logos/cloudwan.png" alt="Cloudwan" width="300px"></a>
</div>
<div class="col-lg-3">
<a href="https://nic.br/"><img src="logos/nicbr.png" alt="nic.br" width="100px"></a>
</div>
<div class="col-lg-3">
<a href="http://www.comhem.se"><img src="logos/comhem_small.png" alt="Com Hem AB" width="80px"></a>
</div>
</div>
<div class="mt"></div>
</div>
<div id="f">
<div class="container">
<div class="row">
<p>© <a href="https://osrg.github.io/ryu/">Ryu SDN Framework Community</a>. 2017</p>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/bootstrap.js"></script>
</body>
</html>