-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReport1.htm
More file actions
5954 lines (5856 loc) · 161 KB
/
Report1.htm
File metadata and controls
5954 lines (5856 loc) · 161 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Zotero Report</title>
<link rel="stylesheet" type="text/css" href="Report1_files/detail.css">
<link rel="stylesheet" type="text/css" media="screen,projection" href="Report1_files/detail_screen.css">
<link rel="stylesheet" type="text/css" media="print" href="Report1_files/detail_print.css">
</head>
<body>
<ul class="report combineChildItems">
<li id="i187" class="item journalArticle">
<h2>An extended SDN architecture for network function virtualization with a case study on intrusion prevention</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Journal Article</td>
</tr>
<tr>
<th class="author">Author</th>
<td>Y. D. Lin</td>
</tr>
<tr>
<th class="author">Author</th>
<td>P. C. Lin</td>
</tr>
<tr>
<th class="author">Author</th>
<td>C. H. Yeh</td>
</tr>
<tr>
<th class="author">Author</th>
<td>Y. C. Wang</td>
</tr>
<tr>
<th class="author">Author</th>
<td>Y. C. Lai</td>
</tr>
<tr>
<th>Volume</th>
<td>29</td>
</tr>
<tr>
<th>Issue</th>
<td>3</td>
</tr>
<tr>
<th>Pages</th>
<td>48-53</td>
</tr>
<tr>
<th>Publication</th>
<td>IEEE Network</td>
</tr>
<tr>
<th>ISSN</th>
<td>0890-8044</td>
</tr>
<tr>
<th>Date</th>
<td>Maio 2015</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/MNET.2015.7113225">10.1109/MNET.2015.7113225</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Abstract</th>
<td>In conventional software-defined networking (SDN), a controller
classifies the traffic redirected from a switch to determine the path to
network function virtualization (NFV) modules. The redirection
generates a large volume of control-plane traffic. We propose an
extended SDN architecture to reduce the traffic overhead to the
controller for providing NFV. The extension includes two-layer traffic
classification in the data plane, extended OpenFlow protocol messages
and service chaining mechanisms. Network events are analyzed in the data
plane instead of the control plane. The efficiency is evaluated with a
case study of intrusion prevention. The evaluation shows that only 0.12
percent of the input traffic is handled by the controller, while 77.23
percent is handled on the controller in conventional SDN.</td>
</tr>
<tr>
<th>Date Added</th>
<td>26/04/2016 23:48:25</td>
</tr>
<tr>
<th>Modified</th>
<td>26/04/2016 23:48:25</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>computer network security</li>
<li>control-plane traffic</li>
<li>data plane</li>
<li>efficiency evaluation</li>
<li>extended OpenFlow protocol messages</li>
<li>extended SDN architecture</li>
<li>Floods</li>
<li>input traffic handling</li>
<li>intrusion prevention</li>
<li>IP networks</li>
<li>Network architecture</li>
<li>network event analysis</li>
<li>network function virtualization modules</li>
<li>NFV module</li>
<li>Payloads</li>
<li>Protocols</li>
<li>Routing</li>
<li>service chaining mechanisms</li>
<li>software defined networking</li>
<li>software-defined networking</li>
<li>Switches</li>
<li>telecommunication network management</li>
<li>telecommunication traffic</li>
<li>traffic overhead reduction</li>
<li>traffic redirection</li>
<li>two-layer traffic classification</li>
<li>Virtualization</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i190">07113225.pdf</li>
<li id="i189">IEEE Xplore Abstract Record</li>
</ul>
</li>
<li id="i438" class="item conferencePaper">
<h2>An open framework to enable NetFATE (Network Functions at the edge)</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Conference Paper</td>
</tr>
<tr>
<th class="author">Author</th>
<td>A. Lombardo</td>
</tr>
<tr>
<th class="author">Author</th>
<td>A. Manzalini</td>
</tr>
<tr>
<th class="author">Author</th>
<td>G. Schembra</td>
</tr>
<tr>
<th class="author">Author</th>
<td>G. Faraci</td>
</tr>
<tr>
<th class="author">Author</th>
<td>C. Rametta</td>
</tr>
<tr>
<th class="author">Author</th>
<td>V. Riccobene</td>
</tr>
<tr>
<th>Pages</th>
<td>1-6</td>
</tr>
<tr>
<th>Date</th>
<td>April 2015</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/NETSOFT.2015.7116179">10.1109/NETSOFT.2015.7116179</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Conference Name</th>
<td>2015 1st IEEE Conference on Network Softwarization (NetSoft)</td>
</tr>
<tr>
<th>Abstract</th>
<td>In the last few years, Software Defined Networks (SDN) and Network
Functions Virtualization (NFV) have been introduced in the Internet as a
new way to design, deploy and manage networking services. Working
together, they are able to consolidate and deliver the networking
components using standard IT virtualization technologies not only on
high-volume servers, but even in the end user premises. In this context,
this paper presents the NetFATE architecture, a platform aimed at
putting virtual network functions (VNF) at the edge of the network. This
platform is based on free and open source software on Provider
Equipment (PE) and Customer Premise Equipment (CPE) nodes, so allowing
function deployment simplification and management cost reduction.
Finally, the paper proposes a case study, consisting in the
implementation of two virtual personal firewalls used by two clients
moving between two access points located at the edge of the core
network.</td>
</tr>
<tr>
<th>Proceedings Title</th>
<td>2015 1st IEEE Conference on Network Softwarization (NetSoft)</td>
</tr>
<tr>
<th>Date Added</th>
<td>03/05/2016 21:10:34</td>
</tr>
<tr>
<th>Modified</th>
<td>03/05/2016 21:10:34</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>Computer architecture</li>
<li>customer premise equipment</li>
<li>Firewalls (computing)</li>
<li>Internet</li>
<li>Live Migration</li>
<li>NetFATE</li>
<li>network functions at the edge</li>
<li>network functions virtualization</li>
<li>network function virtualization</li>
<li>OpenvSwitch</li>
<li>provider equipment</li>
<li>SDN</li>
<li>Servers</li>
<li>software defined network</li>
<li>software defined networking</li>
<li>standard IT virtualization technology</li>
<li>Switches</li>
<li>Virtualization</li>
<li>Virtualization Framework</li>
<li>Virtual machine monitors</li>
<li>virtual machines</li>
<li>Virtual machining</li>
<li>virtual network function</li>
<li>virtual personal firewall</li>
<li>Xen Hypervisor</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i440">IEEE Xplore Abstract Record</li>
<li id="i439">IEEE Xplore Full Text PDF</li>
</ul>
</li>
<li id="i504" class="item journalArticle">
<h2>A service-aware virtualized software-defined infrastructure</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Journal Article</td>
</tr>
<tr>
<th class="author">Author</th>
<td>L. Mamatas</td>
</tr>
<tr>
<th class="author">Author</th>
<td>S. Clayman</td>
</tr>
<tr>
<th class="author">Author</th>
<td>A. Galis</td>
</tr>
<tr>
<th>Volume</th>
<td>53</td>
</tr>
<tr>
<th>Issue</th>
<td>4</td>
</tr>
<tr>
<th>Pages</th>
<td>166-174</td>
</tr>
<tr>
<th>Publication</th>
<td>IEEE Communications Magazine</td>
</tr>
<tr>
<th>ISSN</th>
<td>0163-6804</td>
</tr>
<tr>
<th>Date</th>
<td>April 2015</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/MCOM.2015.7081091">10.1109/MCOM.2015.7081091</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Abstract</th>
<td>The Internet infrastructure is gradually improving its flexibility
and adaptability due to the incorporation of new promising technologies,
such as the software-defined networks and the network function
virtualization. The main goal is to meet the diverse communication needs
of the users, while the global system operation satisfies the business
and societal goals of the infrastructure and service providers. This
calls for solutions that consider both local and global network
viewpoints and provide sophisticated system control in a stable and
predictable way, while being service-aware. We propose a fully
integrated solution along these lines: the VLSP, a service-aware
software-defined infrastructure for networks and clouds. The VLSP
consists of three main distributed systems: a facility performing
uniformly logically-centralized management and control of the
infrastructure, called the virtual infrastructure management; an
information management infrastructure able to maintain an accurate view
of the infrastructure environment at both the local and system levels,
called the virtual infrastructure information service; and a lightweight
virtualization hypervisor able to perform configuration changes in the
infrastructure resources, called the lightweight network hypervisor. We
discuss representative use-case scenarios, while we demonstrate how VLSP
tunes performance trade-offs for particular service demands.</td>
</tr>
<tr>
<th>Date Added</th>
<td>06/05/2016 13:48:16</td>
</tr>
<tr>
<th>Modified</th>
<td>06/05/2016 13:48:16</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>business goals</li>
<li>Computer architecture</li>
<li>computer mediated communication</li>
<li>diverse communication needs</li>
<li>global network viewpoints</li>
<li>global system operation</li>
<li>Information management</li>
<li>information management infrastructure</li>
<li>Internet</li>
<li>Internet infrastructure</li>
<li>lightweight network hypervisor</li>
<li>lightweight virtualization hypervisor</li>
<li>network function virtualization</li>
<li>Optimization</li>
<li>service-aware virtualized software-defined infrastructure</li>
<li>service-oriented architecture</li>
<li>service providers</li>
<li>societal goals</li>
<li>software defined networking</li>
<li>Software-defined networks</li>
<li>uniformly logically-centralized management</li>
<li>virtualisation</li>
<li>Virtualization</li>
<li>Virtual machine monitors</li>
<li>VLSP</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i507">07081091.pdf</li>
<li id="i506">IEEE Xplore Abstract Record</li>
</ul>
</li>
<li id="i262" class="item conferencePaper">
<h2>A solution for SGi-LAN services virtualization using NFV and SDN</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Conference Paper</td>
</tr>
<tr>
<th class="author">Author</th>
<td>P. Grønsund</td>
</tr>
<tr>
<th class="author">Author</th>
<td>K. Mahmood</td>
</tr>
<tr>
<th class="author">Author</th>
<td>G. Millstein</td>
</tr>
<tr>
<th class="author">Author</th>
<td>A. Noy</td>
</tr>
<tr>
<th class="author">Author</th>
<td>G. Solomon</td>
</tr>
<tr>
<th class="author">Author</th>
<td>A. Sahai</td>
</tr>
<tr>
<th>Pages</th>
<td>408-412</td>
</tr>
<tr>
<th>Date</th>
<td>June 2015</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/EuCNC.2015.7194108">10.1109/EuCNC.2015.7194108</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Conference Name</th>
<td>2015 European Conference on Networks and Communications (EuCNC)</td>
</tr>
<tr>
<th>Abstract</th>
<td>Today operators deploy functions like Deep Packet Inspection,
Caches, traffic optimization, NAT and Firewall on the SGi/Gi-LAN for
subscribers accessing Internet based content/services. Currently these
functions are deployed on dedicated hardware components from different
vendors that most often need to be managed separately. This is not cost
efficient and gives long lead times for new services. The main
contribution of this paper is the implementation of a solution for
virtualizing the services on the SGi-LAN using NFV and SDN. The
virtualized services include TCP optimization, video optimization and
network analytics. In addition, a performance evaluation is presented
with focus on key indicators for virtualization. It is shown that
virtualizing network functions on servers using NFV adds an overhead of
20-40 μ seconds in latency per hop, but that the impact on the network
function performance is negligible. It is also shown that a COTS server
can support a single instance of the SDN controller programming 100K
OpenFlow transactions/second and that a software switch can implement
100K rules/sec while forwarding traffic at 160 Gbps with 200M rules. To
evaluate the scaling feature of NFV it is shown that the time to bring
up a new virtual network function was between 90-120 seconds.</td>
</tr>
<tr>
<th>Proceedings Title</th>
<td>2015 European Conference on Networks and Communications (EuCNC)</td>
</tr>
<tr>
<th>Date Added</th>
<td>27/04/2016 14:16:25</td>
</tr>
<tr>
<th>Modified</th>
<td>27/04/2016 14:16:25</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>bit rate 160 Gbit/s</li>
<li>cache storage</li>
<li>COTS server</li>
<li>deep packet inspection</li>
<li>firewall</li>
<li>firewalls</li>
<li>forwarding traffic</li>
<li>Hardware</li>
<li>Internet</li>
<li>Internet based content-services</li>
<li>local area networks</li>
<li>Mobile communication</li>
<li>NAT</li>
<li>network analytics</li>
<li>network functions</li>
<li>network function virtualisation</li>
<li>NFV</li>
<li>OpenFlow transactions</li>
<li>optimisation</li>
<li>Optimization</li>
<li>SDN</li>
<li>SDN controller programming</li>
<li>Servers</li>
<li>Service Chaining</li>
<li>SGi</li>
<li>SGi-Gi-LAN</li>
<li>SGi-LAN services</li>
<li>SGi-LAN service virtualization</li>
<li>Software</li>
<li>software defined networking</li>
<li>software switch</li>
<li>Subscriber Awareness</li>
<li>Switches</li>
<li>TCP optimization</li>
<li>telecommunication control</li>
<li>telecommunication switching</li>
<li>telecommunication traffic</li>
<li>time 90 s to 120 s</li>
<li>traffic optimization</li>
<li>transport protocols</li>
<li>video communication</li>
<li>video optimization</li>
<li>virtualisation</li>
<li>Virtualization</li>
<li>virtual network function</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i264">IEEE Xplore Abstract Record</li>
<li id="i263">IEEE Xplore Full Text PDF</li>
</ul>
</li>
<li id="i219" class="item conferencePaper">
<h2>Cloud4NFV: A platform for Virtual Network Functions</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Conference Paper</td>
</tr>
<tr>
<th class="author">Author</th>
<td>J. Soares</td>
</tr>
<tr>
<th class="author">Author</th>
<td>M. Dias</td>
</tr>
<tr>
<th class="author">Author</th>
<td>J. Carapinha</td>
</tr>
<tr>
<th class="author">Author</th>
<td>B. Parreira</td>
</tr>
<tr>
<th class="author">Author</th>
<td>S. Sargento</td>
</tr>
<tr>
<th>Pages</th>
<td>288-293</td>
</tr>
<tr>
<th>Date</th>
<td>Outubro 2014</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/CloudNet.2014.6969010">10.1109/CloudNet.2014.6969010</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Conference Name</th>
<td>2014 IEEE 3rd International Conference on Cloud Networking (CloudNet)</td>
</tr>
<tr>
<th>Abstract</th>
<td>The principle of Network Functions Virtualization (NFV) aims to
transform network architectures by implementing Network Functions (NFs)
in software that can run on commodity hardware. There are several
challenges inherent to NFV, among which is the need for an orchestration
and management framework. This paper presents the Cloud4NFV platform,
which follows the major NFV standard guidelines. The platform is
presented in detail and special attention is given to data modelling
aspects. Further, insights on the current implementation of the platform
are given, showing that part of its foundations lay on cloud
infrastructure management and Software Defined Networking (SDN)
platforms. Finally, it is presented a proof-of-concept (PoC) that
illustrates how the platform can be used to deliver a novel service to
end customers, focusing on Customer Premises Equipment (CPE) related
functions.</td>
</tr>
<tr>
<th>Proceedings Title</th>
<td>2014 IEEE 3rd International Conference on Cloud Networking (CloudNet)</td>
</tr>
<tr>
<th>Short Title</th>
<td>Cloud4NFV</td>
</tr>
<tr>
<th>Date Added</th>
<td>27/04/2016 11:08:45</td>
</tr>
<tr>
<th>Modified</th>
<td>27/04/2016 11:08:45</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>Cloud4NFV</li>
<li>Cloud computing</li>
<li>cloud infrastructure management</li>
<li>commodity hardware</li>
<li>Computer architecture</li>
<li>computer network management</li>
<li>CPE related functions</li>
<li>customer premises equipment related functions</li>
<li>data modelling aspects</li>
<li>Data models</li>
<li>Hardware</li>
<li>management framework</li>
<li>network architectures</li>
<li>network functions virtualization</li>
<li>NFV standard guidelines</li>
<li>orchestration framework</li>
<li>PoC</li>
<li>proof-of-concept</li>
<li>SDN platforms</li>
<li>Software</li>
<li>software defined networking platforms</li>
<li>telecommunication standards</li>
<li>virtualisation</li>
<li>Virtualization</li>
<li>virtual network function</li>
<li>virtual network functions</li>
<li>Wide area networks</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i221">IEEE Xplore Abstract Record</li>
<li id="i220">IEEE Xplore Full Text PDF</li>
</ul>
</li>
<li id="i294" class="item conferencePaper">
<h2>Container-based network function virtualization for software-defined networks</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Conference Paper</td>
</tr>
<tr>
<th class="author">Author</th>
<td>R. Cziva</td>
</tr>
<tr>
<th class="author">Author</th>
<td>S. Jouet</td>
</tr>
<tr>
<th class="author">Author</th>
<td>K. J. S. White</td>
</tr>
<tr>
<th class="author">Author</th>
<td>D. P. Pezaros</td>
</tr>
<tr>
<th>Pages</th>
<td>415-420</td>
</tr>
<tr>
<th>Date</th>
<td>July 2015</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/ISCC.2015.7405550">10.1109/ISCC.2015.7405550</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Conference Name</th>
<td>2015 IEEE Symposium on Computers and Communication (ISCC)</td>
</tr>
<tr>
<th>Abstract</th>
<td>Today's enterprise networks almost ubiquitously deploy middlebox
services to improve in-network security and performance. Although
virtualization of middleboxes attracts a significant attention, studies
show that such implementations are still proprietary and deployed in a
static manner at the boundaries of organisations, hindering open
innovation. In this paper, we present an open framework to create,
deploy and manage virtual network functions (NF)s in OpenFlow-enabled
networks. We exploit container-based NFs to achieve low performance
overhead, fast deployment and high reusability missing from today's NFV
deployments. Through an SDN northbound API, NFs can be instantiated,
traffic can be steered through the desired policy chain and applications
can raise notifications. We demonstrate the systems operation through
the development of exemplar NFs from common Operating System utility
binaries, and we show that container-based NFV improves function
instantiation time by up to 68% over existing hypervisor-based
alternatives, and scales to one hundred co-located NFs while incurring
sub-millisecond latency.</td>
</tr>
<tr>
<th>Proceedings Title</th>
<td>2015 IEEE Symposium on Computers and Communication (ISCC)</td>
</tr>
<tr>
<th>Date Added</th>
<td>29/04/2016 14:01:59</td>
</tr>
<tr>
<th>Modified</th>
<td>29/04/2016 14:01:59</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>computer network performance evaluation</li>
<li>computer network security</li>
<li>container-based network function virtualization</li>
<li>container-based NF</li>
<li>Containers</li>
<li>enterprise networks</li>
<li>function instantiation time</li>
<li>hypervisor-based alternatives</li>
<li>in-network security</li>
<li>Middleboxes</li>
<li>middlebox services</li>
<li>network performance</li>
<li>NFV deployments</li>
<li>Noise measurement</li>
<li>OpenFlow-enabled networks</li>
<li>operating system utility binaries</li>
<li>performance overhead</li>
<li>policy chain</li>
<li>Ports (Computers)</li>
<li>Routing</li>
<li>SDN northbound API</li>
<li>Servers</li>
<li>software defined networking</li>
<li>Software-defined networks</li>
<li>systems operation</li>
<li>virtualisation</li>
<li>Virtualization</li>
<li>virtual network functions</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i306">07405550.pdf</li>
<li id="i302">IEEE Xplore Abstract Record</li>
</ul>
</li>
<li id="i426" class="item conferencePaper">
<h2>Cross-layer service to network orchestration</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Conference Paper</td>
</tr>
<tr>
<th class="author">Author</th>
<td>G. Carella</td>
</tr>
<tr>
<th class="author">Author</th>
<td>J. Yamada</td>
</tr>
<tr>
<th class="author">Author</th>
<td>N. Blum</td>
</tr>
<tr>
<th class="author">Author</th>
<td>C. Lück</td>
</tr>
<tr>
<th class="author">Author</th>
<td>N. Kanamaru</td>
</tr>
<tr>
<th class="author">Author</th>
<td>N. Uchida</td>
</tr>
<tr>
<th class="author">Author</th>
<td>T. Magedanz</td>
</tr>
<tr>
<th>Pages</th>
<td>6829-6835</td>
</tr>
<tr>
<th>Date</th>
<td>June 2015</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/ICC.2015.7249414">10.1109/ICC.2015.7249414</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Conference Name</th>
<td>2015 IEEE International Conference on Communications (ICC)</td>
</tr>
<tr>
<th>Abstract</th>
<td>Networking and software design principles converge currently under
the notions of Software-Defined Networking (SDN) and Network Function
Virtualization (NFV). This means that network services are not anymore
static and manually configured, but they become flexible and in the end
virtualized components. This convergence enables to dynamically
orchestrate the network, to move network functions to the cloud and to
direct and prioritize traffic intelligently. Applying cloud principles
to network services, configuration and management requires mechanisms
for automation, virtualization and elasticity. Ultimately, network
services may improve the customer experience for the end users requiring
on-demand network resources. The Cross-Layer Orchestrator (CLO)
presented in this paper, establishes a tie between the Application and
the Network Layers. Through the proposed Cross Layer API, the CLO
provides an interface for client and server side applications to
reserve, alter and release network resources. Our solution makes the
network more dynamic by extending the orchestration functionalities not
only to provide on-demand provisioning of network services, but also
network flows. In this way the network should be able to adapt
accordingly to the requirements of the applications.</td>
</tr>
<tr>
<th>Proceedings Title</th>
<td>2015 IEEE International Conference on Communications (ICC)</td>
</tr>
<tr>
<th>Date Added</th>
<td>03/05/2016 20:29:50</td>
</tr>
<tr>
<th>Modified</th>
<td>03/05/2016 20:29:50</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>application layer</li>
<li>application program interfaces</li>
<li>Cloud</li>
<li>Cloud computing</li>
<li>Computer architecture</li>
<li>Cross-Layer</li>
<li>cross layer API</li>
<li>cross layer orchestrator</li>
<li>Media</li>
<li>network configuration</li>
<li>network function virtualization</li>
<li>networking design principle</li>
<li>network layer</li>
<li>network management</li>
<li>network service</li>
<li>NFV</li>
<li>orchestration</li>
<li>Protocols</li>
<li>Quality of service</li>
<li>Real-time systems</li>
<li>SDN</li>
<li>Software</li>
<li>software defined networking</li>
<li>software design principle</li>
<li>software engineering</li>
<li>virtualisation</li>
<li>Wide area networks</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i428">IEEE Xplore Abstract Record</li>
<li id="i427">IEEE Xplore Full Text PDF</li>
</ul>
</li>
<li id="i103" class="item conferencePaper">
<h2>Deploying elastic routing capability in an SDN/NFV-enabled environment</h2>
<table>
<tbody><tr>
<th>Type</th>
<td>Conference Paper</td>
</tr>
<tr>
<th class="author">Author</th>
<td>S. Van Rossem</td>
</tr>
<tr>
<th class="author">Author</th>
<td>W. Tavernier</td>
</tr>
<tr>
<th class="author">Author</th>
<td>B. Sonkoly</td>
</tr>
<tr>
<th class="author">Author</th>
<td>D. Colle</td>
</tr>
<tr>
<th class="author">Author</th>
<td>J. Czentye</td>
</tr>
<tr>
<th class="author">Author</th>
<td>M. Pickavet</td>
</tr>
<tr>
<th class="author">Author</th>
<td>P. Demeester</td>
</tr>
<tr>
<th>Pages</th>
<td>22-24</td>
</tr>
<tr>
<th>Date</th>
<td>Novembro 2015</td>
</tr>
<tr>
<th>DOI</th>
<td><a href="http://doi.org/10.1109/NFV-SDN.2015.7387398">10.1109/NFV-SDN.2015.7387398</a></td>
</tr>
<tr>
<th>Library Catalog</th>
<td>IEEE Xplore</td>
</tr>
<tr>
<th>Conference Name</th>
<td>2015 IEEE Conference on Network Function Virtualization and Software Defined Network (NFV-SDN)</td>
</tr>
<tr>
<th>Abstract</th>
<td>SDN and NFV are two paradigms that introduce unseen flexibility in
telecom networks. Where previously telecom services were provided by
dedicated hardware and associated (vendor-specific) protocols, SDN
enables to control telecom networks through specialized software running
on controllers. NFV enables highly optimized packet-processing network
functions to run on generic/multi-purpose hardware such as x86 servers.
Although the possibilities of SDN and NFV are well-known, concrete
control and orchestration architectures are still under design and few
prototype validations are available. In this demo we demonstrate the
dynamic up- and downscaling of an elastic router supporting NFV-based
network management, for example needed in a VPN service. The framework
which enables this elasticity is the UNIFY ESCAPE environment, which is a
PoC following an ETSI NFV MANO-conform architecture. This demo is one
of the first to demonstrate a fully closed control loop for scaling NFs
in an SDN/NFV control and orchestration architecture.</td>
</tr>
<tr>
<th>Proceedings Title</th>
<td>2015 IEEE Conference on Network Function Virtualization and Software Defined Network (NFV-SDN)</td>
</tr>
<tr>
<th>Date Added</th>
<td>26/04/2016 13:33:37</td>
</tr>
<tr>
<th>Modified</th>
<td>26/04/2016 13:33:37</td>
</tr>
</tbody></table><h3 class="tags">Tags:</h3>
<ul class="tags">
<li>associated protocols</li>
<li>closed loop systems</li>
<li>Computer architecture</li>
<li>computer network management</li>
<li>dedicated hardware</li>
<li>Elastic Router</li>
<li>elastic routing capability</li>
<li>ETSI NFV MANO-conform architecture</li>
<li>fully-closed control loop</li>
<li>generic-multipurpose hardware</li>
<li>Hardware</li>
<li>high-optimized packet-processing network function</li>
<li>Monitoring</li>
<li>network function virtualization</li>
<li>Network topology</li>
<li>NFV</li>
<li>NFV-based network management</li>
<li>orchestration architecture</li>
<li>PoC</li>
<li>Ports (Computers)</li>
<li>SDN</li>
<li>SDN-NFV control</li>
<li>SDN-NFV-enabled environment</li>
<li>Servers</li>
<li>software defined networking</li>
<li>telecommunication network routing</li>
<li>telecom networks</li>
<li>telecom services</li>
<li>Topology</li>
<li>UNIFY</li>
<li>UNIFY ESCAPE environment</li>
<li>vendor-specific protocols</li>
<li>virtualisation</li>
<li>virtual private networks</li>
<li>VPN service</li>
<li>x86 servers</li>
</ul>
<h3 class="attachments">Attachments</h3>
<ul class="attachments">
<li id="i105">IEEE Xplore Abstract Record</li>
<li id="i104">IEEE Xplore Full Text PDF</li>
</ul>
</li>
<li id="i150" class="item journalArticle">