-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
246 lines (240 loc) · 11.3 KB
/
index.html
File metadata and controls
246 lines (240 loc) · 11.3 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>Propane Language</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/bootstrap-override.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<!-- Open Sans, nice font -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[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.4.2/respond.min.js"></script>
<![endif]-->
<!-- Favion -->
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-touch-icon-76x76.png">
<link rel="icon" type="image/png" href="/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/favicon/manifest.json">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/favicon/browserconfig.xml">
<meta name="theme-color" content="#ff0000">
</head>
<!-- The #page-top ID is part of the scrolling feature - the data-spy and data-target are part of the built-in Bootstrap scrollspy function -->
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top"><b>Propane</b></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a class="page-scroll" href="#page-top"></a>
</li>
<li><a class="page-scroll" href="#overview">Overview</a></li>
<li><a class="page-scroll" href="#members">Members</a></li>
<li><a class="page-scroll" href="#publications">Publications</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- alternatingly label section with "even" or "odd" -->
<section id="intro" class="foo-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="jumbotron">
<img class="img-responsive center-block" src="img/propane-banner.png" style="max-width: 75%"/>
<p>a language for simple, <span style="color: #ff0000">correct-by-construction</span> network configuration</p>
<ul class="list-inline">
<li>
<a class="btn btn-lg btn-primary" href="http://www.cs.princeton.edu/~rbeckett/Propane/Installation.html" target="_blank">
Tutorial »
</a>
</li>
<li>
<a class="btn btn-lg btn-warning" href="https://github.com/rabeckett/propane/" target="_blank">
See on Github »
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="overview" class="even-section">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="page-header">
<h1>Overview</h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-1">
<p>Propane is a new language for configuring the network.
It lets you write a single, high-level routing policy for
your network. The Propane compiler can then generate a
collection of legacy vendor configurations that are
guaranteed to implement the policy correctly. The language
and compiler provide the following features and guarantees:
</p>
<h3>Language and Compiler Guarantees</h3>
<ul>
<li>The language lets your write routing policy as if you alway have <b>centralized visibilty</b> of the network</li>
 
<li>The compiler performs <b>static analysis</b> of the routing policy to proactively find potential issues.</li>
 
<li>The Propane compiler generates a collection of configurations that run the
<b>distributed</b> BGP routing protocol. There is no centralized coordination</li>
 
<li>The BGP configurations are guaranteed to correctly adapt to <b>all possible failures</b> so that
the most preferred paths are always used when available.</li>
 
</ul>
</div>
<div class="col-lg-5">
<div class="panel panel-default raise-effect">
<div class="panel-heading">Example Propane Policy:</div>
<div class="panel-body code-snippet">
<pre>
<span class="syntax-comment"># Define our function</span>
<span class="syntax-keyword">define</span> Customer = {as101, as102, as103}
<span class="syntax-keyword">define</span> Peer = {Sprint, ATT}
<span class="syntax-keyword">define</span> Routing = {
true => <span class="syntax-asn">exit</span>(Customer >> Peer)
}
<span class="syntax-keyword">define</span> transit(X,Y) =
<span class="syntax-asn">enter</span>(X or Y) & <span class="syntax-asn">exit</span>(X or Y)
<span class="syntax-keyword">define</span> NoTransit = {
true => not transit(Peer,Peer)
}
<span class="syntax-keyword">define</span> Main = Routing & NoTransit
</pre>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="members" class="odd-section">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="page-header">
<h1>Members</h1>
</div>
<div class="row">
<div class="col-md-4">
<h2><img src="img/princeton-logo.png" height="50" width="40" alt="Princeton" />Princeton</h2>
<ul>
<li><a href="http://scholar.princeton.edu/rbeckett/">Ryan Beckett</a></li>
<li><a href="http://www.cs.princeton.edu/~dpw">David Walker</a></li>
</ul>
</div>
<div class="col-md-4">
<h2><img src="img/intentionet-logo.png" width="240" alt="Intnetionet" /></h2>
<ul>
<li><a href="https://ratul.org/">Ratul Mahajan</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h2><img src="img/microsoft-logo.png" height="40" width="40" alt="Princeton" />Microsoft</h2>
<ul>
<li><a href="http://research.microsoft.com/en-us/um/people/padhye/">Jitu Padhye</a></li>
</ul>
</div>
<div class="col-md-4">
<h2><img src="img/ucla-logo.png" height="50" width="50" alt="UCLA" /> UCLA</h2>
<ul>
<li><a href="http://web.cs.ucla.edu/~todd/">Todd Millstein</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="publications" class="even-section">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="page-header">
<h1>Publications</h1>
</div>
<h2>Conference Papers</h2>
<div>
<p><a name="event-driven-pldi16"></a>
<b>Network Configuration Synthesis With Abstract Topologies</b>.<br>
Ryan Beckett, Ratul Mahajan, Todd Millstein, Jitu Padhye, and David Walker.<br>
In <em>ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI), , Barcelona, Spain</em>, June 2017. <br>
[ <a href="https://ratul.org/papers/pldi2017-propaneat.pdf">paper</a>]
<p><a name="event-driven-pldi16"></a>
<b>Don't Mind the Gap: Bridging Network-wide Objectives and Device-level
Configurations</b>.<br>
Ryan Beckett, Ratul Mahajan, Todd Millstein, Jitu Padhye, and David Walker.<br>
In <em>ACM SIGCOMM Conference on Communications
Architectures, Protocols and Applications (SIGCOMM), Florianopolis , Brazil</em>,
August 2016.<br>
[ <a href="https://ratul.org/papers/sigcomm2016-propane.pdf">paper</a> |
<a href="http://conferences.sigcomm.org/sigcomm/2016/files/program/sigcomm/Session06-Paper03-DontMind-Ryan-Slides.pdf">slides</a>]
</p>
</div>
</div>
</div>
</div>
</section>
<footer id="footer" class="odd-section">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<a href="https://github.com/rabeckett/propane/">
<div><img src="img/propane-icon.png" class="img-responsive center-block" height="90" width="90" alt="propane-icon" /></div>
<div><span class="lead">Propane on Github</span></div>
</a>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Scrolling Nav JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/scrolling-nav.js"></script>
</body>
</html>